forked from bigearth/bitbox-cli
-
Notifications
You must be signed in to change notification settings - Fork 62
/
index.ts
50 lines (48 loc) · 1.12 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/// <reference path="./lib/interfaces/vendors.d.ts"/>
export * from "./lib/Address"
export * from "./lib/BITBOX"
export * from "./lib/BitcoinCash"
export * from "./lib/Block"
export * from "./lib/Blockchain"
export * from "./lib/CashAccounts"
export * from "./lib/Control"
export * from "./lib/Crypto"
export * from "./lib/ECPair"
export * from "./lib/Generating"
export * from "./lib/HDNode"
export * from "./lib/Mining"
export * from "./lib/Mnemonic"
export * from "./lib/Price"
export * from "./lib/RawTransactions"
export * from "./lib/Schnorr"
export * from "./lib/Script"
export * from "./lib/Socket"
export * from "./lib/Transaction"
export * from "./lib/TransactionBuilder"
export * from "./lib/Util"
export interface BchInfo {
hashGenesisBlock: string
port: number
portRpc: number
protocol: {
magic: number
}
seedsDns: string[]
versions: {
bip32: {
private: number
public: number
}
bip44: number
private: number
public: number
scripthash: number
messagePrefix: string
}
name: string
per1: number
unit: string
testnet: boolean
toBitcoinJS: any
toBitcore: any
}