Prompt users to connect to your app with their Coinbase wallet.
Usage
using Thirdweb;
publicasyncvoidConnectWallet()
{
// Reference to your Thirdweb SDKvar sdk = ThirdwebManager.Instance.SDK;
// Configure the connectionvar connection = new WalletConnection(
provider: WalletProvider.Coinbase, // The wallet provider you want to connect to (Required)
chainId: 1// The chain you want to connect to (Required)
);
// Connect the walletstring address = await sdk.wallet.Connect(connection);
}