forked from decentraland/marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.subgraph.yaml
234 lines (226 loc) · 7.71 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
specVersion: 0.0.2
description: Decentraland's Marketplace subgraph
repository: https://github.com/decentraland/decentraland
schema:
file: ./schema.graphql
dataSources:
# ---------------------------------------------------------
# PARCELS -------------------------------------------------
# ---------------------------------------------------------
- kind: ethereum/contract
name: LANDRegistry
network: {{network}}
source:
address: '{{address:LANDRegistry}}'
abi: LANDRegistry
startBlock: {{startBlock:LANDRegistry}}
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/parcel.ts
entities:
- ERC721
- Parcel
- Data
abis:
- name: LANDRegistry
file: ./abis/LANDRegistry.json
callHandlers:
- function: initialize(bytes)
handler: handleInitialize
eventHandlers:
- event: Update(indexed uint256,indexed address,indexed address,string)
handler: handleUpdate
# ---------------------------------------------------------
# ESTATES -------------------------------------------------
# ---------------------------------------------------------
- kind: ethereum/contract
name: EstateRegistry
network: {{network}}
source:
address: '{{address:EstateRegistry}}'
abi: EstateRegistry
startBlock: {{startBlock:EstateRegistry}}
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/estate.ts
entities:
- Estate
- Parcel
- Data
abis:
- name: EstateRegistry
file: ./abis/EstateRegistry.json
- name: LANDRegistry
file: ./abis/LANDRegistry.json
eventHandlers:
- event: CreateEstate(indexed address,indexed uint256,string)
handler: handleCreateEstate
- event: AddLand(indexed uint256,indexed uint256)
handler: handleAddLand
- event: RemoveLand(indexed uint256,indexed uint256,indexed address)
handler: handleRemoveLand
- event: Update(indexed uint256,indexed address,indexed address,string)
handler: handleUpdate
# ---------------------------------------------------------
# MANA ----------------------------------------------------
# ---------------------------------------------------------
# - kind: ethereum/contract
# name: MANAToken
# network: {{network}}
# source:
# address: '{{address:MANAToken}}'
# abi: MANAToken
# startBlock: {{startBlock:MANAToken}}
# mapping:
# kind: ethereum/events
# apiVersion: 0.0.4
# language: wasm/assemblyscript
# file: ./src/handlers/manaToken.ts
# entities:
# - Wallet
# abis:
# - name: MANAToken
# file: ./abis/MANAToken.json
# eventHandlers:
# - event: Mint(indexed address,uint256)
# handler: handleMint
# - event: Burn(indexed address,uint256)
# handler: handleBurn
# - event: Transfer(indexed address,indexed address,uint256)
# handler: handleTransfer
# ---------------------------------------------------------
# ORDERS --------------------------------------------------
# ---------------------------------------------------------
- kind: ethereum/contract
name: Marketplace
network: {{network}}
source:
address: '{{address:Marketplace}}'
abi: Marketplace
startBlock: {{startBlock:Marketplace}}
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/marketplace.ts
entities:
- Order
- NFT
abis:
- name: Marketplace
file: ./abis/Marketplace.json
eventHandlers:
- event: OrderCreated(bytes32,indexed uint256,indexed address,address,uint256,uint256)
handler: handleOrderCreated
- event: OrderSuccessful(bytes32,indexed uint256,indexed address,address,uint256,indexed address)
handler: handleOrderSuccessful
- event: OrderCancelled(bytes32,indexed uint256,indexed address,address)
handler: handleOrderCancelled
# ---------------------------------------------------------
# ENS -------------------------------------------------
# ---------------------------------------------------------
- kind: ethereum/contract
name: DCLRegistrar
network: {{network}}
source:
address: '{{address:DCLRegistrar}}'
abi: DCLRegistrar
startBlock: {{startBlock:DCLRegistrar}}
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/ens.ts
entities:
- DCLRegistrar
abis:
- name: DCLRegistrar
file: ./abis/DCLRegistrar.json
eventHandlers:
- event: NameRegistered(indexed address,indexed address,indexed bytes32,string,uint256)
handler: handleNameRegistered
- kind: ethereum/contract
name: DCLControllerV2
network: {{network}}
source:
address: '{{address:DCLControllerV2}}'
abi: DCLControllerV2
startBlock: {{startBlock:DCLControllerV2}}
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/ens.ts
entities:
- DCLControllerV2
abis:
- name: DCLControllerV2
file: ./abis/DCLControllerV2.json
eventHandlers:
- event: NameBought(indexed address,indexed address,uint256,string)
handler: handleNameBought
# ---------------------------------------------------------
# BIDS ----------------------------------------------------
# ---------------------------------------------------------
- kind: ethereum/contract
name: ERC721Bid
network: {{network}}
source:
address: '{{address:ERC721Bid}}'
abi: ERC721Bid
startBlock: {{startBlock:ERC721Bid}}
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/bid.ts
entities:
- Bid
abis:
- name: ERC721Bid
file: ./abis/ERC721Bid.json
eventHandlers:
- event: BidCreated(bytes32,indexed address,indexed uint256,indexed address,uint256,uint256,bytes)
handler: handleBidCreated
- event: BidAccepted(bytes32,indexed address,indexed uint256,address,indexed address,uint256,uint256)
handler: handleBidAccepted
- event: BidCancelled(bytes32,indexed address,indexed uint256,indexed address)
handler: handleBidCancelled
# ---------------------------------------------------------
# TEMPLATES -----------------------------------------------
# ---------------------------------------------------------
templates:
- name: ERC721
kind: ethereum/contract
network: {{network}}
source:
abi: ERC721
mapping:
kind: ethereum/events
apiVersion: 0.0.4
language: wasm/assemblyscript
file: ./src/handlers/nft.ts
entities:
- NFT
- Parcel
- Estate
- Wearable
- ENS
abis:
- name: ERC721
file: ./abis/ERC721.json
- name: LANDRegistry
file: ./abis/LANDRegistry.json
eventHandlers:
- event: Transfer(indexed address,indexed address,indexed uint256,address,bytes,bytes)
handler: handleTransfer
- event: Transfer(indexed address,indexed address,indexed uint256,address,bytes)
handler: handleTransfer
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer
- event: Transfer(indexed address,indexed address,uint256)
handler: handleTransfer