File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
import * as Constants from './constants' ;
2
2
import * as Utils from './utils' ;
3
3
4
- export {
5
- CosmosTransaction as Transaction ,
6
- CosmosTransactionBuilder as TransactionBuilder ,
7
- } from '@bitgo/abstract-cosmos' ;
4
+ export * from './iface' ;
5
+
6
+ export { CosmosTransactionBuilder as TransactionBuilder } from '@bitgo/abstract-cosmos' ;
7
+ export { BabylonTransaction as Transaction } from './BabylonTransaction' ;
8
+ export { CustomTransactionBuilder } from './CustomTransactionBuilder' ;
8
9
export { KeyPair } from './keyPair' ;
9
10
export { TransactionBuilderFactory } from './transactionBuilderFactory' ;
10
11
export { Constants , Utils } ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import * as testData from '../resources/baby';
9
9
import { BabylonSpecificMessages } from '../../src/lib/iface' ;
10
10
11
11
describe ( 'Babylon Transaction' , ( ) => {
12
- let tx : Transaction < BabylonSpecificMessages > ;
12
+ let tx : Transaction ;
13
13
const config = coins . get ( 'tbaby' ) ;
14
14
15
15
beforeEach ( ( ) => {
You can’t perform that action at this time.
0 commit comments