Allow users to connect to any website and physical location
userID
instead of email addresses. Whitelabel
connectors and userID
connectivity available only for large enterprises.EVMConnectButton.tsx
, with an onClick
handlerCrossmintEVMWalletAdapter
and BlockchainTypes
CrossmintEVMWalletAdapter
and BlockchainTypes
from @crossmint/connect
, and instance it inside the component.apiKey
parameter has been deprecated. Please set the value as empty quotes.CrossmintEVMWalletAdapter
for Ethereum. If you’d like to use another chain, swap
BlockchainTypes.ETHEREUM
for BlockchainTypes.POLYGON
or the relevant chain.await crossmintConnect.connect()
. If the user accepts, it will return a string containing the user’s public key. If the user rejects, the function will return undefined
.apiKey
parameter has been deprecated. Please set the value as empty quotes.apiKey
parameter has been deprecated. Please set the value as empty quotes.new CrossmintEVMWalletAdapter
, and call the .signMessage(message)
function, where message
is a string. Find the high-level code below. Not all steps are described as the code is very similar to the one used to get a user’s public key:apiKey
parameter has been deprecated. Please set the value as empty quotes.Troubleshooting