-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Protocols: Refactor protocols to provide better utility methods (#546)
* initial pass for refactor * Move protocols to directories * Eliminate from/to addresses from quote arg requirements
- Loading branch information
Showing
18 changed files
with
561 additions
and
575 deletions.
There are no files selected for viewing
This file contains 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
435 changes: 210 additions & 225 deletions
435
connect/src/protocols/cctpTransfer.ts → connect/src/protocols/cctp/cctpTransfer.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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,4 @@ | ||
export * from "./wormholeTransfer.js"; | ||
export * from "./tokenBridge/tokenTransfer.js"; | ||
export * from "./cctp/cctpTransfer.js"; | ||
export * from "./gateway/gatewayTransfer.js"; |
Oops, something went wrong.