diff --git a/ironfish/src/index.ts b/ironfish/src/index.ts index 0dd1a6a20d..a8da92f77e 100644 --- a/ironfish/src/index.ts +++ b/ironfish/src/index.ts @@ -27,6 +27,5 @@ export * from './network' export * from './package' export * from './platform' export * from './primitives' -export * from './wallet/multisig' export { getFeeRate } from './memPool' export * as devUtils from './devUtils' diff --git a/ironfish/src/wallet/index.ts b/ironfish/src/wallet/index.ts index e9a61f7f56..63a341cf2e 100644 --- a/ironfish/src/wallet/index.ts +++ b/ironfish/src/wallet/index.ts @@ -9,3 +9,4 @@ export { Base64JsonEncoder } from './exporter/encoders/base64json' export { JsonEncoder } from './exporter/encoders/json' export * from './validator' export * from './walletdb/walletdb' +export * from './multisig' diff --git a/ironfish/src/wallet/multisig.ts b/ironfish/src/wallet/multisig.ts index 9d4d14c39b..78e9e86003 100644 --- a/ironfish/src/wallet/multisig.ts +++ b/ironfish/src/wallet/multisig.ts @@ -4,6 +4,4 @@ import { multisig } from '@ironfish/rust-nodejs' -const Multisig = multisig - -export default Multisig +export const Multisig = multisig