-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add transferGasEstimate to oftV2TransferStarter #2315
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -0,0 +1,381 @@ | |||
export const oftV2Abi = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exporting it in TS file rather than JSON means we can use as const
and have typing from wagmi in writeContract
const quote = await readContract({ | ||
address, | ||
abi: oftV2Abi, | ||
functionName: 'quoteSend', | ||
args: [sendParams, false] | ||
}) | ||
return { | ||
nativeFee: quote.nativeFee.toString(), | ||
lzTokenFee: quote.lzTokenFee.toString() | ||
nativeFee: quote.nativeFee, | ||
lzTokenFee: quote.lzTokenFee | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using writeContract
with as const
abi, type is infered
return { | ||
estimatedParentChainGas: await signer.estimateGas(config), | ||
estimatedChildChainGas: constants.Zero | ||
} | ||
} | ||
|
||
public async transferEstimateFee({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to add the logic to subtract the gas from the fee so we can have an estimate of only the fee from layerzero
Summary
Steps to test