Guide – Creating & Managing EOAs
This guide walks you through creating your first Externally Owned Account (EOA) inside the Vault and querying it later.
- A running Vault instance.
- The admin key or a token with the
eoa:create
/eoa:read
policies. - The Vault SDK installed (see Installation).
metadata
accepts arbitrary key-value pairs that can later be used for filtering (listEoas
) or for access-token policies.
You can build richer UIs by using the pagination data (page
, pageSize
, totalRecords
).
- Group wallets via metadata – e.g.
{ env: "prod" }
,{ team: "ops" }
. - Use access tokens for app-specific actions – never ship the admin key to client-side code.
- Rotate when you onboard/offboard admins – see the rotation guide.