Approve Delegation Response
data class ApproveDelegationResponse(val transactions: List<ConstructedEipTransaction>? = null, val encodedTransactions: List<String>? = null, val metadata: ApproveDelegationMetadata? = null)
Response model for a delegation approval.
For EVM chains, transactions will be populated. For Solana chains, encodedTransactions will be populated.
Parameters
transactions
EVM transactions to sign and send sequentially (null for Solana).
encoded Transactions
Encoded Solana transactions to sign and send (null for EVM).
metadata
Approval metadata including chain, delegate, and token info.
Constructors
Link copied to clipboard
constructor(transactions: List<ConstructedEipTransaction>? = null, encodedTransactions: List<String>? = null, metadata: ApproveDelegationMetadata? = null)