-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubgraph.yaml
46 lines (46 loc) · 1.58 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
specVersion: 1.0.0
description: Going Blast Subgraph
repository: https://github.com/going-blast/going-blast-contracts
schema:
file: ./schema.graphql
indexerHints:
prune: auto
dataSources:
- kind: ethereum/contract
name: Auctioneer
network: blast-mainnet
source:
address: '0xdF69C045392c9d93ED8D79b472E57b9dBd7a3B66'
abi: Auctioneer
startBlock: 4854181
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
entities:
- AuctionEvent
- AuctionParticipant
- Auction
- User
- Stats
abis:
- name: Auctioneer
file: abi/Auctioneer.json
eventHandlers:
- event: AuctionCreated(indexed address,indexed uint256)
handler: handleAuctionCreated
- event: AuctionCancelled(indexed address,indexed uint256)
handler: handleAuctionCancelled
- event: UpdatedAlias(indexed address,string)
handler: handleUpdatedAlias
- event: MutedUser(indexed address,bool)
handler: handleMutedUser
- event: Bid(indexed uint256,indexed address,string,string,uint8,uint8,uint256,uint256,uint256)
handler: handleBid
- event: SelectedRune(indexed uint256,indexed address,string,string,uint8,uint8)
handler: handleSelectedRune
- event: Claimed(indexed uint256,indexed address,string,string,uint8)
handler: handleClaim
- event: Messaged(indexed uint256,indexed address,string,string,uint8)
handler: handleMessaged
file: ./subgraph/src/mappings.ts