-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.graphql
128 lines (111 loc) · 2.07 KB
/
store.graphql
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
type Balance @entity {
id: ID!
user: String!
market: String!
liquidBaseAmount: BigInt!
liquidQuoteAmount: BigInt!
lockedBaseAmount: BigInt!
lockedQuoteAmount: BigInt!
baseAmount: BigInt!
quoteAmount: BigInt!
tvl: Float!
sellClosed: Int!
buyClosed: Int!
pnl1: Float!
pnlInPersent1: Float!
pnl7: Float!
pnlInPersent7: Float!
pnl31: Float!
pnlInPersent31: Float!
pnlComp1: Float!
pnlInPersentComp1: Float!
timestamp: Int!
initialTimestamp: Int!
pnlChangedTimestamp: Int!
}
# type TotalVolume @entity {
# id: ID!
# timestamp: Int!
# volume: Float!
# }
# type TotalMarketVolume @entity {
# id: ID!
# market: String!
# timestamp: Int!
# volume: Float!
# }
type TradeEvent @entity {
id: ID!
market: String!
timestamp: Int!
volume: Float!
seller: String!
buyer: String!
price: Float!
amount: Float!
date: String!
}
# type DailyVolume @entity {
# id: ID!
# timestamp: Int!
# volume: Float!
# }
# type DailyMarketVolume @entity {
# id: ID!
# market: String!
# timestamp: Int!
# volume: Float!
# }
type UserScoreSnapshot @entity {
id: ID!
timestamp: Int!
block_date: String!
chain_id: Int!
block_number: Int!
user_address: String!
pool_address: String!
total_value_locked_score: Float!
market_depth_score: Int
marketPrice: Float!
midpointPrice: Float!
lowerLimit: Float!
upperLimit: Float!
percentile: Float!
}
type Pools @entity {
id: ID!
chain_id: Int!
creation_block_number: Int!
timestamp: Int!
pool_address: String!
lp_token_address: String!
lp_token_symbol: String!
token_address: String!
token_symbol: String!
token_decimals: String!
token_index: Int!
fee_rate: Float!
dex_type: String!
}
enum OrderStatus {
Active
Closed
Canceled
}
enum OrderType {
Sell
Buy
}
type Order @entity {
id: ID!
amount: BigInt!
market: String! @index
orderType: OrderType! @index
price: BigInt! @index
user: String! @index
status: OrderStatus! @index
initialAmount: BigInt!
timestamp: Int!
initialTimestamp: Int!
# asset: String! @index
}