btc-wallet 0.2.4 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1 @@
1
+ export declare function executeBurrowSupply(amount: string, environment: 'dev' | 'testnet' | 'mainnet'): Promise<void>;
@@ -0,0 +1,11 @@
1
+ interface RequestOptions<T> extends RequestInit {
2
+ body?: RequestInit['body'] | any;
3
+ retryCount?: number;
4
+ timeout?: number;
5
+ cacheTimeout?: number;
6
+ pollingInterval?: number;
7
+ maxPollingAttempts?: number;
8
+ shouldStopPolling?: (response: T) => boolean;
9
+ }
10
+ export default function request<T>(url: string, options?: RequestOptions<T>): Promise<T>;
11
+ export {};