-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsubgraph.yaml
237 lines (229 loc) · 6.85 KB
/
subgraph.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
specVersion: 0.0.4
#features:
# - nonFatalErrors
# - grafting
#graft:
# base: QmPHFY3tLBXG1hs4HS4g7bZWfULC12rDB5peDGFwsatQmG # Subgraph ID of base subgraph
# block: 39423000 # Block number
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: Factory
network: matic
source:
address: "0x1d21Db6cde1b18c7E47B0F7F42f4b3F68b9beeC9"
abi: FactoryAbi
startBlock: 27986210
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/factory.ts
entities:
- Pair
- Token
abis:
- name: FactoryAbi
file: ./abis/factory.json
- name: ERC20SymbolBytes
file: ./abis/ERC20SymbolBytes.json
- name: ERC20NameBytes
file: ./abis/ERC20NameBytes.json
- name: PairAbi
file: ./abis/pair.json
eventHandlers:
- event: PairCreated(indexed address,indexed address,bool,address,uint256)
handler: handleNewPair
- kind: ethereum/contract
name: Controller
network: matic
source:
address: "0x7377eA6Afb77Ba013B23306154691c231824522a"
abi: ControllerAbi
startBlock: 27986210
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/controller.ts
entities:
- VoterEntity
- VeDistEntity
abis:
- name: ControllerAbi
file: ./abis/controller.json
- name: VeDistAbi
file: ./abis/veDist.json
- name: VeAbi
file: ./abis/ve.json
- name: MintableAbi
file: ./abis/mintable.json
eventHandlers:
- event: SetVeDist(address)
handler: handleSetVeDist
- event: SetVoter(address)
handler: handleSetVoter
########## TEMPLATES ############################################
templates:
- kind: ethereum/contract
name: PairTemplate
network: matic
source:
abi: PairAbi
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/core.ts
entities:
- Pair
- Token
abis:
- name: PairAbi
file: ./abis/pair.json
eventHandlers:
- event: Mint(indexed address,uint256,uint256)
handler: handleMint
- event: Burn(indexed address,uint256,uint256,indexed address)
handler: handleBurn
- event: Swap(indexed address,uint256,uint256,uint256,uint256,indexed address)
handler: handleSwap
- event: Transfer(indexed address,indexed address,uint256)
handler: handleTransfer
- event: Sync(uint256,uint256)
handler: handleSync
- kind: ethereum/contract
name: GaugeTemplate
network: matic
source:
abi: GaugeAbi
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/gauge.ts
entities:
- GaugeEntity
abis:
- name: GaugeAbi
file: ./abis/gauge.json
- name: PairAbi
file: ./abis/pair.json
eventHandlers:
- event: NotifyReward(indexed address,indexed address,uint256)
handler: handleNotify
- event: Deposit(indexed address,uint256)
handler: handleDeposit
- event: Withdraw(indexed address,uint256)
handler: handleWithdraw
- event: ClaimRewards(indexed address,indexed address,uint256,address)
handler: handleClaimRewards
- kind: ethereum/contract
name: BribeTemplate
network: matic
source:
abi: BribeAbi
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/bribe.ts
entities:
- BribeEntity
abis:
- name: BribeAbi
file: ./abis/bribe.json
- name: PairAbi
file: ./abis/pair.json
eventHandlers:
- event: NotifyReward(indexed address,indexed address,uint256)
handler: handleNotify
- event: Deposit(indexed address,uint256)
handler: handleDeposit
- event: Withdraw(indexed address,uint256)
handler: handleWithdraw
- event: ClaimRewards(indexed address,indexed address,uint256,address)
handler: handleClaimRewards
- kind: ethereum/contract
name: VeTemplate
network: matic
source:
abi: VeAbi
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/ve.ts
entities:
- VeEntity
abis:
- name: VeAbi
file: ./abis/ve.json
- name: PairAbi
file: ./abis/pair.json
eventHandlers:
- event: Deposit(indexed address,uint256,uint256,indexed uint256,uint8,uint256)
handler: handleDeposit
- event: Withdraw(indexed address,uint256,uint256,uint256)
handler: handleWithdraw
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer
- kind: ethereum/contract
name: VoterTemplate
network: matic
source:
abi: VoterAbi
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/voter.ts
entities:
- VoterEntity
abis:
- name: VoterAbi
file: ./abis/voter.json
- name: VeAbi
file: ./abis/ve.json
- name: GaugeAbi
file: ./abis/gauge.json
- name: MinterAbi
file: ./abis/minter.json
eventHandlers:
- event: GaugeCreated(indexed address,address,indexed address,indexed address)
handler: handleGaugeCreated
- event: Whitelisted(indexed address,indexed address)
handler: handleWhitelisted
- event: Deposit(indexed address,indexed address,uint256,uint256)
handler: handleDeposit
- event: Withdraw(indexed address,indexed address,uint256,uint256)
handler: handleWithdraw
- event: Attach(indexed address,indexed address,uint256)
handler: handleAttach
- event: Detach(indexed address,indexed address,uint256)
handler: handleDetach
- event: Voted(indexed address,uint256,int256)
handler: handleVoted
- event: Abstained(uint256,int256)
handler: handleAbstained
- kind: ethereum/contract
name: VeDistTemplate
network: matic
source:
abi: VeDistAbi
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/ve-dist.ts
entities:
- VeDistEntity
abis:
- name: VeDistAbi
file: ./abis/veDist.json
- name: VeAbi
file: ./abis/ve.json
eventHandlers:
- event: CheckpointToken(uint256,uint256)
handler: handleCheckpointToken