docs: add LZD wrapping steps for bridging out of Tempo via Stargate#399
Merged
Conversation
Tempo has no native gas token, so LayerZero messaging fees must be paid via LZEndpointDollar using a wrapped TIP-20 stablecoin (LZD). Before calling sendToken to bridge out, users need to: 1. Approve USDC.e to the LZD wrapper contract 2. Wrap USDC.e into LZD 3. Approve LZD to the Stargate pool Added these steps to both the cast and TypeScript examples in the 'Bridge from Tempo via Stargate' section, with a brief explanation of why the wrapping is necessary. Amp-Thread-ID: https://ampcode.com/threads/T-019e1f72-8b2f-72ee-825f-65ca36fc42d5
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-Authored-By: Uddhav <255779543+letstokenize@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the required LZD (LayerZero Dollar) wrapping steps to the "Bridge from Tempo via Stargate" section.
Why
Tempo has no native gas token, so LayerZero messaging fees are paid in a TIP-20 stablecoin via
LZEndpointDollar. Before callingsendTokento bridge out, users must first wrap USDC.e into LZD so the endpoint can consume it as a fee. Without these steps, the bridge transaction will fail.Changes
wrapAbi