-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.yaml
42 lines (42 loc) · 1.43 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
specVersion: 0.0.5
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum
name: NotaryShot
network: matic
source:
address: "0xa567349bdd3d4f2c3e25f65745a020162c202ef2"
abi: NotaryShot
startBlock: 31025046
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- ChainlinkCancelled
- ChainlinkFulfilled
- ChainlinkRequested
- MintRequestRefused
- RequestContentHashFulfilled
- RequestContentHashSent
- Transfer
abis:
- name: NotaryShot
file: ./abis/NotaryShot.json
eventHandlers:
- event: ChainlinkCancelled(indexed bytes32)
handler: handleChainlinkCancelled
- event: ChainlinkFulfilled(indexed bytes32)
handler: handleChainlinkFulfilled
- event: ChainlinkRequested(indexed bytes32)
handler: handleChainlinkRequested
- event: MintRequestRefused(indexed address,string,uint256,uint256)
handler: handleMintRequestRefused
- event: RequestContentHashFulfilled(indexed address,string,uint256)
handler: handleRequestContentHashFulfilled
- event: RequestContentHashSent(indexed address,string,uint256)
handler: handleRequestContentHashSent
- event: Transfer(indexed address,indexed address,indexed uint256)
handler: handleTransfer
file: ./src/mapping.ts