chaingate
Version:
Multi-chain cryptocurrency SDK for TypeScript — unified API for Bitcoin, Ethereum, Litecoin, Dogecoin, Bitcoin Cash, Polygon, Arbitrum, and any EVM-compatible chain. Create wallets, query balances, send transactions, and manage tokens and NFTs across UTXO
13 lines (12 loc) • 475 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.commonDerivationPaths = void 0;
/** Default derivation paths for popular networks (Bitcoin, EVM, Litecoin, Dogecoin, Bitcoin Cash). */
exports.commonDerivationPaths = [
"m/44'/0'/0'/0/0", // Bitcoin
"m/44'/1'/0'/0/0", // Bitcoin Testnet
"m/44'/60'/0'/0/0", // EVM
"m/44'/2'/0'/0/0", // Litecoin
"m/44'/3'/0'/0/0", // Dogecoin
"m/44'/145'/0'/0/0", // Bitcoin Cash
];