-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
38 lines (30 loc) · 1.24 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Importing WeaverFi SDK Types:
import type { Address } from 'weaverfi';
/* ========================================================================================================================================================================= */
// Error Types:
export type ErrorResponseType = 'routeError' | 'missingAddress' | 'missingProject' | 'invalidAddress' | 'invalidProject' | 'missingAuth' | 'invalidAuth' | 'teapot' | 'rateLimited' | 'rateLimitedRampingUp' | 'internalError';
/* ========================================================================================================================================================================= */
// Database Interfaces:
export interface AggregatedTokenPriceData {
symbol: string | null
address: Address
prices: {
price: number
timestamp: number
}[]
}
/* ========================================================================================================================================================================= */
// Database Key Doc Interface:
export interface KeyDoc {
lastTimestamp: any
queries: number
usage: {
queries: number
timestamp: any
}[]
}
// Database IP Doc Interface:
export interface IpDoc {
lastTimestamp: any
queries: number
}