AI-agent-optimized MCP server for NANO cryptocurrency with comprehensive error handling, smart auto-correction, and zero external documentation needed. Integrates in 2-3 minutes with 28 specific error codes and step-by-step recovery guidance.
Stars
2
Forks
0
Watchers
2
Open Issues
1
Overall repository health assessment
^8.12.0^1.20.2^2.8.5^4.18.2^1.12.0^1.4.3^2.7.0^1.5.3^6.2.8^5.0.0^29.7.074
commits
1
commits
Add GitHub Actions workflow for npm publishing with provenance
1a6b6d1View on GitHubCleanup project, update .gitignore, and sync with latest changes
98b1fd5View on GitHubAdd RPC failover with 4 tested nodes and comprehensive RPC testing suite
4e58831View on GitHubCRITICAL FIX: Double deduction/addition bug in send and receive blocks - Root cause: nanocurrency-web calculates balance internally - Send: finalBalance = walletBalanceRaw - amountRaw - Receive: finalBalance = walletBalanceRaw + amountRaw - We were passing PRE-CALCULATED balance, causing double operations - Now passing CURRENT balance and letting library calculate - Fixed both sendTransaction and createReceiveBlock - Added 5 comprehensive tests demonstrating the bug and fix
271c59fView on GitHubFix: Receive block using wrong balance (doubling bug) - Fixed createReceiveBlock to use NEW balance instead of OLD balance - walletBalanceRaw now correctly set to (current + pending) instead of just current - Added comprehensive tests to verify the fix - Bug was causing receive blocks to fail with incorrect balance values
6f70840View on GitHubAdd comprehensive amount tracking diagnostics for send transactions
909b9baView on GitHub