diff --git a/.changeset/twenty-weeks-eat.md b/.changeset/twenty-weeks-eat.md new file mode 100644 index 00000000..21baf61c --- /dev/null +++ b/.changeset/twenty-weeks-eat.md @@ -0,0 +1,5 @@ +--- +"frog": patch +--- + +Updated devtools to pass through gas for transactions diff --git a/ui/src/components/Preview.tsx b/ui/src/components/Preview.tsx index d9ccad49..5f78eb38 100644 --- a/ui/src/components/Preview.tsx +++ b/ui/src/components/Preview.tsx @@ -564,6 +564,7 @@ function TransactionDialogContent(props: Omit) { sendTransaction({ chainId: transactionChainId, to: params.to, + gas: params.gas ? BigInt(params.gas) : undefined, data: params.data, value: params.value ? BigInt(params.value) : undefined, })