mirror of
https://github.com/Instadapp/fla-fees-subgraph.git
synced 2024-07-29 21:57:15 +00:00
30 lines
751 B
YAML
30 lines
751 B
YAML
|
specVersion: 0.0.1
|
||
|
schema:
|
||
|
file: ./schema.graphql
|
||
|
dataSources:
|
||
|
- kind: ethereum
|
||
|
name: FLA
|
||
|
network: mainnet
|
||
|
source:
|
||
|
address: "0x619Ad2D02dBeE6ebA3CDbDA3F98430410e892882"
|
||
|
abi: FLA
|
||
|
mapping:
|
||
|
kind: ethereum/events
|
||
|
apiVersion: 0.0.5
|
||
|
language: wasm/assemblyscript
|
||
|
entities:
|
||
|
- AdminChanged
|
||
|
- BeaconUpgraded
|
||
|
- Upgraded
|
||
|
abis:
|
||
|
- name: FLA
|
||
|
file: ./abis/FLA.json
|
||
|
eventHandlers:
|
||
|
- event: AdminChanged(address,address)
|
||
|
handler: handleAdminChanged
|
||
|
- event: BeaconUpgraded(indexed address)
|
||
|
handler: handleBeaconUpgraded
|
||
|
- event: Upgraded(indexed address)
|
||
|
handler: handleUpgraded
|
||
|
file: ./src/fla.ts
|