Skip to content

Commit c102cf4

Browse files
chore(utxo-core): update index.ts
TICKET: BTC-2210
1 parent 706bdcc commit c102cf4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
import { signMessage, verifyMessage } from '@bitgo/utxo-core';
1+
import { bip32utils } from '@bitgo/utxo-core';
22

3-
export { signMessage, verifyMessage };
3+
export const signMessage = bip32utils.signMessage;
4+
export const verifyMessage = bip32utils.verifyMessage;

modules/utxo-core/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export * as bip65 from './bip65';
22
export * as descriptor from './descriptor';
33
export * as testutil from './testutil';
44
export * as paygo from './paygo';
5-
export * from './bip32utils';
5+
export * as bip32utils from './bip32utils';
66
export * from './dustThreshold';
77
export * from './Output';
88
export * from './xOnlyPubkey';

0 commit comments

Comments
 (0)