Skip to main content

coin98Wallet

A wallet configurator for Coin98 Wallet which allows integrating the wallet with React.

import { coin98Wallet } from "@thirdweb-dev/react";

const coin98WalletConfig = coin98Wallet(options);

options

projectId (recommended)

Your project's unique identifier that can be obtained at cloud.walletconnect.com.

Defaults to a common thirdweb projectId. We recommend getting your own projectId at cloud.walletconnect.com when launching your project.

import { coin98Wallet } from "@thirdweb-dev/react";

coin98Wallet(
{
projectId: "<PROJECT_ID>",
},
);
recommended (optional)

Show this wallet as "recommended" in the ConnectWallet Modal.

coin98Wallet({
recommended: true,
});

Usage with ConnectWallet

To allow users to connect to this wallet using the ConnectWallet component, you can add it to ThirdwebProvider's supportedWallets prop.

<ThirdwebProvider supportedWallets={[coin98Wallet()]} clientId="your-client-id">
<YourApp />
</ThirdwebProvider>

Usage with useConnect

you can use the useConnect hook to programmatically connect to the wallet without using the ConnectWallet component.

The wallet also needs to be added in ThirdwebProvider's supportedWallets if you want the wallet to auto-connect on next page load.

const coin98WalletConfig = coin98Wallet();

function App() {
const connect = useConnect();

const handleConnect = async () => {
await connect(coin98WalletConfig, connectOptions);
};

return <div> ... </div>;
}