2022-10-19 04:19:51 -04:00
|
|
|
import { ethers } from "ethers";
|
2019-08-25 02:39:20 -04:00
|
|
|
declare function randomBytes(seed: string, lower: number, upper?: number): Uint8Array;
|
|
|
|
declare function randomHexString(seed: string, lower: number, upper?: number): string;
|
|
|
|
declare function randomNumber(seed: string, lower: number, upper: number): number;
|
|
|
|
declare function equals(a: any, b: any): boolean;
|
2022-10-19 04:19:51 -04:00
|
|
|
export declare function fundAddress(address: string): Promise<string>;
|
|
|
|
export declare function returnFunds(wallet: ethers.Wallet): Promise<string>;
|
|
|
|
export declare function sendTransaction(txObj: ethers.providers.TransactionRequest): Promise<string>;
|
2019-08-25 02:39:20 -04:00
|
|
|
export { randomBytes, randomHexString, randomNumber, equals };
|
2021-01-19 05:22:54 -05:00
|
|
|
//# sourceMappingURL=utils.d.ts.map
|