junderw
6 years ago
2 changed files with 8 additions and 11 deletions
@ -1,31 +1,28 @@ |
|||
const bip32 = require('bip32') |
|||
|
|||
import { Block } from './block' |
|||
import * as bip32 from 'bip32' |
|||
import * as ECPair from './ecpair' |
|||
import { Transaction } from './transaction' |
|||
import { TransactionBuilder } from './transaction_builder' |
|||
import * as address from './address' |
|||
import * as crypto from './crypto' |
|||
import * as networks from './networks' |
|||
import * as payments from './payments' |
|||
import * as script from './script' |
|||
import { OPS as opcodes } from './script' |
|||
|
|||
export { |
|||
Block, |
|||
ECPair, |
|||
Transaction, |
|||
TransactionBuilder, |
|||
address, |
|||
bip32, |
|||
crypto, |
|||
networks, |
|||
opcodes, |
|||
payments, |
|||
script, |
|||
} |
|||
|
|||
export { Block } from './block' |
|||
export { Transaction } from './transaction' |
|||
export { TransactionBuilder } from './transaction_builder' |
|||
export { OPS as opcodes } from './script' |
|||
|
|||
export { Payment, PaymentOpts } from './payments' |
|||
export { Input as TxInput, Output as TxOutput } from './transaction' |
|||
export { Network } from './networks' |
|||
export { OpCode } from './script' |
|||
export { BIP32Interface } from 'bip32' |
|||
|
Loading…
Reference in new issue