interface HttpEndpoint {
    headers: Record<string, string>;
    url: string;
}

Properties

Properties

headers: Record<string, string>

HTTP headers that are sent with every request, such as authorization information.

url: string

The URL of the HTTP endpoint.

For POST APIs like Tendermint RPC in CosmJS, this is without the method specific paths (e.g. https://cosmoshub-4--rpc--full.datahub.figment.io/)

Generated using TypeDoc