UNPKG

@airgap/coinlib-core

Version:

The @airgap/coinlib-core is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

20 lines (19 loc) 387 B
interface Bip32 { public: number; private: number; } export interface Network { messagePrefix?: string; bip32: Bip32; pubKeyHash: number; scriptHash?: number; wif: number; dustSoftThreshold?: number; dustThreshold?: number; feePerKb?: number; ethereum?: boolean; } declare const networks: { [key: string]: Network; }; export { networks };