From 8ba7049ea398293bf078f24d7b07bbef843a25bb Mon Sep 17 00:00:00 2001 From: Daniel Izdebski Date: Fri, 27 Oct 2023 01:05:58 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=EF=B8=8F=20feat(metamask):=20Expor?= =?UTF-8?q?t=20functions=20needed=20for=20the=20fixture?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wallets/metamask/src/actions/index.ts | 3 +++ wallets/metamask/src/index.ts | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 wallets/metamask/src/actions/index.ts 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'