ERC1155Transfer
Represents a single transfer of a single ERC1155 token.
struct ERC1155Transfer {
    address token;
    address from;
    address to;
    uint256 id;
    uint256 amount;
}
Properties
| Name | Type | Description | 
|---|---|---|
| token | address | The address of the ERC1155 token being transferred. | 
| from | address | The address the token is being transferred from. | 
| to | address | The address the token is being transferred to. | 
| id | uint256 | The id of the token being transferred. | 
| amount | uint256 | The amount of the token being transferred. |