Options for requesting funds from an EVM faucet.

interface RequestFaucetOptions {
    address: string;
    idempotencyKey?: string;
    network: "base-sepolia" | "ethereum-sepolia";
    token: "eth" | "usdc" | "eurc" | "cbbtc";
}

Properties

address: string

The address of the account.

idempotencyKey?: string

The idempotency key.

network: "base-sepolia" | "ethereum-sepolia"

The network to request funds from.

token: "eth" | "usdc" | "eurc" | "cbbtc"

The token to request funds for.