VerifiersResponse
verifiers object[]required
List of available verifiers
addresses object[]required
Array of network information paired with addresses. Each entry contains the full NetworkInfo object and the corresponding address.
networkInfo objectrequired
Human-readable name identifier for the blockchain network. Used for display purposes and network identification.
ethereum-mainnetThe CCIP chain selector identifier (uint64 as string). Example Selectors (non-exhaustive):
| Chain | Selector |
|---|---|
| Arbitrum | 4949039107694359620 |
| Base | 15971525489660198786 |
| Ethereum | 5009297550715157269 |
| Optimism | 3734403246176062136 |
| Polygon | 4051577828743386545 |
| Solana | 124615329519749607 |
For the complete list of chain selectors, see: CCIP Directory
Possible values: Value must match regular expression ^[0-9]+$
5009297550715157269Native chain identifier (EIP-155 for EVM, genesis hash for SVM, etc.).
1Blockchain family/architecture type. Determines message format, address encoding, and execution model.
EVMContract address on this network.
0x742d35Cc6634C0532925a3b8D5c8C22C5B2D8a3Emetadata objectrequired
Human-readable name for the verifier.
Chainlink VerifierURL to the verifier's logo image.
https://example.com/chainlink-logo.png{
"verifiers": [
{
"addresses": [
{
"networkInfo": {
"name": "ethereum-mainnet",
"chainSelector": "5009297550715157269",
"chainId": "1",
"chainFamily": "EVM"
},
"address": "0x742d35Cc6634C0532925a3b8D5c8C22C5B2D8a3E"
},
{
"networkInfo": {
"name": "solana-mainnet",
"chainSelector": "124615329519749607",
"chainId": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
"chainFamily": "SVM"
},
"address": "Ccip842gzYHhvdDkSyi2YVCoAoUwBFqPkXr3Ust5jo3j"
}
],
"metadata": {
"name": "Chainlink Verifier",
"logoUrl": "https://example.com/chainlink-logo.png"
}
},
{
"addresses": [
{
"networkInfo": {
"name": "ethereum-mainnet",
"chainSelector": "5009297550715157269",
"chainId": "1",
"chainFamily": "EVM"
},
"address": "0x9876543210fedcba9876543210fedcba98765432"
}
],
"metadata": {
"name": "Second Verifier",
"logoUrl": "https://example.com/second-logo.png"
}
}
]
}