Add Agentic Wallets guide and update AgentKit documentation#506
Merged
alexander-sei merged 2 commits intomainfrom Apr 18, 2026
Merged
Add Agentic Wallets guide and update AgentKit documentation#506alexander-sei merged 2 commits intomainfrom
alexander-sei merged 2 commits intomainfrom
Conversation
Add a comprehensive Agentic Wallets guide (content/evm/ai-tooling/agentic-wallets.mdx) documenting Coinbase AgentKit and Privy server wallets on Sei, including architecture, TypeScript/Python/REST setup examples, policy engine details, known quirks, a feature comparison, and Sei network configuration. Register the new page in ai-tooling/_meta.js so it appears in the site navigation.
Update AgentKit docs for Sei compatibility and Privy policies, and correct Next types import. - Clarify built-in actions and action-provider compatibility on Sei (erc20/erc721/pyth support, WETH/x402/cdp provider limitations) and note display/network quirks (native balance labeled "ETH", undefined networkId) with guidance for workarounds. - Expand Privy policy engine docs: show ALLOW/DENY rule model, supported condition operators, updated Privy SDK usage (walletApi.createPolicy/createWallet and walletApi.updateWallet), and recommend pre-creating wallets and passing walletId to PrivyWalletProvider to avoid authorizationKeyId errors. - Add warnings/infos and updated code examples illustrating the recommended Privy+AgentKit integration pattern.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change?
Adds new documentation for Agentic Wallets on Sei — a comprehensive guide for developers building AI agents that transact autonomously on Sei's EVM.
Describe the changes to the documentation
Adds a new page at
content/evm/ai-tooling/agentic-wallets.mdxand registers it in the AI Tooling section nav (_meta.js).Target audience: developers building AI agents on Sei who need secure, programmable wallets with key isolation and policy controls.
What's covered:
ViemWalletProviderandEthAccountWalletProvider, LangChain wiring, and an action-provider support matrix (what works:walletActionProvider,erc20ActionProvider,erc721ActionProvider,pythActionProvider; what doesn't:wethActionProvider,x402ActionProvider,cdpApiActionProvider,morphoActionProvider,moonwellActionProvider).0.10.4labels native balances as "ETH" on Sei (display-only);networkIdisundefinedbecause Sei isn't in Coinbase'sCHAIN_ID_TO_NETWORK_IDmap, which causes some action providers to be silently dropped.CdpEvmWalletProviderdoes not currently support Sei, and points readers to Privy orPrivyWalletProviderfor managed custody.eip155:1329; policy engine walkthrough with a workingALLOW+DENYexample (noting the default-deny behavior); known quirks aroundBigIntserialization andauthorizationKeyIds.PrivyWalletProviderto get Privy's policies plus AgentKit's action providers.Notes
chain 1328/eip155:1328) using AgentKit0.10.4and@privy-io/server-auth1.32.5.