An onchain sponsored gasless send.

Export

SponsoredSend

interface SponsoredSend {
    raw_typed_data: string;
    signature?: string;
    status: SponsoredSendStatusEnum;
    to_address_id: string;
    transaction_hash?: string;
    transaction_link?: string;
    typed_data_hash: string;
}

Properties

raw_typed_data: string

The raw typed data for the sponsored send

Memberof

SponsoredSend

signature?: string

The signed hash of the sponsored send typed data.

Memberof

SponsoredSend

The status of the sponsored send

Memberof

SponsoredSend

to_address_id: string

The onchain address of the recipient

Memberof

SponsoredSend

transaction_hash?: string

The hash of the onchain sponsored send transaction

Memberof

SponsoredSend

transaction_link?: string

The link to view the transaction on a block explorer. This is optional and may not be present for all transactions.

Memberof

SponsoredSend

typed_data_hash: string

The typed data hash for the sponsored send. This is the typed data hash that needs to be signed by the sender.

Memberof

SponsoredSend