UNPKG

@bigmi/core

Version:

TypeScript library for Bitcoin apps.

25 lines (24 loc) 694 B
import { ChainId } from '../types/chain.js'; export declare const bitcoin: { blockExplorers: { readonly default: { readonly name: "Mempool"; readonly url: "https://mempool.space/"; }; }; id: ChainId.BITCOIN_MAINNET; name: "Bitcoin"; rpcUrls: { readonly default: { readonly http: readonly ["https://node-router.thorswap.net/bitcoin"]; }; }; testnet?: boolean | undefined | undefined; custom?: Record<string, unknown> | undefined; formatters?: undefined; readonly nativeCurrency: { readonly name: "Bitcoin"; readonly symbol: "BTC"; readonly decimals: 8; }; };