TConnectEtherlinkProvider
Configure and use TConnectEtherlinkProvider
// Interface definition for TConnectEtherlinkProviderOptions
interface TConnectEtherlinkProviderOptions {
// 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 API key required for authentication and access to the provider's services.
apiKey: string;
// The Network you will connected to
// Default: Ghostnet
network: EtherlinkNetwork;
// (Optional) The wallet application, represented by the `EtherlinkWalletApp` type.
walletApp?: EtherlinkWalletApp;
}Understanding the walletApp Parameter
walletApp ParameterExample of initializing the TConnectEtherlinkProvider
Last updated