tornado-pool-relayer/src/modules/api/types/index.ts

13 lines
178 B
TypeScript

type Health = {
status: boolean;
error: string;
};
type Status = {
health: Health;
rewardAddress: string;
version: string;
serviceFee: number;
chainId: number;
};