Skip to main content

ICCIPClient

Git Source

Copied from Client.sol in chainlink-ccip-1.6.0

Structs

EVMTokenAmount

struct EVMTokenAmount {
address token; // token address on the local chain.
uint256 amount; // Amount of tokens.
}

Any2EVMMessage

struct Any2EVMMessage {
bytes32 messageId; // MessageId corresponding to ccipSend on source.
uint64 sourceChainSelector; // Source chain selector.
bytes sender; // abi.decode(sender) if coming from an EVM chain.
bytes data; // payload sent in original message.
EVMTokenAmount[] destTokenAmounts; // Tokens and their amounts in their destination chain representation.
}