client-aftermath-ts-sdk
Version:
Client Aftermath TypeScript SDK
13 lines • 479 B
TypeScript
import { BigIntAsString, SuiAddress } from "../../../general/types/generalTypes";
import { EventOnChain } from "../../../general/types/castingTypes";
import { CoinType } from "../../coin/coinTypes";
export type FaucetMintCoinEventOnChain = EventOnChain<{
amount: BigIntAsString;
type: CoinType;
user: SuiAddress;
}>;
export type FaucetAddCoinEventOnChain = EventOnChain<{
symbol: string;
type: CoinType;
}>;
//# sourceMappingURL=faucetApiCastingTypes.d.ts.map