cct#204
Draft
aelmanaa wants to merge 1 commit into
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
c02b2e7 to
4725f32
Compare
|
You must have Developer access to commit code to Chainlink Labs on Vercel. If you contact an administrator and receive Developer access, commit again to see your changes. Learn more: https://vercel.com/docs/accounts/team-members-and-roles/access-roles#team-level-roles |
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 introduces a new
poolcommand group to theccip-cli, adding several subcommands for managing CCIP token pool configurations across EVM, Solana, and Aptos chains. The changes provide a unified CLI interface for pool operations such as applying chain updates, appending remote pool addresses, deleting remote chain configs, and accepting pool ownership. Additionally, the build process is improved to handle more precise path rewrites for SDK imports.New pool command group and subcommands
Command group setup:
poolcommand group (src/commands/pool.ts) that dispatches to multiple subcommands for pool management, such as deploy, apply-chain-updates, append-remote-pool-addresses, delete-chain-config, and accept-ownership.New subcommands for pool management:
apply-chain-updatessubcommand to configure remote chains on a CCIP token pool, supporting config file input, stdin, and config template generation.append-remote-pool-addressessubcommand to append remote pool addresses to a pool for a given remote chain, with argument validation.delete-chain-configsubcommand to remove a remote chain configuration from a CCIP token pool.accept-ownershipsubcommand to accept proposed pool ownership, supporting multi-chain families.Build process improvements
patch-distscript inpackage.jsonto rewrite SDK import paths more precisely, ensuring correct references to token admin modules and types in the built output.