Skip to content
Merged
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 @@ -28,7 +28,7 @@ Error.stackTraceLimit = 50 // show more stack frames for better debugging

// generate:nofail
// `const VERSION = '${require('./package.json').version}-${require('child_process').execSync('git rev-parse --short HEAD').toString().trim()}'`
const VERSION = '1.7.0-85af8e56'
const VERSION = '1.7.0-1d6f78e'
// generate:end

const require = createRequire(import.meta.url)
Expand Down
2 changes: 2 additions & 0 deletions ccip-sdk/src/api/api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,8 @@ describe('CCIPAPIClient', () => {
['1.2.0-dev', CCIPVersion.V1_2],
['1.5.0-dev', CCIPVersion.V1_5],
['1.6.0-dev', CCIPVersion.V1_6],
['1.6.2', CCIPVersion.V1_6],
['1.6.2-dev', CCIPVersion.V1_6],
] as const) {
const response = { ...mockMessageResponse, version: versionStr }
const customFetch = mock.fn(() =>
Expand Down
5 changes: 3 additions & 2 deletions ccip-sdk/src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,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.7.0-85af8e56'
export const SDK_VERSION = '1.7.0-1d6f78e'
// generate:end

/** SDK telemetry header name */
Expand Down Expand Up @@ -816,7 +816,8 @@ export class CCIPAPIClient {
dest,
destChainSelector: dest.chainSelector,
onRamp: onramp,
version: (version?.replace(/-dev$/, '') ?? CCIPVersion.V1_6) as CCIPVersion,
version: (version?.replace(/-dev$/, '').replace(/^(\d+\.\d+)(?:\.\d+)?$/, '$1.0') ??
CCIPVersion.V1_6) as CCIPVersion,
}

// Build log from API data
Expand Down
6 changes: 6 additions & 0 deletions ccip-sdk/src/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1631,6 +1631,12 @@ const SELECTORS: Selectors = {
network_type: 'TESTNET',
family: 'EVM',
},
'2026041004': {
selector: 1564738277398880633n,
name: 'private-testnet-pumice',
network_type: 'TESTNET',
family: 'EVM',
},
'2494104990': {
selector: 13231703482326770598n,
name: 'tron-testnet-shasta-evm',
Expand Down
Loading
Loading