TransferLogs interface, combining Transfer and WithMeta.

interface TransferLogs {
    amount: string;
    meta: Metadata;
    recipient: string;
    sender: string;
}

Hierarchy (view full)

Properties

amount: string

The amount being transferred.

meta: Metadata

Transfer logs with associated metadata

recipient: string

The recipient's address in the transfer.

sender: string

The sender's address in the transfer.