mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 12:56:20 +00:00
71d34331e9
* Deprecate postgraphile usage * Change endpoint in watcher config * Remove subscription queries from eth-client * Remove postgraphile config and client from watchers Co-authored-by: nabarun <nabarun@deepstacksoft.com>
27 lines
628 B
YAML
27 lines
628 B
YAML
specVersion: 0.0.2
|
|
schema:
|
|
file: ./schema.graphql
|
|
dataSources:
|
|
- kind: ethereum/contract
|
|
name: Example1
|
|
network: mainnet
|
|
source:
|
|
address: "0x1ca7c995f8eF0A2989BbcE08D5B7Efe50A584aa1"
|
|
abi: Example1
|
|
startBlock: 10
|
|
mapping:
|
|
kind: ethereum/events
|
|
apiVersion: 0.0.5
|
|
language: wasm/assemblyscript
|
|
entities:
|
|
- Test
|
|
abis:
|
|
- name: Example1
|
|
file: ./abis/Example1.json
|
|
eventHandlers:
|
|
- event: Test(string,uint8,uint256)
|
|
handler: handleTest
|
|
blockHandlers:
|
|
- handler: handleBlock
|
|
file: ./src/mapping.ts
|