aftermath-ts-sdk
Version:
Aftermath TypeScript SDK
21 lines • 643 B
TypeScript
import { AnyObjectType, Balance, Event, SuiAddress } from "../../general/types/generalTypes";
import { CoinType } from "../coin/coinTypes";
export interface FaucetMintCoinEvent extends Event {
minter: SuiAddress;
coinMinted: CoinType;
balanceMinted: BigInt;
}
export interface FaucetAddCoinEvent extends Event {
coinSymbol: string;
coinType: CoinType;
}
export interface ApiFaucetRequestBody {
coinType: CoinType;
walletAddress: SuiAddress;
}
export interface ApiFaucetMintSuiFrenBody {
mintFee: Balance;
suiFrenType: AnyObjectType;
walletAddress: SuiAddress;
}
//# sourceMappingURL=faucetTypes.d.ts.map