-
Notifications
You must be signed in to change notification settings - Fork 7
/
subgraph.mantle-testnet.yaml
89 lines (88 loc) · 2.55 KB
/
subgraph.mantle-testnet.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
specVersion: 0.0.5
schema:
file: ./schema.graphql
dataSources:
- kind: ethereum/contract
name: ERC20Proxy
network: testnet
source:
address: "0x88Ecc15fDC2985A7926171B938BB2Cd808A5ba40"
abi: ERC20Proxy
startBlock: 16210085
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: ERC20Proxy
file: ./abis/ERC20Proxy.json
eventHandlers:
- event: TransferWithReference(address,address,uint256,indexed bytes)
handler: handleTransferWithReference
receipt: true
file: ./src/erc20Proxy.ts
- kind: ethereum/contract
name: ERC20FeeProxy_0_2_0
network: testnet
source:
address: "0x399F5EE127ce7432E4921a61b8CF52b0af52cbfE"
abi: ERC20FeeProxy_0_2_0
startBlock: 16210087
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: ERC20FeeProxy_0_2_0
file: ./abis/ERC20FeeProxy-0.2.0.json
eventHandlers:
- event: TransferWithReferenceAndFee(address,address,uint256,indexed bytes,uint256,address)
handler: handleTransferWithReferenceAndFee
receipt: true
file: ./src/erc20FeeProxy.ts
- kind: ethereum/contract
name: EthProxy_0_3_0
network: testnet
source:
address: "0x171Ee0881407d4c0C11eA1a2FB7D5b4cdED71e6e"
abi: EthProxy_0_3_0
startBlock: 16210080
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: EthProxy_0_3_0
file: ./abis/EthProxy-0.3.0.json
eventHandlers:
- event: TransferWithReference(address,uint256,indexed bytes)
handler: handleTransferWithReference
receipt: true
file: ./src/ethProxy.ts
- kind: ethereum/contract
name: EthFeeProxy_0_2_0
network: testnet
source:
address: "0xe11BF2fDA23bF0A98365e1A4c04A87C9339e8687"
abi: EthFeeProxy_0_2_0
startBlock: 16210081
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
entities:
- Payment
abis:
- name: EthFeeProxy_0_2_0
file: ./abis/EthFeeProxy-0.2.0.json
eventHandlers:
- event: TransferWithReferenceAndFee(address,uint256,indexed bytes,uint256,address)
handler: handleTransferWithReferenceAndFee
receipt: true
file: ./src/ethFeeProxy.ts