From a8d224a308d7c09702870c458c566d9245d4d8c6 Mon Sep 17 00:00:00 2001 From: David Totrashvili <8580261+totraev@users.noreply.github.com> Date: Mon, 2 Dec 2024 10:00:12 +0500 Subject: [PATCH] feat: export createExternalWallet factory (#78) --- .changeset/selfish-bugs-peel.md | 5 +++++ src/index.tsx | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/selfish-bugs-peel.md diff --git a/.changeset/selfish-bugs-peel.md b/.changeset/selfish-bugs-peel.md new file mode 100644 index 0000000..0c89d1c --- /dev/null +++ b/.changeset/selfish-bugs-peel.md @@ -0,0 +1,5 @@ +--- +"@babylonlabs-io/bbn-wallet-connect": patch +--- + +export createExternalWallet factory diff --git a/src/index.tsx b/src/index.tsx index 5b78d73..b5bcdb8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -14,3 +14,4 @@ export { type ChainConfigArr } from "@/context/Chain.context"; export * from "@/core/wallets/btc/BTCProvider"; export * from "@/core/wallets/bbn/BBNProvider"; export * from "@/core/types"; +export { createExternalWallet } from "@/core";