diff --git a/wallets/metamask/src/actions/index.ts b/wallets/metamask/src/actions/index.ts new file mode 100644 index 000000000..c45d637f4 --- /dev/null +++ b/wallets/metamask/src/actions/index.ts @@ -0,0 +1,3 @@ +export * from './connectToDapp' +export * from './lock' +export * from './unlock' diff --git a/wallets/metamask/src/index.ts b/wallets/metamask/src/index.ts index 0992cf4a2..14db46201 100644 --- a/wallets/metamask/src/index.ts +++ b/wallets/metamask/src/index.ts @@ -1,2 +1,5 @@ export * from './prepareExtension' export * from './pages' +export * from './actions' +export * from './selectors' +export * from './utils/getExtensionId'