Comment on page
UTXO Wallet Provider
UTXO Wallet Provider extends wallet capabilities for UTXO-based blockchains via Tatum SDK, facilitating:
- Mnemonic generation for seed phrases.
- xpub creation from mnemonics.
- Private key and address derivation from mnemonics and xpubs.
- Transaction signing and broadcasting to UTXO networks.
Utilizes well-regarded packages like bitcoinjs-lib, bitcore-lib, bip39, and bip32.
npm install @tatumio/utxo-wallet-provider
import { UtxoWalletProvider } from '@tatumio/utxo-wallet-provider';
const tatumSdk = await TatumSDK.init<Bitcoin>({
network: Network.BITCOIN,
configureWalletProviders: [
UtxoWalletProvider,
]
});
- Network.BITCOIN
- Network.DOGECOIN
- Network.LITECOIN
- Network.BITCOIN_TESTNET
- Network.DOGECOIN_TESTNET
- Network.LITECOIN_TESTNET
Remember to keep mnemonics, private keys, and other sensitive data secure. Avoid exposing them in client-side code or public repositories.
Last modified 1mo ago