Skip to main content
Version: v2

LaneLatency

lane objectrequired

The lane (source-destination pair) for which latency is measured

sourceNetworkInfo objectrequired

Source blockchain network information for this lane

namestringrequired

Human-readable name identifier for the blockchain network. Used for display purposes and network identification.

Example: ethereum-mainnet
chainSelectorstringrequired

The CCIP chain selector identifier for the network. This is a uint64 value represented as a string. See the official chain selectors repository: https://github.com/smartcontractkit/chain-selectors/blob/v1.0.60/selectors.yml

Possible values: Value must match regular expression ^[0-9]+$

Example: 5009297550715157269
chainIdstringrequired

Native chain identifier (EIP-155 for EVM, genesis hash for SVM, etc.).

Example: 1
chainFamilystringrequired

Blockchain family/architecture type. Determines message format, address encoding, and execution model.

Example: EVM
destNetworkInfo objectrequired

Destination blockchain network information for this lane

namestringrequired

Human-readable name identifier for the blockchain network. Used for display purposes and network identification.

Example: ethereum-mainnet
chainSelectorstringrequired

The CCIP chain selector identifier for the network. This is a uint64 value represented as a string. See the official chain selectors repository: https://github.com/smartcontractkit/chain-selectors/blob/v1.0.60/selectors.yml

Possible values: Value must match regular expression ^[0-9]+$

Example: 5009297550715157269
chainIdstringrequired

Native chain identifier (EIP-155 for EVM, genesis hash for SVM, etc.).

Example: 1
chainFamilystringrequired

Blockchain family/architecture type. Determines message format, address encoding, and execution model.

Example: EVM
routerAddressstringrequired

Address of the CCIP router contract on the source chain for this lane.

Example: 0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D
totalMsintegerrequired

90th percentile latency in milliseconds for message delivery on this lane.

Possible values: >= 0

Example: 900000
JSON
LaneLatency
{
"lane": {
"sourceNetworkInfo": {
"name": "ethereum-mainnet",
"chainSelector": "5009297550715157269",
"chainId": "1",
"chainFamily": "EVM"
},
"destNetworkInfo": {
"name": "solana-mainnet",
"chainSelector": "124615329519749607",
"chainId": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
"chainFamily": "SVM"
},
"routerAddress": "0x80226fc0Ee2b096224EeAc085Bb9a8cba1146f7D"
},
"totalMs": 900000
}