TConnectTezosWcProvider
Configure and Use TConnectTezosWcProvider
// Interface definition for TConnectTezosWcProviderOptions
interface TConnectTezosWcProviderOptions {
// The name of your application.
appName: string;
// The URL linking to your application's website or homepage.
appUrl: string;
// (Optional) A URL pointing to an icon that represents your application.
appIcon?: string;
// The API key required for authentication and access to the provider's services.
apiKey: string;
// The Tezos network to connect to (e.g., "mainnet", "ghostnet").
network: Network;
// The URL of the bridge server used for communication.
bridgeUrl: string;
// (Optional) The wallet application, represented by the `TezosWcWalletApp` type.
walletApp?: TezosWcWalletApp;
}Understanding the walletApp Parameter
walletApp ParameterExample of Initializing the TConnectTezosWcProvider
Last updated