JOIN MOBILE APP

https://getjoin.io
Play StorePlay Store

Wallet ID

"io.getjoin.prd";

Connect Wallet

import { createThirdwebClient } from "thirdweb";
import { createWallet, injectedProvider } from "thirdweb/wallets";
const client = createThirdwebClient({ clientId });
const wallet = createWallet("io.getjoin.prd"); // pass the wallet id
// if the wallet extension is installed, connect to it
if (injectedProvider("io.getjoin.prd")) {
await wallet.connect({ client });
}
// show error message to user that wallet is not installed
else {
alert("wallet is not installed");
}