From 7927ae8b708337137b8165ecd4969aa2588508ec Mon Sep 17 00:00:00 2001 From: Aaron Cox Date: Thu, 26 Sep 2024 12:34:55 -0700 Subject: [PATCH] Initialize new plugins --- src/lib/state/client/wharf.svelte.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/state/client/wharf.svelte.ts b/src/lib/state/client/wharf.svelte.ts index 398ce633..841ce67e 100644 --- a/src/lib/state/client/wharf.svelte.ts +++ b/src/lib/state/client/wharf.svelte.ts @@ -20,6 +20,9 @@ import { WalletPluginAnchor } from '@wharfkit/wallet-plugin-anchor'; import { WalletPluginMetaMask } from '@wharfkit/wallet-plugin-metamask'; import { WalletPluginPrivateKey } from '@wharfkit/wallet-plugin-privatekey'; import { WalletPluginWombat } from '@wharfkit/wallet-plugin-wombat'; +import { WalletPluginScatter } from '@wharfkit/wallet-plugin-scatter'; +import { WalletPluginTokenPocket } from '@wharfkit/wallet-plugin-tokenpocket'; + import { AccountCreationPluginMetamask } from '@wharfkit/account-creation-plugin-metamask'; import { AccountCreationPluginGreymass } from '@wharfkit/account-creation-plugin-greymass'; @@ -37,6 +40,8 @@ import { chainMapper } from '$lib/wharf/chains'; const walletPlugins: WalletPlugin[] = [ new WalletPluginAnchor(), new WalletPluginMetaMask(), + new WalletPluginScatter(), + new WalletPluginTokenPocket(), new WalletPluginWombat() ];