mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-07-27 02:32:07 +00:00
Merge a4e69d799d
into b572eb9032
This commit is contained in:
commit
1d3d2eeb34
15
packages/codegen/SimpleContract.sol
Normal file
15
packages/codegen/SimpleContract.sol
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// contracts/SimpleContract.sol
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
pragma solidity ^0.8.0;
|
||||||
|
|
||||||
|
contract SimpleContract {
|
||||||
|
uint256 public data;
|
||||||
|
|
||||||
|
function setData(uint256 _data) public {
|
||||||
|
data = _data;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getData() public view returns (uint256) {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
32
packages/codegen/example.config.yaml
Normal file
32
packages/codegen/example.config.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
contracts:
|
||||||
|
# Contract name:
|
||||||
|
- name: SimpleContract
|
||||||
|
# Contract file path or an url:
|
||||||
|
path: ./SimpleContract.sol
|
||||||
|
# Contract kind (should match name of dataSource in {subgraphPath}/subgraph.yaml if subgraphPath provided)
|
||||||
|
#kind: Example1
|
||||||
|
|
||||||
|
# Output folder path (logs output using `stdout` if not provided).
|
||||||
|
outputFolder: ../simple-contract-watcher
|
||||||
|
|
||||||
|
# Code generation mode [eth_call | storage | all | none] (default: none).
|
||||||
|
mode: none
|
||||||
|
|
||||||
|
# Kind of watcher [lazy | active] (default: active).
|
||||||
|
kind: lazy
|
||||||
|
|
||||||
|
# Watcher server port (default: 3008).
|
||||||
|
port: 3008
|
||||||
|
|
||||||
|
# Solc version to use (optional)
|
||||||
|
# If not defined, uses solc version listed in dependencies
|
||||||
|
solc: v0.8.0+commit.c7dfd78e
|
||||||
|
|
||||||
|
# Flatten the input contract file(s) [true | false] (default: true).
|
||||||
|
flatten: true
|
||||||
|
|
||||||
|
# Path to the subgraph build (optional).
|
||||||
|
# Can set empty contracts array when using subgraphPath.
|
||||||
|
# subgraphPath: ../graph-node/test/subgraph/example1/build
|
||||||
|
|
||||||
|
# NOTE: When passed an *URL* as contract path, it is assumed that it points to an already flattened contract file.
|
Loading…
Reference in New Issue
Block a user