Coinbase Wallet

https://www.coinbase.com/wallet/

Wallet ID

"com.coinbase.wallet";

Connect Wallet

import { createThirdwebClient } from "thirdweb";
import { createWallet } from "thirdweb/wallets";
const client = createThirdwebClient({ clientId });
const wallet = createWallet("com.coinbase.wallet", {
appMetadata: {
name: "My app",
description: "My app description",
icon: "https://myapp.com/icon.png",
},
// for mobile, pass the callback URL of your app's universal link
mobileConfig: {
callbackURL: "https://myapp.com",
},
// switch between smart wallet and EOA wallet
walletConfig: {
options: "smartWalletOnly", // or "eoaOnly" or "all"
},
}),;
await wallet.connect({ client });

Reference

View All Creation Options