undefinedlogoDark and logoLight are required in whiteLabel config

Hello i’m getting undefinedlogoDark and logoLight are required in whiteLabel config but when i set them to

logoLight: "https://web3auth.io/images/web3authlog.png",
logoDark: "https://web3auth.io/images/web3authlogodark.png"

i’m getting:

index-CgjO2ewP.js:120 Uncaught (in promise) Error: The current subscription plan is growth and requesting features (wallet service) are not available on growth plan. Please upgrade to a higher plan at 

so how i can bypass the initial error without having higher tier of subscription?

package versions

"@web3auth/base": "^9.0.2",
    "@web3auth/default-evm-adapter": "^9.1.0",
    "@web3auth/ethereum-provider": "^9.0.2",
    "@web3auth/modal": "^9.1.0",
    "@web3auth/wallet-services-plugin": "^9.1.0",
    "@web3auth/web3auth-wagmi-connector": "^7.0.0",

Are you using wallet services? The error is asking you to upgrade to scale plan or higher because your current plan is growth, and wallet services are not available on the growth plan. Please check the pricing here: Web3Auth | Pricing - Personalised plans for everyone!

Although if you want to try the wallet services, you can try it on the sapphire devnet for free.

@Ayush thanks for your reply yes i do, but i also i do use them on other place:

const walletServicesPlugin = new WalletServicesPlugin({
    wsEmbedOpts: {},
    walletInitOptions: {
      whiteLabel: {
        showWidgetButton: true,
        buttonPosition: 'bottom-right',
        mode: 'dark',
      },
    },
  });
  web3AuthInstance.addPlugin(walletServicesPlugin);

And i don’t see such error, my main target is to have wagmi connetor and seems like he depends on WalletServices?

Also i’ve spot something, is it possible seeing this error:

index-CgjO2ewP.js:120 Uncaught (in promise) Error: The current subscription plan is growth and requesting features (wallet service) are not available on growth plan. Please upgrade to a higher plan at 

To signout users?, I do sign in and then after some period of time like 20-30 minutes user get signed out can be this the reason for the issue?

Hey @mitevandon94

The Wagmi connector is not dependent on Wallet Services. You can skip the wallet services plugin totally from your integration. The error you are getting is because you are on Growth Plan and Wallet Services in available only on Scale Plan.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.