IFaucet

Git Source

Functions

sendTo

sendTo the recipients given, with the amount being randomly chosen.

will break if there's not enough to send... by design.

will break if it tries to send to a contract. The callee should verify that they're not being asked to send to contracts.

function sendTo(FaucetReq[] calldata _requests) external;

Structs

FaucetReq

struct FaucetReq {
    address recipient;
    bool isStaker;
}