-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.template.yaml
279 lines (272 loc) · 9.88 KB
/
subgraph.template.yaml
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
specVersion: 0.0.2
description: Notional Subgraph
repository: https://github.com/notional-finance/notional
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: Portfolios
network: {{ networkName }}
source:
address: "{{ portfolios }}"
abi: Portfolios
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- CashGroup
- SystemConfiguration
# Used for settling accounts
- Account
- Asset
- CurrencyBalance
abis:
- name: Portfolios
file: ../contracts/build/Portfolios.json
- name: CashMarket
file: ../contracts/build/CashMarket.json
- name: Escrow
file: ./Escrow-HACK-GRAPH_NODE-1790.json
- name: ERC1155Token
file: ../contracts/build/ERC1155Token.json
eventHandlers:
# Create / Update Cash Group
- event: NewCashGroup(indexed uint8)
handler: handleNewCashGroup
- event: UpdateCashGroup(indexed uint8)
handler: handleUpdateCashGroup
- event: SetMaxAssets(uint256)
handler: updateMaxAssets
- event: SetHaircuts(uint128,uint128,uint128)
handler: updateHaircuts
# Settle Account
- event: SettleAccount(address)
handler: handleSettleAccount
- event: SettleAccountBatch(address[])
handler: handleSettleAccountBatch
file: ./src/portfolios.ts
- kind: ethereum/contract
name: Escrow
network: {{ networkName }}
source:
address: "{{ escrow }}"
abi: Escrow
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- Currency
- ExchangeRate
- SystemConfiguration
- Account
- CurrencyBalance
abis:
- name: Escrow
file: ./Escrow-HACK-GRAPH_NODE-1790.json
- name: ERC20
file: ../contracts/build/IERC20.json
- name: Portfolios
file: ../contracts/build/Portfolios.json
- name: CashMarket
file: ../contracts/build/CashMarket.json
- name: ERC1155Token
file: ../contracts/build/ERC1155Token.json
- name: IAggregator
file: ../contracts/build/IAggregator.json
eventHandlers:
# Create Currency
- event: NewCurrency(indexed address)
handler: handleNewCurrency
# Create / Update Exchange Rate
- event: UpdateExchangeRate(indexed uint16,indexed uint16)
handler: handleUpdateExchangeRate
# Deposit / Withdraw
- event: Deposit(indexed uint16,address,uint256)
handler: handleDeposit
- event: Withdraw(indexed uint16,address,uint256)
handler: handleWithdraw
# Update System Parameters
- event: SetDiscounts(uint128,uint128,uint128)
handler: updateDiscounts
- event: SetReserve(address)
handler: updateReserveAccount
file: ./src/escrow.ts
- kind: ethereum/contract
name: EscrowSettleLiquidate
network: {{ networkName }}
source:
address: "{{ escrow }}"
abi: Escrow
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- Account
- Asset
- CurrencyBalance
- Liquidation
- Settlement
- Trade
abis:
- name: Escrow
file: ./Escrow-HACK-GRAPH_NODE-1790.json
- name: Portfolios
file: ../contracts/build/Portfolios.json
- name: CashMarket
file: ../contracts/build/CashMarket.json
- name: ERC1155Token
file: ../contracts/build/ERC1155Token.json
eventHandlers:
- event: Liquidate(indexed uint16,uint16,address,uint128)
handler: handleLiquidate
- event: LiquidateBatch(indexed uint16,uint16,address[],uint128[])
handler: handleLiquidateBatch
- event: SettleCash(uint16,uint16,indexed address,uint128)
handler: handleSettleCash
- event: SettleCashBatch(uint16,uint16,address[],uint128[])
handler: handleSettleCashBatch
file: ./src/escrowSettleLiquidate.ts
- kind: ethereum/contract
name: CashMarket
network: {{ networkName }}
source:
# We don't specify a source address here because there may be multiple cash markets.
abi: CashMarket
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- Account
- CurrencyBalance
- Asset
- Trade
- CashMarket
- CashGroup
abis:
- name: Escrow
file: ./Escrow-HACK-GRAPH_NODE-1790.json
- name: Portfolios
file: ../contracts/build/Portfolios.json
- name: CashMarket
file: ../contracts/build/CashMarket.json
- name: ERC1155Token
file: ../contracts/build/ERC1155Token.json
eventHandlers:
# Add / Remove Liquidity
- event: AddLiquidity(indexed address,uint32,uint128,uint128,uint128)
handler: handleAddLiquidity
- event: RemoveLiquidity(indexed address,uint32,uint128,uint128,uint128)
handler: handleRemoveLiquidity
# Trade
- event: TakeCurrentCash(indexed address,uint32,uint128,uint128,uint128)
handler: handleTakeCurrentCash
- event: TakefCash(indexed address,uint32,uint128,uint128,uint128)
handler: handleTakefCash
# Update Market Parameters
- event: UpdateRateFactors(uint32,uint16)
handler: handleRateFactors
- event: UpdateMaxTradeSize(uint128)
handler: handleMaxTradeSize
- event: UpdateFees(uint32,uint128)
handler: handleFees
file: ./src/cashMarket.ts
- kind: ethereum/contract
name: ERC1155Token
network: {{ networkName }}
source:
address: "{{ erc1155 }}"
abi: ERC1155Token
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- Asset
- Account
eventHandlers:
- event: TransferSingle(indexed address,indexed address,indexed address,uint256,uint256)
handler: handleTransferSingle
- event: TransferBatch(indexed address,indexed address,indexed address,uint256[],uint256[])
handler: handleTransferBatch
abis:
- name: ERC1155Token
file: ../contracts/build/ERC1155Token.json
- name: Escrow
file: ./Escrow-HACK-GRAPH_NODE-1790.json
- name: Portfolios
file: ../contracts/build/Portfolios.json
file: ./src/erc1155.ts
- kind: ethereum/contract
name: ERC1155Trade
network: {{ networkName }}
source:
address: "{{ erc1155 }}"
abi: ERC1155Trade
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- Asset
- Account
eventHandlers:
- event: TransferSingle(indexed address,indexed address,indexed address,uint256,uint256)
handler: handleTransferSingle
abis:
- name: ERC1155Trade
file: ../contracts/build/ERC1155Trade.json
- name: Escrow
file: ./Escrow-HACK-GRAPH_NODE-1790.json
- name: Portfolios
file: ../contracts/build/Portfolios.json
file: ./src/erc1155trade.ts
- kind: ethereum/contract
name: Directory
network: {{ networkName }}
source:
address: "{{ directory }}"
abi: Directory
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- Directory
eventHandlers:
- event: SetContract(uint8,address)
handler: updateDirectoryAddress
abis:
- name: Directory
file: ../contracts/build/Directory.json
file: ./src/directory.ts
- kind: ethereum/contract
name: PriceOracle
network: {{ networkName }}
source:
abi: IAggregator
startBlock: {{ startBlock }}
mapping:
kind: ethereum/events
apiVersion: 0.0.1
language: wasm/assemblyscript
entities:
- RateValue
- ExchangeRate
eventHandlers:
- event: AnswerUpdated(indexed int256,indexed uint256,uint256)
handler: handleAnswerUpdated
abis:
- name: IAggregator
file: ../contracts/build/IAggregator.json
file: ./src/exchangeRate.ts