Docs

Phantom

https://phantom.app/
Play StorePlay StorePlay Store

Wallet ID

"app.phantom";

Connect Wallet

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