From 59a4701e7096fb1fe8c02b124b33ec8854b7eb9b Mon Sep 17 00:00:00 2001 From: Wei-Jun Hung Date: Sat, 15 Apr 2023 00:47:40 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Include=20web3auth=20in=20constr?= =?UTF-8?q?uctor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/pages/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/pages/index.vue b/example/pages/index.vue index 7e05390..4cf751e 100644 --- a/example/pages/index.vue +++ b/example/pages/index.vue @@ -231,6 +231,8 @@ export default { LikeCoinWalletConnectorMethodType.MetaMaskLeap, LikeCoinWalletConnectorMethodType.CosmostationMobile, LikeCoinWalletConnectorMethodType.WalletConnectV2, + LikeCoinWalletConnectorMethodType.KeplrMobile, + LikeCoinWalletConnectorMethodType.Web3Auth, ], keplrSignOptions: { disableBalanceCheck: true, @@ -255,6 +257,9 @@ export default { onEvent: ({ type, ...payload}) => { console.log('onEvent', type, payload); }, + + web3AuthNetwork: 'mainnet', + web3AuthClientId: 'clientId', }); const session = this.connector.restoreSession(); this.handleConnection(session);