TransferFromResponse

data class TransferFromResponse(val transactions: List<ConstructedEipTransaction>? = null, val encodedTransactions: List<String>? = null, val metadata: TransferAsDelegateMetadata)

Response model for a delegated transfer.

For EVM chains, transactions will be populated. For Solana chains, encodedTransactions will be populated. Unlike other delegation responses, metadata is non-optional.

Parameters

transactions

EVM transactions to sign and send (null for Solana).

encodedTransactions

Encoded Solana transactions to sign and send (null for EVM).

metadata

Transfer metadata (always present).

Constructors

Link copied to clipboard
constructor(transactions: List<ConstructedEipTransaction>? = null, encodedTransactions: List<String>? = null, metadata: TransferAsDelegateMetadata)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard