Docs

MG

https://moongate.one
Play Store

Wallet ID

"com.moongate.one";

Connect Wallet

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