The official SDK for interacting with the Noves API.
- Translate: Understand what transactions do with clear labels and rich metadata
- Foresight: Get pre-sign insights about transactions before execution
- Pricing: Access real-time and historical token prices across chains
- Multi-chain Support: EVM, Cosmos, SVM, UTXO, TVM, and Polkadot
- Retry Mechanism: Built-in retry strategies with circuit breakers and intelligent backoff
- TypeScript Support: Full type definitions and autocompletion
npm install @noves/noves-sdkimport { Translate } from "@noves/noves-sdk";
// Initialize with your API key
const translate = Translate.evm("YOUR_API_KEY");
// Get transaction details
const txInfo = await translate.getTransaction(
"eth",
"0x1cd4d61b9750632da36980329c240a5d2d2219a8cb3daaaebfaed4ae7b4efa22"
);For detailed documentation, please visit our Documentation Site.
- Retry Mechanism Guide - Comprehensive guide to configuring retry behavior
- Error Handling Guide - Best practices for error handling
Check out our examples directory for complete code samples.
