Skip to content

Commit 7c5610c

Browse files
Will CoryWill Cory
Will Cory
authored and
Will Cory
committed
🐛 fix: Add padding to deposit eth
1 parent c1691f9 commit 7c5610c

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

src/actions/wallet/L1/writeDepositETH.ts

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Account, Chain, Transport, WalletClient, WriteContractReturnType } from 'viem'
2+
import { estimateContractGas } from 'viem/actions'
23
import { ABI, CONTRACT, type DepositETHParameters, FUNCTION } from '../../../types/depositETH.js'
34
import type { L1WriteActionBaseType } from '../../../types/l1Actions.js'
45
import { writeOpStackL1, type WriteOpStackL1Parameters } from './writeOpStackL1.js'
@@ -33,24 +34,22 @@ export async function writeDepositETH<
3334
args: { to, minGasLimit, extraData = '0x' },
3435
l1StandardBridgeAddress,
3536
...rest
36-
}: WriteDepositETHParameters<
37-
TChain,
38-
TAccount,
39-
TChainOverride
40-
>,
37+
}: WriteDepositETHParameters<TChain, TAccount, TChainOverride>,
4138
): Promise<WriteContractReturnType> {
39+
const gas = await estimateContractGas(client, {
40+
account: client.account,
41+
args: [to, minGasLimit, extraData],
42+
abi: ABI,
43+
functionName: FUNCTION,
44+
address: l1StandardBridgeAddress,
45+
} as any)
4246
return writeOpStackL1(client, {
4347
address: l1StandardBridgeAddress,
4448
abi: ABI,
4549
contract: CONTRACT,
4650
functionName: FUNCTION,
51+
gas: gas + (gas / BigInt(2)),
4752
args: [to, minGasLimit, extraData],
4853
...rest,
49-
} as unknown as WriteOpStackL1Parameters<
50-
TChain,
51-
TAccount,
52-
TChainOverride,
53-
typeof ABI,
54-
typeof FUNCTION
55-
>)
54+
} as unknown as WriteOpStackL1Parameters<TChain, TAccount, TChainOverride, typeof ABI, typeof FUNCTION>)
5655
}

0 commit comments

Comments
 (0)