-
Notifications
You must be signed in to change notification settings - Fork 0
/
subgraph.yaml
63 lines (63 loc) · 1.77 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
specVersion: 0.0.4
description: Canto Dex Metrics API
repository: https://github.com/Canto-Network/canto-subgraph
# features:
# - nonFatalErrors
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: Factory
network: mainnet
source:
address: "0xAa5D5be63bf3E4B65b85952F31920Ceb44cb849b"
abi: Factory
startBlock: 565
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/factory.ts
entities:
- Pair
- Token
abis:
- name: Factory
file: ./abis/BaseV1Factory.json
- name: Pair
file: ./abis/BaseV1Pair.json
- name: ERC20
file: ./abis/ERC20.json
eventHandlers:
- event: PairCreated(indexed address,indexed address,bool,address,uint256)
handler: handlePairCreated
templates:
- kind: ethereum/contract
name: Pair
network: mainnet
source:
abi: Pair
mapping:
kind: ethereum/events
apiVersion: 0.0.6
language: wasm/assemblyscript
file: ./src/mappings/core.ts
entities:
- Pair
- Token
abis:
- name: Factory
file: ./abis/BaseV1Factory.json
- name: Pair
file: ./abis/BaseV1Pair.json
eventHandlers:
- event: Burn(indexed address,uint256,uint256,indexed address)
handler: handleBurn
- event: Mint(indexed address,uint256,uint256)
handler: handleMint
- event: Swap(indexed address,uint256,uint256,uint256,uint256,indexed address)
handler: handleSwap
- event: Sync(uint256,uint256)
handler: handleSync
- event: Transfer(indexed address,indexed address,uint256)
handler: handleTransfer