LibLayerZero

The LibLayerZero library provides functions for updating Layer Zero settings, handling Layer Zero data transfers (in and out), decoding and encoding data transfer payloads, registering and retrieving extended payloads, and enforcing authorization for Layer Zero operations. It consist of two structs:

updateSettings()

updates the LayerZero settings of the Magpie aggregator contract by storing the given LayerZeroSettings struct in the storage of the aggregator contract.

Input

FieldTypeDescription

layerZeroSettings

LayerZeroSettings

struct LayerZeroSettings {
    address routerAddress;
}

addLayerZeroChainIds()

used to add a mapping of network IDs to chain IDs in LayerZero. Takes two arrays as input, networkIds and chainIds, where the i-th element of the networkIds array corresponds to the i-th element of the chainIds array.

Input

FieldTypeDescription

networkIds

uint16[]

An array of network identifiers provided by magpie team.

chainIds

uint16[]

An array of layer zero blockchain identifiers

addLayerZeroNetworkIds()

used to add a mapping of chain IDs to network IDs in LayerZero. Takes two arrays as input, chainIds and networkIds, where the i-th element of the chainIds array corresponds to the i-th element of the networkIds array.

Input

FieldTypeDescription

chainIds

uint16[]

An array of layer zero blockchain identifiers

networkIds

uint16[]

An array of network identifiers provided by magpie team.

decodeDataTransferInPayload()

takes a byte array as input and returns a LayerZeroDataTransferInData struct. This struct contains the fee that is required to be paid for the data transfer.

Input

FieldTypeDescription

dataTransferInPayload

bytes

Payload required for transfering data from one chain to another

Output

FieldTypeDescription

dataTransferInData

LayerZeroDataTransferInData

struct LayerZeroDataTransferInData {
    uint256 fee;
}

encodeRemoteAndLocalAddresses()

this function is responsible for encoding the remote and local addresses into a bytes array.

Input

FieldTypeDescription

remoteAddress

bytes32

target address

localAddress

address

source address

Output

FieldTypeDescription

encodedRemoteAndLocalAddresses

bytes

concatenated target and source address

dataTransfer()

responsible for transferring data using LayerZero. It takes two parameters as input: payload, which is the data that is to be transferred, and protocol, which is a DataTransferInProtocol struct that contains the payload and network ID.

Input

FieldTypeDescription

payload

bytes

Payload necessary for data transfer

protocol

DataTransferInProtocol

struct DataTransferInProtocol {
    uint16 networkId;
    DataTransferType dataTransferType;
    bytes payload;
}

getPayload()

takes a byte as input, which is the data transfer out payload, and returns the extended payload for the message using the sender network ID, sender address, and core sequence of the message.

Input

FieldTypeDescription

dataTransferOutPayload

bytes

Payload necessary for data transfer

Output

FieldTypeDescription

extendedPayload

bytes

Payload + extra information like which data transfer type has been used

registerPayload()

takes a TransferKey struct and a byte array as input and registers the extended payload for the message in the storage of the aggregator contract.

Input

FieldTypeDescription

transferKey

TransferKey

struct TransferKey {
    uint16 networkId;
    bytes32 senderAddress;
    uint64 swapSequence;
}

extendedPayload

bytes

Payload + extra information like which data transfer type has been used

lzReceive()

is called when a message is received by the contract. It takes three parameters as input: senderChainId, which is the ID of the chain that sent the message, localAndRemoteAddresses, which is a byte array that contains the local and remote addresses of the sender, and extendedPayload, which is the extended payload for the message. This function validates the message and registers the extended payload for the message in the storage of the aggregator contract.

Input

FieldTypeDescription

senderChainId

uint16

The layer zero chain identifier for the source chain

localAndRemoteAddresses

bytes

The address that will receive the data from layerzero

extendedPayload

bytes

Payload + extra information like which data transfer type has been used

Events:

event UpdateLayerZeroSettings(address indexed sender, LayerZeroSettings layerZeroSettings);
event AddLayerZeroChainIds(address indexed sender, uint16[] networkIds, uint16[] chainIds);
event AddLayerZeroNetworkIds(address indexed sender, uint16[] chainIds, uint16[] networkIds);
event LzReceive(TransferKey transferKey, bytes payload);

Last updated