-
Notifications
You must be signed in to change notification settings - Fork 1
Ntt integration #10
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
Ntt integration #10
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
cb373c2
reorg platform handlers folders
douglasgalico be66d2b
NTT V1 Integration
douglasgalico 12bdb71
changes
douglasgalico ebad4f4
readme
douglasgalico 0a5c120
readme
douglasgalico 5c47be8
readme-me
douglasgalico a263b9d
repo references
douglasgalico File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
evm | ||
/evm | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
"@types/express": "^5.0.3", | ||
"@wormhole-foundation/sdk-base": "^2.4.0", | ||
"@wormhole-foundation/sdk-definitions": "^2.4.0", | ||
"@wormhole-foundation/sdk-definitions-ntt": "^1.0.2", | ||
"axios": "^1.10.0", | ||
"binary-layout": "^1.3.0", | ||
"cors": "^2.8.5", | ||
|
@@ -70,6 +71,8 @@ | |
|
||
"@wormhole-foundation/sdk-definitions": ["@wormhole-foundation/[email protected]", "", { "dependencies": { "@noble/curves": "^1.4.0", "@noble/hashes": "^1.3.1", "@wormhole-foundation/sdk-base": "2.4.0" } }, "sha512-Aqx3/XLaBzbt5kt70N0lnVj3acGe/DYN66R4lG7AVv7VvDTSj2PKC0qOdbKgMh+bzFbjKK03fJkpUzl/d6eo+A=="], | ||
|
||
"@wormhole-foundation/sdk-definitions-ntt": ["@wormhole-foundation/[email protected]", "", { "peerDependencies": { "@wormhole-foundation/sdk-base": "^2.1.0", "@wormhole-foundation/sdk-definitions": "^2.1.0" } }, "sha512-HXPlWaLc/tp26WyfXCl1ndRtIJq81yunI/UqWyYcMKRabtgZUQRNJqBPYdVOV8lKVtE+4Tx3FF0OWyw7KIrNZw=="], | ||
|
||
"abitype": ["[email protected]", "", { "peerDependencies": { "typescript": ">=5.0.4", "zod": "^3 >=3.22.0" }, "optionalPeers": ["typescript", "zod"] }, "sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg=="], | ||
|
||
"accepts": ["[email protected]", "", { "dependencies": { "mime-types": "^3.0.0", "negotiator": "^1.0.0" } }, "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng=="], | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
export const nttV1multiReceiveWithGasDropOffAbi = [ | ||
{ | ||
type: "function", | ||
name: "VERSION", | ||
inputs: [], | ||
outputs: [{ name: "", type: "string", internalType: "string" }], | ||
stateMutability: "view", | ||
}, | ||
{ | ||
type: "function", | ||
name: "receiveMessages", | ||
inputs: [ | ||
{ | ||
name: "contracts", | ||
type: "address[]", | ||
internalType: "address[]", | ||
}, | ||
{ name: "messages", type: "bytes[]", internalType: "bytes[]" }, | ||
{ | ||
name: "payeeAddress", | ||
type: "address", | ||
internalType: "address", | ||
}, | ||
], | ||
outputs: [], | ||
stateMutability: "payable", | ||
}, | ||
{ | ||
type: "error", | ||
name: "DropOffFailed", | ||
inputs: [ | ||
{ name: "", type: "address", internalType: "address" }, | ||
{ name: "", type: "uint256", internalType: "uint256" }, | ||
], | ||
}, | ||
{ | ||
type: "error", | ||
name: "InvalidParameters", | ||
inputs: [ | ||
{ name: "", type: "uint256", internalType: "uint256" }, | ||
{ name: "", type: "uint256", internalType: "uint256" }, | ||
], | ||
}, | ||
] as const; |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.