-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
80 lines (72 loc) · 2.04 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
type Vault @entity {
id: Bytes!
balance: BigInt!
delegateBalance: BigInt!
balanceUpdates: [VaultBalanceUpdate!]! @derivedFrom(field: "vault")
observations: [VaultObservation!]! @derivedFrom(field: "vault")
accounts: [Account!]! @derivedFrom(field: "vault")
}
type User @entity {
id: Bytes! # user's address
accounts: [Account!]! @derivedFrom(field: "user")
}
type Account @entity {
id: String! # vault address + user address
vault: Vault!
user: User!
balance: BigInt! # balance in account
delegateBalance: BigInt! # amount of balance delegated to this account
balanceUpdates: [AccountBalanceUpdate!]! @derivedFrom(field: "account")
observations: [AccountObservation!]! @derivedFrom(field: "account")
delegators: [Account!]! @derivedFrom(field: "delegate") # accounts who delegated to this account
delegate: Account # account to whom this account delegates their balances
}
type AccountBalanceUpdate implements BalanceUpdate @entity {
id: ID!
amount: BigInt!
delegateAmount: BigInt!
balance: BigInt!
delegateBalance: BigInt!
timestamp: BigInt!
account: Account!
}
type VaultBalanceUpdate implements BalanceUpdate @entity {
id: ID!
amount: BigInt!
delegateAmount: BigInt!
balance: BigInt!
delegateBalance: BigInt!
timestamp: BigInt!
vault: Vault!
}
type AccountObservation implements Observation @entity {
id: ID!
account: Account!
balance: BigInt!
delegateBalance: BigInt!
cumulativeBalance: BigInt!
timestamp: BigInt!
isNew: Boolean!
}
type VaultObservation implements Observation @entity {
id: ID!
vault: Vault!
balance: BigInt!
delegateBalance: BigInt!
cumulativeBalance: BigInt!
timestamp: BigInt!
isNew: Boolean!
}
interface BalanceUpdate {
amount: BigInt!
delegateAmount: BigInt!
balance: BigInt!
delegateBalance: BigInt!
timestamp: BigInt!
}
interface Observation {
balance: BigInt!
delegateBalance: BigInt!
cumulativeBalance: BigInt!
timestamp: BigInt!
}