Documentation Index
Fetch the complete documentation index at: https://docs.altheia.xyz/llms.txt
Use this file to discover all available pages before exploring further.
New
- SDK published to npm under the
@altheia-xyz/*scope. Install withnpm i @altheia-xyz/sdk(Apache-2.0, public). Thetypes,sdk,mcp, andsolana-agent-kitpackages are all live. See the Integrate the SDK guide. - Full policies are now stored on-chain. Agent accounts persist your token caps, allowed programs (up to 8), and blocked destinations (up to 4) directly on Solana — not just a hash. You can inspect any agent’s policy with a single
getAccountInfocall, no backend required. Learn more in Policies. - Jupiter swap agent example. A real mainnet Jupiter v6 swap wrapped by
altheia.guard, showing the full trust contract end-to-end: under-cap swaps execute with a Solscan-linkable signature, over-cap requests throwPolicyDeniedErrorbefore the keypair ever signs. - Orca swap agent example. A 6-scenario walkthrough covering allow, deny, kill-switch, and recovery flows. See the Orca swap agent guide.
Updates
- API endpoint defaults to
https://api.altheia.xyz. Theendpointoption is now optional inAltheia({ ... }); localhost defaults have been removed across all packages. - Transaction signatures flow through
altheia.guard. The on-chaintx_signatureis now threaded into reports automatically so every audit entry links back to the underlying transaction. solana-agent-kitadapter is mainnet-only. Thetrade()helper uses the mainnet Jupiter API directly; devnet is not supported by the upstream SAK.- Package homepages point to docs.altheia.xyz. READMEs across all packages now lead with the docs link.
Fixes
- Resolved a pnpm version conflict in CI by pinning the
packageManagerfield; clean installs no longer fail on fresh clones. - The
mcppackage now exposes an explicittypesentry so editors pick up type hints on first import.