WalletConnect

Wallet Connect in their own words

WalletConnect is the Web3 messaging layer and a standard to connect blockchain wallets to dapps. Our mission continues to expand the interoperability of the Web3 space by providing the best tooling and infrastructure for Wallets to deliver an outstanding user experience. WalletConnect v2 is chain agnostic and built to work with any blockchain of your choice. To read more in detail about the WalletConnect protocol, check out our Technical specifications.

Initialization

Let's now take a look at the WalletConnect's adapterConfigs:

const auth = new ProticoAuthCore({
       ...
        adapterConfigs: {
        ...
          [SUPPORTED_ADAPTERS.WALLET_CONNECT_V2]: {
            enable: true,
            projectId: xxx, 
          },
          ...
        },
      });

Parameters description

Parameter
Description
Optional

enable

Is WalletConnect enabled?

No

projectId

WalletConnect Project ID Visit WalletConnect to obtain your credentials.

No

Last updated