Interface ERC1155TransferPayload

An object representation of the Budget.Transfer contract struct for transfers of ERC1155 assets.

ERC1155TransferPayload

interface ERC1155TransferPayload {
    tokenId: bigint;
    amount: bigint;
    asset: `0x${string}`;
    target: `0x${string}`;
}

Properties

tokenId: bigint

The token ID to transfer

amount: bigint

The amount to transfer

asset: `0x${string}`

The address of the asset to target

target: `0x${string}`

The account to transfer from