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

13 lines
178 B
TypeScript
Raw Normal View History

2021-07-13 19:06:36 +02:00
type Health = {
status: boolean;
error: string;
};
type Status = {
health: Health;
rewardAddress: string;
version: string;
serviceFee: number;
chainId: number;
2021-07-13 19:06:36 +02:00
};