You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fundWallet.d.ts 340B

123456789101112
  1. import type { Client } from '../client';
  2. import Wallet from '.';
  3. declare function fundWallet(this: Client, wallet?: Wallet | null, options?: {
  4. faucetHost?: string;
  5. faucetPath?: string;
  6. amount?: string;
  7. }): Promise<{
  8. wallet: Wallet;
  9. balance: number;
  10. }>;
  11. export default fundWallet;
  12. //# sourceMappingURL=fundWallet.d.ts.map