-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathschema.graphql
123 lines (109 loc) · 2.55 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
### Protocol Level ###
type Protocol @entity {
id: Bytes!
vaults: [Vault!] @derivedFrom(field: "protocol")
investCount: BigInt!
investedAmount: BigInt!
withdrawCount: BigInt!
withdrawnAmount: BigInt!
totalValueLocked: BigInt!
tradeFee: BigInt!
withdrawalFee: BigInt!
acceptedToken: Token!
" Total number of unique addresses that have interacted with the protocol "
cumulativeUniqueUsers: Int!
}
### Vault Level ###
type Vault @entity {
id: Bytes!
" Swap Vault or Leverage Vault"
type: String!
" link to the protocol entity "
protocol: Protocol!
AUM: BigDecimal!
tokenBalances: BigInt!
investCount: BigInt!
investedAmount: BigInt!
invests: [Invest!] @derivedFrom(field: "vault")
withdrawCount: BigInt!
withdrawnAmount: BigInt!
withdrawRequest: [Withdraw!] @derivedFrom(field: "vault")
createdAt: BigInt!
vaultDailySnapshots: [VaultDaily!] @derivedFrom(field: "vault")
latestDailySnapshot: String!
trades: [Trade!]! @derivedFrom(field: "vault")
" Is the vault paused "
isPaused: Boolean!
}
type VaultDaily @entity {
id: ID!
day: BigInt!
timestamp: BigInt!
vault: Vault!
AUM: BigDecimal!
}
### Account Level ###
type Account @entity {
id: Bytes!
invests: [Invest!] @derivedFrom(field: "account")
investedAmount: BigInt!
investCount: BigInt!
withdrawRequests: [Withdraw!] @derivedFrom(field: "account")
withdrawnAmount: BigInt!
withdrawCount: BigInt!
}
"Describes an accounts relationship with a vault"
type Position @entity {
id: ID!
account: Account
vault: Vault
"not sure if this will be a BigDecimal or an array of BigInt's depends on how users interact with a vault"
totalInvestedAmount: BigDecimal!
totalWithdrawAmount: BigDecimal!
currentValue: BigDecimal!
}
### Tokens used in Protocol ###
type Token @entity {
id: Bytes!
name: String!
symbol: String!
decimals: Int!
}
### Events ###
type Invest @entity(immutable: true) {
id: ID!
hash: Bytes!
eventLog: BigInt!
account: Account!
amount: BigInt!
token: Token!
vault: Vault!
}
" Reqest to withdraw "
type Withdraw @entity(immutable: true) {
id: ID!
hash: Bytes
eventLog: BigInt
account: Account
amount: BigInt
token: Token
vault: Vault
}
" The settlement of a withdrawal request "
type WithdrawTrade @entity(immutable: true) {
id: ID!
hash: Bytes
eventLog: BigInt
account: Account
amount: BigInt
token: Token
}
#I'm asuming the vault will emit some type of trade event
type Trade @entity(immutable: true) {
id: ID!
hash: Bytes
eventLog: BigInt
vault: Vault
amount: BigInt
token: Token
}