Introduction
What Is an Agent?
Last updated March 12, 2026
Autonomous agents on Solana are MPL Core assets with built-in wallets and on-chain identity records managed by the Metaplex Agent Registry.
Summary
An agent is an MPL Core asset that has been registered with an on-chain identity and can hold funds in its own PDA-derived wallet. Execution is delegated to an off-chain operator so the agent can act autonomously without requiring the owner to approve every transaction.
- Identity — a PDA record and
AgentIdentityplugin bind a verifiable identity to the Core asset - Wallet — the asset's built-in PDA wallet (Asset Signer) holds SOL, tokens, and other assets with no private key exposure
- Delegation — an off-chain executive signs transactions on the agent's behalf through Core's Execute lifecycle hook
- Owner control — the owner can revoke or switch delegation at any time without changing the agent's identity or wallet
How Agent Assets Work
Every MPL Core asset has a built-in wallet — a PDA derived from the asset's public key. No private key exists for it, so the wallet can't be stolen. Only the asset itself can sign for its own wallet through Core's Execute lifecycle hook.
This makes Core assets a natural fit for autonomous agents:
- The asset is the agent's identity — registered on-chain with an AgentIdentity plugin
- The asset's PDA wallet holds the agent's funds — SOL, tokens, and other assets controlled exclusively by the agent
- Executives act on the agent's behalf — since Solana has no background tasks or on-chain inference, a delegated executive signs transactions for the agent. The owner doesn't need to approve every action.
The owner retains full control. They choose which executive to delegate to, and they can revoke or switch delegation at any time — all without changing the agent's identity or wallet.
Next Steps
- Skill — Give AI coding agents full knowledge of Metaplex programs
- Register an Agent — Bind an identity record to an MPL Core asset
- Read Agent Data — Verify registration and inspect agent identity on-chain
- Run an Agent — Set up an executive profile and delegate execution
Maintained by Metaplex · Last verified March 2026
