Skip to content

Commit

Permalink
fix(here-wallet): remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
AZbang committed Aug 1, 2024
1 parent b2a6b29 commit 5299f6b
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/here-wallet/src/lib/selector.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
import {
HereWallet,
waitInjectedHereWallet,
WidgetStrategy,
} from "@here-wallet/core";
import type { SelectorInit } from "./types";

export const initHereWallet: SelectorInit = async (config) => {
const { store, logger, emitter, options } = config;
const here = await HereWallet.connect({
defaultStrategy: new WidgetStrategy({
widget: "http://localhost:4173/connector/index.html",
}),
});
const { store, logger, emitter, options, walletOptions } = config;
const here = await HereWallet.connect(walletOptions);

async function getAccounts() {
logger.log("HereWallet:getAccounts");
Expand Down

0 comments on commit 5299f6b

Please sign in to comment.