UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

19 lines 684 B
import type { Client } from '../client'; export interface FaucetWallet { account: { xAddress: string; classicAddress?: string; secret: string; }; amount: number; balance: number; } export declare enum FaucetNetwork { Testnet = "faucet.altnet.rippletest.net", Devnet = "faucet.devnet.rippletest.net" } export declare const faucetNetworkPaths: Record<string, string>; export declare const faucetNetworkIDs: Map<number, FaucetNetwork>; export declare function getFaucetHost(client: Client): FaucetNetwork | undefined; export declare function getFaucetPath(hostname: string | undefined): string; //# sourceMappingURL=defaultFaucets.d.ts.map