From 7a499948c99a80bcb998bb9115576263187f35d7 Mon Sep 17 00:00:00 2001 From: Miguel de Elias Date: Fri, 13 Feb 2026 11:38:03 -0300 Subject: [PATCH] chore: update README with DataEdge configuration parameters --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d272384..885f5a8 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,17 @@ FLAGS: -V, --version Prints version information OPTIONS: + --data-edge-contract + The address of the DataEdge contract for posting oracle configuration [env: DATA_EDGE_CONTRACT=] + --epoch-block-oracle-subgraph Graphql endpoint to the epoch block oracle subgraph used for fetching supported networks [env: EPOCH_BLOCK_ORACLE_SUBGRAPH=] --grace-period Grace period, in seconds from subgraph creation, for which subgraphs will not be checked [env: ORACLE_GRACE_PERIOD=] [default: 0] + + --graph-monitoring-subgraph + GraphQL endpoint to the graph-monitoring subgraph for checking current oracle config [env: GRAPH_MONITORING_SUBGRAPH=] --ipfs IPFS endpoint with access to the subgraph files [env: ORACLE_IPFS=] @@ -81,7 +87,9 @@ cargo run -p availability-oracle -- \ --url \ --subgraph-availability-manager-contract
\ --oracle-index \ - --signing-key + --signing-key \ + --data-edge-contract \ + --graph-monitoring-subgraph ``` ### Example command to run `RewardsManager` configuration: @@ -93,5 +101,7 @@ cargo run -p availability-oracle -- \ --min-signal 10000 \ --url \ --rewards-manager-contract
\ - --signing-key + --signing-key \ + --data-edge-contract \ + --graph-monitoring-subgraph ``` \ No newline at end of file