-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
157 lines (141 loc) · 3.75 KB
/
schema.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
"======================================================== FULLTEXT SEARCH ======================================================"
type _Schema_
@fulltext(
name: "tokenNameSearch",
language: en
algorithm: rank,
include: [
{
entity: "IdeaToken",
fields: [
{ name: "name" }
]
}
]
)
"============================================================ MARKET ==========================================================="
type IdeaMarket @entity {
"<market id>"
id: ID!
marketID: Int!
name: String!
baseCost: BigInt!
priceRise: BigInt!
hatchTokens: BigInt!
tradingFeeRate: BigInt!
platformFeeRate: BigInt!
platformOwner: Bytes!
platformFeeInvested: BigInt!
allInterestToPlatform: Boolean!
nameVerifier: Bytes!
daiInMarket: BigInt!
invested: BigInt!
numTokens: Int!
platformInterestRedeemed: BigInt!
platformFeeRedeemed: BigInt!
tokens: [IdeaToken!]! @derivedFrom(field: "market")
tokensOrderedByRank: [IdeaToken!]!
}
"============================================================ TOKEN ============================================================"
type IdeaTokenPricePoint @entity {
"<tx>-<logindex>"
id: ID!
token: IdeaToken!
counter: Int!
timestamp: BigInt!
oldPrice: BigDecimal!
price: BigDecimal!
}
type IdeaTokenVolumePoint @entity {
"<tx>-<logindex>"
id: ID!
token: IdeaToken!
timestamp: BigInt!
volume: BigDecimal!
}
type IdeaTokenBalance @entity {
"<account address>-<token address>"
id: ID!
holder: Bytes!
amount: BigInt!
token: IdeaToken!
market: IdeaMarket!
}
type IdeaTokenAllowance @entity {
"<owner address>-<spender address>-<token address>"
id: ID!
amount: BigInt!
token: IdeaToken!
}
type IdeaToken @entity {
"<token address>"
id: ID!
tokenID: Int!
market: IdeaMarket!
name: String!
supply: BigInt!
holders: Int!
marketCap: BigInt!
tokenOwner: Bytes!
daiInToken: BigInt!
invested: BigInt!
tokenInterestRedeemed: BigInt!
dayChange: BigDecimal!
dayVolume: BigDecimal!
listedAt: BigInt!
lockedAmount: BigInt!
lockedPercentage: BigDecimal!
lister: Bytes!
rank: Int!
balances: [IdeaTokenBalance!]! @derivedFrom(field: "token")
allowances: [IdeaTokenAllowance!]! @derivedFrom(field: "token")
latestPricePoint: IdeaTokenPricePoint!
dayPricePoints: [IdeaTokenPricePoint!]!
pricePoints: [IdeaTokenPricePoint!]! @derivedFrom(field: "token")
dayVolumePoints: [IdeaTokenVolumePoint!]!
}
"============================================================ FACTORY =========================================================="
type IdeaTokenFactory @entity {
"id: factory"
id: ID!
owner: Bytes!
}
"============================================================ EXCHANGE ========================================================="
type IdeaTokenExchange @entity {
"id: exchange"
id: ID!
owner: Bytes!
tradingFeeInvested: BigInt!
}
type LockedIdeaTokenAmount @entity {
"id: <tx hash>-<log index>"
id: ID!
token: IdeaToken!
owner: Bytes!
amount: BigInt!
lockedUntil: BigInt!
}
"============================================================ TRADES ============================================================"
type IdeaTokenTrade @entity {
"id: <tx hash>-<log index>"
id: ID!
token: IdeaToken!
owner: Bytes!
isBuy: Boolean!
timestamp: BigInt!
ideaTokenAmount: BigInt!
daiAmount: BigInt!
}
"========================================================== BLOCK HANDLER ======================================================="
type FutureDayValueChange @entity {
"id: <token id>-<ts>"
id: ID!
token: IdeaToken!
ts: BigInt!
}
type BlockHandlerValues @entity {
"id: blockhandler"
id: ID!
futureUnlockedAmounts: [LockedIdeaTokenAmount!]!
futureDayValueChanges: [FutureDayValueChange!]!
}