UNPKG

@solace-fi/sdk-nightly

Version:

Note - Unstable nightly build, documentation not up-to-date for nightly build

12 lines (11 loc) 503 B
import { BigNumber } from "ethers"; export * from "./price"; export * from "./contract"; export * from "./api"; export * from "./gas"; export * from "./ethers"; export * from './multicall'; export declare const withBackoffRetries: (f: any, retryCount?: number, jitter?: number) => Promise<any>; export declare const delay: (ms: number) => Promise<unknown>; export declare const rangeFrom0: (stop: number) => number[]; export declare const sortBNs: (a: BigNumber, b: BigNumber) => 0 | 1 | -1;