FaucetResponse
Type Alias: FaucetResponse
type FaucetResponse = {
error: string;
hash: string;
success: boolean;
};
Defined in: packages/api/src/client/types.gen.ts:88
Type declaration
error?
optional error: string;
Error message if the request failed.
hash?
optional hash: string;
The transaction hash of the faucet transfer if successful.
success?
optional success: boolean;
Indicates whether the faucet request was successful.
Updated 10 days ago