InputEncoding

Git Source

Defines the encoding of inputs added by core trustless and permissionless contracts, such as portals.

Functions

encodeEtherDeposit

Encode an Ether deposit.

function encodeEtherDeposit(address sender, uint256 value, bytes calldata execLayerData) internal pure returns (bytes memory);

Parameters

NameTypeDescription
senderaddressThe Ether sender
valueuint256The amount of Wei being sent
execLayerDatabytesAdditional data to be interpreted by the execution layer

Returns

NameTypeDescription
<none>bytesThe encoded input payload

encodeERC20Deposit

Encode an ERC-20 token deposit.

function encodeERC20Deposit( IERC20 token, address sender, uint256 value, bytes calldata execLayerData ) internal pure returns (bytes memory);

Parameters

NameTypeDescription
tokenIERC20The token contract
senderaddressThe token sender
valueuint256The amount of tokens being sent
execLayerDatabytesAdditional data to be interpreted by the execution layer

Returns

NameTypeDescription
<none>bytesThe encoded input payload

encodeERC721Deposit

Encode an ERC-721 token deposit.

baseLayerData should be forwarded to token.

function encodeERC721Deposit( IERC721 token, address sender, uint256 tokenId, bytes calldata baseLayerData, bytes calldata execLayerData ) internal pure returns (bytes memory);

Parameters

NameTypeDescription
tokenIERC721The token contract
senderaddressThe token sender
tokenIduint256The token identifier
baseLayerDatabytesAdditional data to be interpreted by the base layer
execLayerDatabytesAdditional data to be interpreted by the execution layer

Returns

NameTypeDescription
<none>bytesThe encoded input payload

encodeSingleERC1155Deposit

Encode an ERC-1155 single token deposit.

baseLayerData should be forwarded to token.

function encodeSingleERC1155Deposit( IERC1155 token, address sender, uint256 tokenId, uint256 value, bytes calldata baseLayerData, bytes calldata execLayerData ) internal pure returns (bytes memory);

Parameters

NameTypeDescription
tokenIERC1155The ERC-1155 token contract
senderaddressThe token sender
tokenIduint256The identifier of the token being transferred
valueuint256Transfer amount
baseLayerDatabytesAdditional data to be interpreted by the base layer
execLayerDatabytesAdditional data to be interpreted by the execution layer

Returns

NameTypeDescription
<none>bytesThe encoded input payload

encodeBatchERC1155Deposit

Encode an ERC-1155 batch token deposit.

baseLayerData should be forwarded to token.

function encodeBatchERC1155Deposit( IERC1155 token, address sender, uint256[] calldata tokenIds, uint256[] calldata values, bytes calldata baseLayerData, bytes calldata execLayerData ) internal pure returns (bytes memory);

Parameters

NameTypeDescription
tokenIERC1155The ERC-1155 token contract
senderaddressThe token sender
tokenIdsuint256[]The identifiers of the tokens being transferred
valuesuint256[]Transfer amounts per token type
baseLayerDatabytesAdditional data to be interpreted by the base layer
execLayerDatabytesAdditional data to be interpreted by the execution layer

Returns

NameTypeDescription
<none>bytesThe encoded input payload