OP-3735 - removed unused claim info

This commit is contained in:
Demid
2023-04-07 03:29:44 +03:00
parent d8f9fea546
commit 9e86745cb3

View File

@@ -1,14 +0,0 @@
import { z } from 'zod';
const claimInfoSchema = z.object({
global: z.object({
total_non_accrued: z.number(),
}),
current_chain: z.object({
total_accrued: z.number(),
total_non_accrued: z.number(),
total_earned: z.number()
}),
});
export default claimInfoSchema;