Interface WalletConnectManager

Provides access to the underlying WalletConnect modal and provider.

interface WalletConnectManager {
    isInitialised: (() => boolean);
    isEnabled: (() => boolean);
    getModal: (() => any);
    getProvider: (() => Promise<any>);
    loadWalletListings: (() => Promise<undefined | Response>);
    getWalletLogoUrl: ((walletSlug?: string) => Promise<undefined | string>);
}

Properties

isInitialised: (() => boolean)
isEnabled: (() => boolean)
getModal: (() => any)
getProvider: (() => Promise<any>)
loadWalletListings: (() => Promise<undefined | Response>)
getWalletLogoUrl: ((walletSlug?: string) => Promise<undefined | string>)