@hydra-sdk/core
v1.3.2
Published
Hydra SDK - Core library for building decentralized applications on Cardano
Maintainers
Readme
@hydra-sdk/core
Core Cardano wallet library: HD wallets, multi-network, TypeScript-first. See docs/master-index.md for full context.
🚀 Quick Start
pnpm add @hydra-sdk/coreimport { AppWallet, NETWORK_ID } from '@hydra-sdk/core'
const wallet = new AppWallet({
networkId: NETWORK_ID.PREPROD,
key: { type: 'mnemonic', words: AppWallet.brew() }
})
console.log(wallet.getAccount(0, 0).baseAddressBech32)✨ Key Features
- 🌐 Browser-optimized with Vite/Rollup support
- 🔐 HD Wallets (BIP44) with secure key management
- 📱 DApp Integration with popular wallet connectors
- 🔗 Multi-network support (Mainnet, Preprod, Preview)
- 💎 TypeScript with complete type definitions
- 🚀 WebAssembly powered for high performance
📚 Documentation
For comprehensive guides, examples, and API reference:
Docs: hydrasdk.com/docs | Technical | API Metadata
🛠️ Build Configuration
The SDK works with modern build tools. For detailed setup instructions, visit our Configuration Guide.
