Interface FungibleTransferPayload

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

FungibleTransferPayload

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

Properties

Properties

amount: bigint

The amount to transfer

asset: `0x${string}`

The address of the asset. Use zero address for ETH transfers.

target: `0x${string}`

The account to transfer from