TConnectTezosBeaconProvider
Configure and Use TConnectTezosBeaconProvider
// Interface definition for TConnectTezosBeaconProviderOptions
interface TConnectTezosBeaconProviderOptions {
// 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 URL of the bridge server used for communication.
bridgeUrl: string;
// The secret seed used for generating the wallet.
secretSeed: string;
// The API key required for authentication and access to the provider's services.
apiKey: string;
// The Tezos network configuration.
network: Network;
// (Optional) The wallet application, represented by the `TezosBeaconWalletApp` type.
walletApp?: TezosBeaconWalletApp;
}Understanding the walletApp Parameter
walletApp ParameterExample of Initializing the TConnectTezosBeaconProvider
Last updated