UNPKG

@hanchon/evmosjs

Version:

Evmosjs javascript lib for the evmos blockchain

9 lines (8 loc) 317 B
import { AxiosInstance } from 'axios'; export declare class RestInstance { protected client: AxiosInstance; constructor(endpoint: string); changeEndpoint(endpoint: string): void; getAxiosInstance(): AxiosInstance; get(endpoint: string): Promise<import("axios").AxiosResponse<any, any>>; }