@elizaos/plugin-mina
Core Mina blockchain plugin for Eliza OS that provides essential services and actions for token operations and wallet management.
Overview​
This plugin provides functionality to:
- Transfer MINA tokens between wallets
- Query wallet balances and portfolio values
- Track token prices and valuations
- Manage wallet interactions with the Mina network
- Cache token prices for performance optimization
- Get faucet tokens for testing purposes
- Get balances for wallets
Installation​
npm install @elizaos/plugin-mina
Configuration​
The plugin requires the following environment variables:
MINA_PRIVATE_KEY=your_private_key
MINA_NETWORK=mainnet|devnet
Usage​
Import and register the plugin in your Eliza configuration:
import { minaPlugin } from '@elizaos/plugin-mina';
export default {
plugins: [minaPlugin],
// ... other configuration
};
Features​
Send Token​
Transfer MINA tokens to another address:
// Example conversation
User: 'Send 1 MINA to B62qkGSBuLmqYApYoWTmAzUtwFVx6Fe9ZStJVPzCwLjWZ5NQDYTiqEU';
Assistant: "I'll send 1 MINA token now...";
Check Wallet Balance​
Query wallet balance and portfolio value:
// Example conversation
User: "What's my wallet balance?";
Assistant: 'Your wallet contains 299 MINA ($150 USD)...';
Get Faucet Tokens​
Request faucet tokens for testing:
// Example conversation
User: 'Get faucet to B62qqLnFfhYvMkFD2nUeLX1bCHtDQH3edRVtvENtwAfn2KTCFxYRjtM';
Assistant: "I'll send you some faucet tokens...";
API Reference​
Actions​
SEND_TOKEN
: Transfer MINA tokens to another addressTRANSFER_TOKEN
: Alias for SEND_TOKENSEND_MINA
: Alias for SEND_TOKENPAY
: Alias for SEND_TOKENFAUCET
: Request faucet tokens for testingBALANCE
: Query wallet balance
Providers​
walletProvider
: Manages wallet interactions with the Mina network, including balance queries and portfolio tracking
Development​
Building​
npm run build
Testing​
npm run test
Dependencies​
o1js
: Core Mina blockchain interaction librarynode-cache
: Caching implementation- Other standard dependencies listed in package.json
Contributing​
Contributions are welcome! Please see the CONTRIBUTING.md file for more information.
Credits​
This plugin integrates with and builds upon several key technologies:
- Mina Blockchain: The ZK blockchain for a secure, private and verifiable internet.
- o1js: Official Mina SDK for building zkApps.
- node-cache: Caching implementation
Special thanks to:
- The Mina team for developing Mina
- The Mina Developer community
- The o1Labs team for Mina SDK maintainers
- The Eliza community for their contributions and feedback
For more information about Mina blockchain capabilities:
License​
This plugin is part of the Eliza project. See the main project repository for license information.