
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
crossmint-agentic-wallet
Advanced tools
Non-custodial Solana wallet creation for AI agents using Crossmint MPC infrastructure
Create and manage non-custodial Solana wallets for AI agents using Crossmint's MPC infrastructure.
sk_staging_ or sk_production_)export CROSSMINT_SERVERSIDE_API_KEY=sk_staging_your-key-here
Or add to your .env:
CROSSMINT_SERVERSIDE_API_KEY=sk_staging_your-key-here
cd skills/crossmint-agentic-wallet
npm install
npm run build
{
"skills": {
"entries": {
"crossmint-agentic-wallet": {
"enabled": true,
"env": {
"CROSSMINT_SERVERSIDE_API_KEY": "sk_staging_your-key"
}
}
}
}
}
import { CrossmintAgentWallet, createSkill } from '@mawdos/crossmint-agentic-wallet';
// Option 1: Direct client usage
const wallet = new CrossmintAgentWallet('sk_staging_your-key');
// Create a wallet for an AI agent
const result = await wallet.createWallet({
identifier: 'trading-agent-001',
chain: 'solana-devnet',
alias: 'trading'
});
console.log('Wallet created:', result.data?.address);
// Fund with testnet tokens
await wallet.fundWalletStaging('trading-agent-001', 100);
// Check balances
const balances = await wallet.getBalances('trading-agent-001', 'solana-devnet');
console.log('SOL balance:', balances.data?.nativeToken.amount);
// Transfer tokens
await wallet.transferSol({
fromIdentifier: 'trading-agent-001',
toAddress: 'RecipientAddress...',
amount: '0.1',
chain: 'solana-devnet'
});
// Option 2: Skill-based usage (for agent frameworks)
const skill = createSkill('sk_staging_your-key');
// Execute tools by name
const walletResult = await skill.execute('create_wallet', {
identifier: 'my-agent',
chain: 'solana-devnet'
});
The skill is also exposed via REST endpoints at /api/wallets:
# Create a wallet
curl -X POST http://localhost:3001/api/wallets/create \
-H "Content-Type: application/json" \
-d '{
"identifier": "agent@example.com",
"chain": "solana-devnet"
}'
# Get or create (idempotent)
curl -X POST http://localhost:3001/api/wallets/get-or-create \
-H "Content-Type: application/json" \
-d '{
"identifier": "trading-agent-001",
"chain": "solana-devnet",
"alias": "trading"
}'
# Get balances
curl http://localhost:3001/api/wallets/trading-agent-001/balances?chain=solana-devnet
# Fund with testnet tokens
curl -X POST http://localhost:3001/api/wallets/trading-agent-001/fund \
-H "Content-Type: application/json" \
-d '{"amount": 100}'
# Transfer SOL
curl -X POST http://localhost:3001/api/wallets/trading-agent-001/transfer-sol \
-H "Content-Type: application/json" \
-d '{
"toAddress": "RecipientAddress...",
"amount": "0.1",
"chain": "solana-devnet"
}'
| Tool | Description |
|---|---|
create_wallet | Create a new wallet for an agent |
get_or_create_wallet | Get existing or create new (idempotent) |
get_wallet | Get wallet by identifier |
get_balances | Get SOL and token balances |
transfer_sol | Transfer native SOL |
transfer_tokens | Transfer SPL tokens (USDC, etc.) |
fund_wallet_staging | Fund with testnet USDXM (staging only) |
Wallets can be created using different identifier types:
| Type | Example | Use Case |
|---|---|---|
agent@example.com | User-linked agents | |
| Phone | +14155551234 | SMS-verified agents |
| Agent ID | trading-agent-001 | Autonomous agents |
| Chain | Environment | Use |
|---|---|---|
solana-devnet | Staging | Testing with free tokens |
solana | Production | Real transactions |
MIT
FAQs
Non-custodial Solana wallet creation for AI agents using Crossmint MPC infrastructure
We found that crossmint-agentic-wallet demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.