import { metamaskWallet } from "thirdweb/wallets";const wallet = await metamaskWallet().connect();
import { coinbaseWallet } from "thirdweb/wallets";const wallet = await coinbaseWallet().connect();
import { rainbowWallet } from "thirdweb/wallets";const wallet = await rainbowWallet().connect();
For usage in backend environments.
import { privateKeyWallet } from "thirdweb/wallets";const wallet = privateKeyWallet({ client, privateKey: "<your_private_key>" });