UNPKG

@metamask/network-controller

Version:

Provides an interface to the currently selected network via a MetaMask-compatible provider object

12 lines 392 B
import type { RpcServiceRequestable } from "./rpc-service-requestable.cjs"; /** * The interface for a service class responsible for making a request to an RPC * endpoint or a group of RPC endpoints. */ export type AbstractRpcService = RpcServiceRequestable & { /** * The URL of the RPC endpoint. */ endpointUrl: URL; }; //# sourceMappingURL=abstract-rpc-service.d.cts.map