debeem-wallet
interface IRpcService {
    get config(): NetworkModels;
    get supportedChainMap(): {
        [key: number]: string;
    };
    get supportedChains(): number[];
    get supportedNetworks(): string[];
    getEndpointByChainId(chainId?): string;
    getNetworkByChainId(chainId?): null | string;
}

Implemented by

Accessors

Methods