Interface representing a provider for interacting with accounts and signing messages.

interface BtcProvider {
    request: (<Method>(method: Method, options: Params<Method>, providerId?: string) => Promise<RpcResponse<Method>>);
    addListener: AddListener;
}

Properties

Properties

request: (<Method>(method: Method, options: Params<Method>, providerId?: string) => Promise<RpcResponse<Method>>)
addListener: AddListener