Coin98 Wallet
Prompt users to connect to their Coin98 wallet.
Usage
import { Coin98Wallet } from "@thirdweb-dev/wallets";
const wallet = new Coin98Wallet();
wallet.connect();
Configuration
Optionally, provide a configuration object when instantiating the Coin98Wallet
class.
projectId (recommended)
This is only relevant if you want to use WalletConnect for connecting to Coin98 wallet mobile app when MetaMask is not injected.
This projectId
can be obtained at cloud.walletconnect.com. It is highly recommended to use your own project id and only use the default one for testing purposes.
import { Coin98Wallet } from "@thirdweb-dev/wallets";
const wallet = new Coin98Wallet(
{
projectId: "YOUR_WALLET_CONNECT_PROJECT_ID",
},
);
recommended (optional)
Show this wallet as "recommended" in the ConnectWallet Modal.
Coin98Wallet({
recommended: true,
});
Methods
Inherits all the public methods from the AbstractClientWallet
class.