Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ccip-cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { Format } from './commands/index.ts'
util.inspect.defaultOptions.depth = 6 // print down to tokenAmounts in requests
// generate:nofail
// `const VERSION = '${require('./package.json').version}-${require('child_process').execSync('git rev-parse --short HEAD').toString().trim()}'`
const VERSION = '1.4.2-36cc294'
const VERSION = '1.4.2-1c783e6'
// generate:end

const require = createRequire(import.meta.url)
Expand Down
3 changes: 1 addition & 2 deletions ccip-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
"@types/yargs": "17.0.35",
"eslint": "^10.2.0",
"eslint-config-prettier": "10.1.8",

"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
Expand All @@ -78,7 +77,6 @@
"dependencies": {
"axios": "1.15.0",
"@aptos-labs/ts-sdk": "^6.3.1",
"buffer": "^6.0.3",
"@coral-xyz/anchor": "^0.29.0",
"@mysten/bcs": "^2.0.3",
"@mysten/sui": "^2.15.0",
Expand All @@ -91,6 +89,7 @@
"bn.js": "^5.2.3",
"borsh": "^2.0.0",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"ethers": "6.16.0",
"got": "^15.0.1",
"micro-memoize": "^5.1.1",
Expand Down
2 changes: 2 additions & 0 deletions ccip-sdk/src/all-chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/

import { AptosChain } from './aptos/index.ts'
import { CantonChain } from './canton/index.ts'
import { EVMChain } from './evm/index.ts'
import { SolanaChain } from './solana/index.ts'
import { SuiChain } from './sui/index.ts'
Expand All @@ -21,6 +22,7 @@ export const allSupportedChains = {
[ChainFamily.Aptos]: AptosChain,
[ChainFamily.Sui]: SuiChain,
[ChainFamily.TON]: TONChain,
[ChainFamily.Canton]: CantonChain,
}

export { supportedChains } from './supported-chains.ts'
2 changes: 1 addition & 1 deletion ccip-sdk/src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const DEFAULT_TIMEOUT_MS = 30000
/** SDK version string for telemetry header */
// generate:nofail
// `export const SDK_VERSION = '${require('./package.json').version}-${require('child_process').execSync('git rev-parse --short HEAD').toString().trim()}'`
export const SDK_VERSION = '1.4.2-36cc294'
export const SDK_VERSION = '1.4.2-1c783e6'
// generate:end

/** SDK telemetry header name */
Expand Down
Loading
Loading