Overview
The Solana delegated client mirrors the EVM delegated client one-for-one — same auth model, same webhook decrypt helper, same revocation. Only the chain client type and the signature format differ. For the full delegation flow (how the webhook is sent, what the encrypted envelope contains, security best practices), see EVM Delegated Access. This page covers only the Solana-specific bits.Prerequisites
- EVM Delegated Access — read this first for the full flow
- An RSA private key registered with Dynamic for webhook decryption (PEM-encoded PKCS#8)
Decrypting the Webhook
Identical to EVM:Building the Delegated SVM Client
Signing a Solana Message
Revoking Delegation
Same as EVM — callrevoke_delegation on the base delegated client:
Related
- EVM Delegated Access — full flow + security guidance
- Delegated Access Overview — conceptual background