{"id":28476431,"url":"https://github.com/smartcontractkit/ccip-tools-ts","last_synced_at":"2026-03-07T00:05:23.017Z","repository":{"id":264316569,"uuid":"845054584","full_name":"smartcontractkit/ccip-tools-ts","owner":"smartcontractkit","description":"Typescript CLI and library to interact with CCIP","archived":false,"fork":false,"pushed_at":"2025-06-18T17:00:34.000Z","size":781,"stargazers_count":7,"open_issues_count":4,"forks_count":8,"subscribers_count":15,"default_branch":"main","last_synced_at":"2025-06-18T17:46:33.658Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smartcontractkit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-08-20T13:47:18.000Z","updated_at":"2025-06-07T11:09:26.000Z","dependencies_parsed_at":"2024-12-18T16:22:00.169Z","dependency_job_id":"60d1b690-244c-48cc-8024-27cfe25548cf","html_url":"https://github.com/smartcontractkit/ccip-tools-ts","commit_stats":null,"previous_names":["smartcontractkit/ccip-tools-ts"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/smartcontractkit/ccip-tools-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartcontractkit%2Fccip-tools-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartcontractkit%2Fccip-tools-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartcontractkit%2Fccip-tools-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartcontractkit%2Fccip-tools-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smartcontractkit","download_url":"https://codeload.github.com/smartcontractkit/ccip-tools-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smartcontractkit%2Fccip-tools-ts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263050404,"owners_count":23405827,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-07T15:06:54.497Z","updated_at":"2026-03-07T00:05:23.002Z","avatar_url":"https://github.com/smartcontractkit.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ccip-tools-ts\n\nTypeScript SDK and CLI for [CCIP](https://chain.link/cross-chain) (Cross-Chain Interoperability Protocol).\n\n\u003e [!IMPORTANT]\n\u003e This tool is provided under an MIT license and is for convenience and illustration purposes only.\n\n## Packages\n\n| Package                           | Description                         | Install                              |\n| --------------------------------- | ----------------------------------- | ------------------------------------ |\n| [@chainlink/ccip-sdk](./ccip-sdk) | TypeScript SDK for CCIP integration | `npm install @chainlink/ccip-sdk`    |\n| [@chainlink/ccip-cli](./ccip-cli) | Command-line interface              | `npm install -g @chainlink/ccip-cli` |\n\n## Quick Start\n\n### Track a CCIP Message (CLI)\n\n```bash\nccip-cli show 0xYOUR_TX_HASH \\\n  --rpc https://ethereum-sepolia-rpc.publicnode.com \\\n  --rpc https://sepolia-rollup.arbitrum.io/rpc\n```\n\n### Integrate in Your App (SDK)\n\n```ts\nimport { EVMChain, networkInfo } from '@chainlink/ccip-sdk'\n\nconst source = await EVMChain.fromUrl('https://ethereum-sepolia-rpc.publicnode.com')\nconst router = '0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59'\nconst destChainSelector = networkInfo('ethereum-testnet-sepolia-arbitrum-1').chainSelector\n\nconst fee = await source.getFee({ router, destChainSelector, message: {\n  receiver: '0xYourAddress',\n  data: '0x48656c6c6f',\n  extraArgs: { gasLimit: 200_000n },\n} })\n```\n\n## Supported Chains\n\n| Chain Family | Networks                                                     | Status         |\n| ------------ | ------------------------------------------------------------ | -------------- |\n| EVM          | Ethereum, Arbitrum, Optimism, Polygon, Avalanche, Base, etc. | Supported      |\n| Solana       | Mainnet, Devnet                                              | Supported      |\n| Aptos        | Mainnet, Testnet                                             | Supported      |\n| Sui          | Mainnet, Testnet                                             | Partial (manual exec) |\n| TON          | Mainnet, Testnet                                             | Partial (no token pool/registry queries) |\n\n## Documentation\n\n📖 **[Full Documentation](./docs/)**\n\n| Guide                                          | Description                  |\n| ---------------------------------------------- | ---------------------------- |\n| [Overview](./docs/index.md)                    | Introduction and quick start |\n| [SDK Guide](./docs/sdk/index.md)               | SDK usage and patterns       |\n| [CLI Reference](./docs/cli/index.md)           | All commands and options     |\n| [Contributing](./CONTRIBUTING.md)              | Development setup            |\n| [Adding New Chain](./docs/adding-new-chain.md) | Implement a new blockchain   |\n\n## Development\n\n\u003e [!NOTE]\n\u003e NodeJS version v20+ is required. For development of the packages, v24+ is required.\n\u003e `npm test` will only work with v24+\n\n```bash\ngit clone https://github.com/smartcontractkit/ccip-tools-ts\ncd ccip-tools-ts\nnpm ci\nnpm test\n```\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for details.\n\n## Resources\n\n- [CCIP Official Documentation](https://docs.chain.link/ccip)\n- [CCIP Directory](https://docs.chain.link/ccip/directory) - Router addresses by network\n- [Changelog](./CHANGELOG.md)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmartcontractkit%2Fccip-tools-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmartcontractkit%2Fccip-tools-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmartcontractkit%2Fccip-tools-ts/lists"}