Docs

MELDapp

https://app.meld.com

Wallet ID

"com.meld.app";

Connect Wallet

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