-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.yaml.mustache
235 lines (235 loc) · 6.44 KB
/
subgraph.yaml.mustache
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
specVersion: 0.0.4
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum
name: NounsTokenV1
network: {{network}}
source:
address: '{{nounsTokenV1.address}}'
abi: NounsToken
startBlock: {{nounsTokenV1.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- Transfer
abis:
- name: NounsToken
file: ./abis/{{nounsTokenV1.abiFile}}
eventHandlers:
{{#nounsTokenV1.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounsTokenV1.events}}
file: ./src/nouns-token.ts
- kind: ethereum
name: NounsToken
network: {{network}}
source:
address: '{{nounsToken.address}}'
abi: NounsToken
startBlock: {{nounsToken.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- Transfer
abis:
- name: NounsToken
file: ./abis/{{nounsToken.abiFile}}
eventHandlers:
{{#nounsToken.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounsToken.events}}
file: ./src/nouns-token.ts
- kind: ethereum
name: NounletAuctionV1
network: {{network}}
source:
address: '{{nounletAuctionV1.address}}'
abi: NounletAuction
startBlock: {{nounletAuctionV1.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- ActiveModules
- AuctionBid
- AuctionCreated
- AuctionExtended
- AuctionSettled
abis:
- name: NounletAuction
file: ./abis/{{nounletAuctionV1.abiFile}}
- name: NounletToken
file: ./abis/{{nounletTokenV1.abiFile}}
eventHandlers:
{{#nounletAuctionV1.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletAuctionV1.events}}
file: ./src/nounlet-auction.ts
- kind: ethereum
name: NounletAuction
network: {{network}}
source:
address: '{{nounletAuction.address}}'
abi: NounletAuction
startBlock: {{nounletAuction.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- ActiveModules
- AuctionBid
- AuctionCreated
- AuctionExtended
- AuctionSettled
abis:
- name: NounletAuction
file: ./abis/{{nounletAuction.abiFile}}
- name: NounletToken
file: ./abis/{{nounletToken.abiFile}}
eventHandlers:
{{#nounletAuction.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletAuction.events}}
file: ./src/nounlet-auction.ts
- kind: ethereum
name: NounletRegistryV1
network: {{network}}
source:
address: '{{nounletRegistryV1.address}}'
abi: NounletRegistry
startBlock: {{nounletRegistryV1.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- VaultDeployed
abis:
- name: NounletRegistry
file: ./abis/{{nounletRegistryV1.abiFile}}
eventHandlers:
{{#nounletRegistryV1.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletRegistryV1.events}}
file: ./src/nounlet-registry.ts
- kind: ethereum
name: NounletRegistry
network: {{network}}
source:
address: '{{nounletRegistry.address}}'
abi: NounletRegistry
startBlock: {{nounletRegistry.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- VaultDeployed
abis:
- name: NounletRegistry
file: ./abis/{{nounletRegistry.abiFile}}
eventHandlers:
{{#nounletRegistry.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletRegistry.events}}
file: ./src/nounlet-registry.ts
- kind: ethereum
name: NounletGovernanceV1
network: {{network}}
source:
address: '{{nounletGovernanceV1.address}}'
abi: NounletGovernance
startBlock: {{nounletGovernanceV1.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- ClaimDelegate
abis:
- name: NounletGovernance
file: ./abis/{{nounletGovernanceV1.abiFile}}
eventHandlers:
{{#nounletGovernanceV1.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletGovernanceV1.events}}
file: ./src/nounlet-governance.ts
- kind: ethereum
name: NounletGovernance
network: {{network}}
source:
address: '{{nounletGovernance.address}}'
abi: NounletGovernance
startBlock: {{nounletGovernance.startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- ClaimDelegate
abis:
- name: NounletGovernance
file: ./abis/{{nounletGovernance.abiFile}}
eventHandlers:
{{#nounletGovernance.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletGovernance.events}}
file: ./src/nounlet-governance.ts
templates:
- name: NounletTokenV1
kind: ethereum
network: {{network}}
source:
abi: NounletToken
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- DelegateChanged
- DelegateVotesChanged
abis:
- name: NounletToken
file: ./abis/{{nounletTokenV1.abiFile}}
eventHandlers:
{{#nounletTokenV1.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletTokenV1.events}}
file: ./src/nounlet-token.ts
- name: NounletToken
kind: ethereum
network: {{network}}
source:
abi: NounletToken
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- DelegateChanged
- DelegateVotesChanged
abis:
- name: NounletToken
file: ./abis/{{nounletToken.abiFile}}
eventHandlers:
{{#nounletToken.events}}
- event: {{signature}}
handler: {{handler}}
{{/nounletToken.events}}
file: ./src/nounlet-token.ts