Draft
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
175314e to
8106eb9
Compare
8106eb9 to
03da199
Compare
03da199 to
ac1c7ca
Compare
ac1c7ca to
6d68547
Compare
d51254b to
75064aa
Compare
75064aa to
c604d78
Compare
c604d78 to
9cb506c
Compare
9cb506c to
a94915f
Compare
a94915f to
03ff112
Compare
03ff112 to
73362f8
Compare
73362f8 to
c02b2e7
Compare
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.
This pull request adds several new subcommands to the
poolcommand group in theccip-clitool, enhancing its ability to manage CCIP token pools across different blockchain networks (EVM, Solana, Aptos). The new subcommands allow for advanced pool operations such as accepting ownership, appending remote pool addresses, applying chain updates via config files, and deleting remote chain configurations. Additionally, thepatch-distbuild script is updated to improve path rewriting for SDK imports.New pool subcommands and features:
Command group structure and registration:
poolcommand group (src/commands/pool.ts) that dispatches to subcommands for various pool operations, loading subcommands from thepool/directory.Pool management subcommands:
accept-ownershipsubcommand to accept proposed pool ownership, supporting EVM, Solana, and Aptos chains.append-remote-pool-addressessubcommand to add remote pool addresses for a given remote chain, with argument validation and multi-chain support.apply-chain-updatessubcommand to configure remote chains on a pool using a JSON config file or stdin, with a template generator and support for adding/removing chains and rate limiter configs.delete-chain-configsubcommand to remove a remote chain configuration from a pool, with argument validation and multi-chain support.Build process improvements:
patch-distscript inpackage.jsonto more accurately rewrite SDK import paths for token admin modules and types, ensuring correct references in the built output.