useSimulateWithdrawETH
Simulates initiating a withdrawal of ETH to L1.
tsx
import { useSimulateWithdrawETH } from 'op-wagmi'
function App() {
const result = useSimulateWithdrawETH({
args: {
to: '0x968Bb4fF2482ff56Af1255019d5b955510A1159e',
amount: 1n,
},
chainId: 8453,
})
}Parameters
args
to
AddressThe address to withdraw the ETH to.
amount
bigintThe amount of ETH to withdraw.
minGasLimit (optional)
numberMinimum gas limit to use for the transaction.
extraData (optional)
HexExtra data to include in the transaction.
chainId
number
The chain ID of the chain you want to withdraw from.
Return Value
Returns wagmi's useSimulateContract return type.