improved
02.10.2025 - `Delegate` & `Revoke Delegation` Support in Transactions API
October 2nd, 2025
We’ve expanded our transaction parsing to include delegation actions:
- New act types
delegate
– records delegation to another contract or address.revoke_delegation
– records revocation of an existing delegation.- New response field
delegations
: captures delegation details, includingact_id
,chain_id
, andaddress
.
- New response field
"acts": [
{
"id": "0",
"type": "delegate",
"application_metadata": {
"contract_address": "0x000000009b1d0af20d8c6d0a44e162d11f9b8f00"
}
}
],
"delegations": [
{
"act_id": 0,
"chain_id": "ethereum",
"address": "0x000000009b1d0af20d8c6d0a44e162d11f9b8f00"
}
]
This makes it easier to identify smart wallet activations, revocations, and other delegation-related flows directly in API responses. Historical data will be replayed progressively; all new transactions already include delegation information.