Options for funding an EVM account.

interface FundOptions {
    address: string;
    amount: bigint;
    network: "base";
    token: "eth" | "usdc";
}

Properties

address: string

The address of the account.

amount: bigint

The amount to fund the account with, in atomic units (wei) of the token.

network: "base"

The network to request funds from.

token: "eth" | "usdc"

The token to request funds for.