UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

10 lines (9 loc) 333 B
import { Http } from '@fruitsjs/http'; import { AxiosRequestConfig } from 'axios'; export interface ChainServiceSettings { readonly nodeHost: string; readonly reliableNodeHosts?: string[]; readonly apiRootUrl?: string; readonly httpClientOptions?: any | AxiosRequestConfig; readonly httpClient?: Http; }