Skip to content

Commit

Permalink
docs: Update config.json networks
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-herasme committed Jul 26, 2024
1 parent c83659f commit 8b703ab
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ In the above example, `EtherFi` is defined in the configuration as follows:
}
},
"networks": {
"optimism": "$OPT_RPC_URL"
"optimism": {
"rpcUrl": "$OPT_RPC_URL",
"requestsPerSecond": 30
}
}
}
```
Expand Down Expand Up @@ -153,7 +156,10 @@ In the above example, `Stader` is defined in the configuration as follows:
}
},
"networks": {
"ethereum": "$ETH_RPC_URL"
"ethereum": {
"rpcUrl": "$ETH_RPC_URL",
"requestsPerSecond": 30
}
}
}
```
Expand Down Expand Up @@ -210,7 +216,10 @@ GhostCrab uses a configuration file to specify the data sources, templates, and
}
},
"networks": {
"mainnet": "$MAINNET_RPC_URL"
"mainnet": {
"rpcUrl": "$MAINNET_RPC_URL",
"requestsPerSecond": 30
}
},
"blockHandlers": {
"MyThirdDataSourceName": {
Expand Down

0 comments on commit 8b703ab

Please sign in to comment.