-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.template.yaml
255 lines (248 loc) · 8.26 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
specVersion: 0.0.2
schema:
file: ./schema.graphql
features:
- fullTextSearch
- nonFatalErrors
- ipfsOnEthereumContracts
dataSources:
{{#exchangesLegacy}}
- kind: ethereum/contract
name: {{name}}
network: {{network}}
source:
address: "{{address}}"
abi: EndemicExchangeLegacy
startBlock: {{block}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFT
- Account
abis:
- name: EndemicExchangeLegacy
file: ./abis/EndemicExchangeLegacy.json
eventHandlers:
- event: AuctionCreated(indexed address,indexed uint256,indexed bytes32,uint256,uint256,uint256,address,uint256,bytes4)
handler: handleAuctionCreated
- event: AuctionSuccessful(indexed bytes32,indexed uint256,address,uint256,uint256)
handler: handleAuctionSuccessful
- event: AuctionCancelled(indexed bytes32)
handler: handleAuctionCancelled
file: ./src/handlers/aurora/exchange_legacy.ts
{{/exchangesLegacy}}
{{#offersLegacy}}
- kind: ethereum/contract
name: {{name}}
network: {{network}}
source:
address: "{{address}}"
abi: OfferLegacy
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFT
- Account
abis:
- name: OfferLegacy
file: ./abis/OfferLegacy.json
eventHandlers:
- event: OfferCreated(uint256,indexed address,indexed uint256,indexed address,uint256,uint256)
handler: handleOfferCreated
- event: OfferAccepted(uint256,indexed address,indexed uint256,address,indexed address,uint256,uint256)
handler: handleOfferAccepted
- event: OfferCancelled(uint256,indexed address,indexed uint256,indexed address)
handler: handleOfferCancelled
file: ./src/handlers/aurora/offer_legacy.ts
{{/offersLegacy}}
{{#exchanges}}
- kind: ethereum/contract
name: {{name}}
network: {{network}}
source:
address: "{{address}}"
abi: EndemicExchange
startBlock: {{block}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFT
- Account
abis:
- name: EndemicExchange
file: ./abis/EndemicExchange.json
- name: ERC20
file: ./abis/ERC20.json
eventHandlers:
- event: AuctionCreated(indexed address,indexed uint256,indexed bytes32,uint256,uint256,uint256,address,uint256,address,bytes4)
handler: handleAuctionCreated
- event: AuctionSuccessful(indexed bytes32,indexed uint256,address,uint256,uint256)
handler: handleAuctionSuccessful
- event: AuctionCancelled(indexed bytes32)
handler: handleAuctionCancelled
- event: OfferCreated(uint256,indexed address,indexed uint256,indexed address,uint256,uint256,address,bool)
handler: handleOfferCreated
- event: OfferAccepted(uint256,indexed address,indexed uint256,address,indexed address,uint256,uint256)
handler: handleOfferAccepted
- event: OfferCancelled(uint256,indexed address,indexed uint256,indexed address)
handler: handleOfferCancelled
- event: PrivateSaleSuccess(indexed address,indexed uint256,indexed address,address,uint256,uint256,address)
handler: handlePrivateSaleSuccess
- event: ReserveBidPlaced(indexed bytes32,indexed address,indexed uint256,uint256)
handler: handleReserveBidPlaced
file: ./src/handlers/exchange.ts
{{/exchanges}}
{{#erc721FactoriesLegacy}}
- kind: ethereum/contract
name: {{name}}
network: {{network}}
source:
address: "{{address}}"
abi: EndemicNFTFactoryLegacy
startBlock: {{block}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFTContract
- Account
abis:
- name: EndemicNFTFactoryLegacy
file: ./abis/EndemicNFTFactoryLegacy.json
eventHandlers:
- event: NFTContractCreated(indexed address,indexed address,string,string,string)
handler: handleCreated
file: ./src/handlers/aurora/erc721Factory_legacy.ts
{{/erc721FactoriesLegacy}}
{{#erc721Factories}}
- kind: ethereum/contract
name: {{name}}
network: {{network}}
source:
address: "{{address}}"
abi: EndemicCollectionFactory
startBlock: {{block}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFTContract
- Account
abis:
- name: EndemicCollectionFactory
file: ./abis/EndemicCollectionFactory.json
eventHandlers:
- event: NFTContractCreated(indexed address,indexed address,string,string,string,uint256)
handler: handleCreated
file: ./src/handlers/erc721Factory.ts
{{/erc721Factories}}
- kind: ethereum/contract
name: RoyaltiesProvider
network: {{network}}
source:
address: "{{royaltiesProviderAddress}}"
abi: RoyaltiesProvider
startBlock: {{startBlock}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFTContract
- NFT
abis:
- name: RoyaltiesProvider
file: ./abis/RoyaltiesProvider.json
eventHandlers:
- event: RoyaltiesSetForCollection(indexed address,address,uint256)
handler: handleRoyaltiesSetForCollection
- event: RoyaltiesSetForToken(indexed address,indexed uint256,address,uint256)
handler: handleRoyaltiesSetForToken
file: ./src/handlers/royalties.ts
{{#collections}}
- kind: ethereum/contract
name: {{name}}
network: {{network}}
source:
address: "{{address}}"
abi: Collection
startBlock: {{block}}
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFT
- Account
abis:
- name: Collection
file: ./abis/Collection.json
- name: EndemicExchange
file: ./abis/EndemicExchange.json
eventHandlers:
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer
- event: Mint(indexed uint256,indexed address)
handler: handleMint
file: ./src/handlers/erc721.ts
{{/collections}}
templates:
- kind: ethereum/contract
name: Collection
network: {{network}}
source:
abi: Collection
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFT
- Account
abis:
- name: ERC721Enumerable
file: ./abis/ERC721Enumerable.json
- name: Collection
file: ./abis/ERC721Enumerable.json
- name: EndemicExchange
file: ./abis/EndemicExchange.json
eventHandlers:
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer
- event: Mint(indexed uint256,address)
handler: handleMint
file: ./src/handlers/erc721.ts
- kind: ethereum/contract
name: EndemicERC1155
network: {{network}}
source:
abi: EndemicERC1155
mapping:
kind: ethereum/events
apiVersion: 0.0.5
language: wasm/assemblyscript
entities:
- NFT
- Account
abis:
- name: EndemicERC1155
file: ./abis/EndemicERC1155.json
- name: EndemicExchange
file: ./abis/EndemicExchange.json
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
- event: Create(indexed uint256,address,uint256)
handler: handleCreate
file: ./src/handlers/erc1155.ts