-
Notifications
You must be signed in to change notification settings - Fork 79
sdk: multi-token-ntt protocol support #674
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
Merged
Merged
Conversation
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
98ef10e to
fc7154e
Compare
7ffa803 to
65087ff
Compare
f1466f0 to
507db04
Compare
kev1n-peters
commented
Sep 16, 2025
kev1n-peters
commented
Sep 17, 2025
e7fe9b6 to
7812b52
Compare
kev1n-peters
commented
Oct 8, 2025
kev1n-peters
commented
Oct 8, 2025
31a1289 to
c2131a8
Compare
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
emreboga
reviewed
Oct 20, 2025
1b56a9f to
78efeba
Compare
evan-gray
previously approved these changes
Oct 23, 2025
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.
reviewed evm/ts/src/multiTokenNttWithExecutor.ts which appears correct
78efeba to
6d38f78
Compare
a6ad02b to
7c4bb96
Compare
emreboga
previously approved these changes
Oct 24, 2025
Adds support for the MultiTokenNtt protocol along
with two new routes: MultiTokenNtt{Manual,Executor}Route.
7c4bb96 to
99e1ea1
Compare
evan-gray
approved these changes
Oct 27, 2025
emreboga
approved these changes
Oct 27, 2025
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.
Context:
This PR adds support for the MultiToken NTT (MTT) protocol and two new routes:
MultiTokenNttManualandMultiTokenNttExecutor. The key difference with MTT is that, unlike regular NTT, the contract allows transferring any token, not just a single pre-configured one.The Monad Bridge will use the MTT protocol and have two transceivers configured — Wormhole and Axelar — so you’ll see some Axelar-related code for fetching the Axelar message. Axelar emits a message just like Wormhole does. Both messages must be submitted on the destination chain to redeem the tokens.
The main files that actually implement the routes are:
sdk/route/src/executor/multiToken.ts (executor route)
sdk/route/src/multiTokenManual.ts (manual route)