-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathindex.d.ts
19 lines (19 loc) · 913 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as address from './address.js';
import * as crypto from './crypto.js';
import * as networks from './networks.js';
import * as payments from './payments/index.js';
import * as script from './script.js';
export { address, crypto, networks, payments, script };
export { Block } from './block.js';
/** @hidden */
export { TaggedHashPrefix } from './crypto.js';
export { Psbt, PsbtTxInput, PsbtTxOutput, PsbtInputExtended, PsbtOutputExtended, Signer, SignerAsync, HDSigner, HDSignerAsync, toXOnly, } from './psbt.js';
/** @hidden */
export { OPS as opcodes } from './ops.js';
export { Transaction } from './transaction.js';
/** @hidden */
export { Network } from './networks.js';
/** @hidden */
export { Payment, PaymentCreator, PaymentOpts, Stack, StackElement, } from './payments/index.js';
export { Input as TxInput, Output as TxOutput } from './transaction.js';
export { initEccLib } from './ecc_lib.js';