From ab2d6676695e9eb185746fea469b11bfa66c4147 Mon Sep 17 00:00:00 2001 From: sakulstra Date: Tue, 30 Mar 2021 11:02:56 +0200 Subject: [PATCH] fix: make gas estimation non optional --- src/tx-builder/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tx-builder/types/index.ts b/src/tx-builder/types/index.ts index 7f7ab1a8..2df2b818 100644 --- a/src/tx-builder/types/index.ts +++ b/src/tx-builder/types/index.ts @@ -161,7 +161,7 @@ export type Configuration = { export type EthereumTransactionTypeExtended = { txType: eEthereumTxType; tx: () => Promise; - gas?: GasResponse; + gas: GasResponse; }; export type TransactionGenerationMethod = {