Revoke Delegation Response
data class RevokeDelegationResponse(val transactions: List<ConstructedEipTransaction>? = null, val encodedTransactions: List<String>? = null, val metadata: RevokeDelegationMetadata? = null)
Response model for a delegation revocation.
For EVM chains, transactions will be populated. For Solana chains, encodedTransactions will be populated.
Parameters
transactions
EVM transactions to sign and send (null for Solana).
encoded Transactions
Encoded Solana transactions to sign and send (null for EVM).
metadata
Revocation metadata including chain, revoked address, and token info.
Constructors
Link copied to clipboard
constructor(transactions: List<ConstructedEipTransaction>? = null, encodedTransactions: List<String>? = null, metadata: RevokeDelegationMetadata? = null)