ethers.js/packages/web/lib/index.d.ts

39 lines
1.4 KiB
TypeScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
export declare type ConnectionInfo = {
url: string;
2020-07-14 09:33:30 +03:00
headers?: {
[key: string]: string | number;
};
2019-05-15 01:48:48 +03:00
user?: string;
password?: string;
2019-06-12 08:01:04 +03:00
allowInsecureAuthentication?: boolean;
2020-10-08 03:10:50 +03:00
allowGzip?: boolean;
throttleLimit?: number;
2020-07-15 21:00:36 +03:00
throttleSlotInterval?: number;
2020-07-14 09:33:30 +03:00
throttleCallback?: (attempt: number, url: string) => Promise<boolean>;
2019-05-15 01:48:48 +03:00
timeout?: number;
};
export interface OnceBlockable {
once(eventName: "block", handler: () => void): void;
}
2020-05-05 06:01:04 +03:00
export interface OncePollable {
once(eventName: "poll", handler: () => void): void;
}
2019-05-15 01:48:48 +03:00
export declare type PollOptions = {
timeout?: number;
floor?: number;
ceiling?: number;
interval?: number;
retryLimit?: number;
onceBlock?: OnceBlockable;
2020-05-05 06:01:04 +03:00
oncePoll?: OncePollable;
2019-05-15 01:48:48 +03:00
};
2019-09-28 09:36:19 +03:00
export declare type FetchJsonResponse = {
statusCode: number;
headers: {
[header: string]: string;
};
};
2020-07-31 08:32:26 +03:00
export declare function _fetchData<T = Uint8Array>(connection: string | ConnectionInfo, body?: Uint8Array, processFunc?: (value: Uint8Array, response: FetchJsonResponse) => T): Promise<T>;
2019-09-28 09:36:19 +03:00
export declare function fetchJson(connection: string | ConnectionInfo, json?: string, processFunc?: (value: any, response: FetchJsonResponse) => any): Promise<any>;
2020-05-21 07:07:41 +03:00
export declare function poll<T>(func: () => Promise<T>, options?: PollOptions): Promise<T>;
//# sourceMappingURL=index.d.ts.map