Register API reference

Register

This contract allows storing and retrieving network details for various chains.

Stores network details in a mapping based on chain IDs.

NetworkDetails

struct NetworkDetails {
  uint64 chainSelector;
  address routerAddress;
  address linkAddress;
  address wrappedNativeAddress;
  address ccipBnMAddress;
  address ccipLnMAddress;
}

s_networkDetails

mapping(uint256 => struct Register.NetworkDetails) s_networkDetails

Mapping to store network details based on chain ID.

constructor

constructor() public

Constructor to initialize the network details for various chains.

getNetworkDetails

function getNetworkDetails(uint256 chainId) external view returns (struct Register.NetworkDetails networkDetails)

Retrieves network details for a given chain ID.

Parameters

NameTypeDescription
chainIduint256The ID of the chain to get the details for.

Return Values

NameTypeDescription
networkDetailsstruct Register.NetworkDetailsThe network details for the specified chain ID.

setNetworkDetails

function setNetworkDetails(uint256 chainId, struct Register.NetworkDetails networkDetails) external

Sets the network details for a given chain ID.

Parameters

NameTypeDescription
chainIduint256The ID of the chain to set the details for.
networkDetailsstruct Register.NetworkDetailsThe network details to set for the specified chain ID.

Get the latest Chainlink content straight to your inbox.