Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/default chain ids #209

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ In order to run a local demo service based on the IEKit:
2. Fetch the IEKit.

```bash
autonomy fetch valory/impact_evaluator:0.1.0:bafybeiezhi6fv37z4d5bx2hs7eoifcx7zjeoozybrijlfjzpdkcgvvsq74 --service
autonomy fetch valory/impact_evaluator:0.1.0:bafybeigtho2rxktolanecmbvghygl7budphpjsadvm3lny2tslwmsxp64u --service
```

3. Build the Docker image of the service agents
Expand Down
6 changes: 3 additions & 3 deletions packages/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
"skill/valory/farcaster_write_abci/0.1.0": "bafybeigx2wyujnojer7er7g2eufm5lojon2dckotvsgwb6tn5iyiwdfgsu",
"skill/valory/farcaster_test_abci/0.1.0": "bafybeihd3h37ngkxlqo6o3vuvdik54bwmbrjmqcxtgsr5is3tqgbk73yoa",
"skill/valory/staking_abci/0.1.0": "bafybeidgmviq6inwwjachktoeddmyuo7iyg7yfyhvhvy3znndkvuuudllq",
"agent/valory/impact_evaluator/0.1.0": "bafybeihz7ixk26mfjgb3v2tf7b6ewgy6epe5tftfkq5mkfi5zwdlnakgva",
"agent/valory/impact_evaluator/0.1.0": "bafybeibvbhfm5itgvwtddczmv6d3jre4vwjayassqwvbltxrsoxg5crceq",
"agent/valory/farcaster_test/0.1.0": "bafybeiefui6dnhhy5leqyvfrbkeleb64gap5tzctkrzzggjf4ubbxamjvy",
"service/valory/impact_evaluator/0.1.0": "bafybeiezhi6fv37z4d5bx2hs7eoifcx7zjeoozybrijlfjzpdkcgvvsq74",
"service/valory/impact_evaluator_local/0.1.0": "bafybeig3eaod2wgxkgolk7hexlvdrljpij6xjflq3dsdcntia7y6nf2ooy"
"service/valory/impact_evaluator/0.1.0": "bafybeigtho2rxktolanecmbvghygl7budphpjsadvm3lny2tslwmsxp64u",
"service/valory/impact_evaluator_local/0.1.0": "bafybeihhail2dbcs3pqrlhwy2yqujkx4qom4nsq7tdmebdo4h6iuacxwqq"
},
"third_party": {
"protocol/open_aea/signing/1.0.0": "bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi",
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/agents/impact_evaluator/aea-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ config:
priority_fee_increase_boundary: 200
gnosis:
address: ${str:http://localhost:8545}
chain_id: ${int:1337}
chain_id: ${int:100}
poa_chain: ${bool:false}
default_gas_price_strategy: ${str:eip1559}
gas_price_strategies: *id001
base:
address: ${str:http://localhost:8545}
chain_id: ${int:1337}
chain_id: ${int:8453}
poa_chain: ${bool:false}
default_gas_price_strategy: ${str:eip1559}
gas_price_strategies: *id001
Expand Down
4 changes: 2 additions & 2 deletions packages/valory/services/impact_evaluator/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
fingerprint:
README.md: bafybeign56hilwuoa6bgos3uqabss4gew4vadkik7vhj3ucpqw6nxtqtpe
fingerprint_ignore_patterns: []
agent: valory/impact_evaluator:0.1.0:bafybeihz7ixk26mfjgb3v2tf7b6ewgy6epe5tftfkq5mkfi5zwdlnakgva
agent: valory/impact_evaluator:0.1.0:bafybeibvbhfm5itgvwtddczmv6d3jre4vwjayassqwvbltxrsoxg5crceq
number_of_agents: 4
deployment:
agent:
Expand Down Expand Up @@ -486,7 +486,7 @@ config:
gas_price_strategies: *id001
base:
address: ${BASE_LEDGER_RPC:str:http://host.docker.internal:8545}
chain_id: ${BASE_LEDGER_CHAIN_ID:int:100}
chain_id: ${BASE_LEDGER_CHAIN_ID:int:8453}
poa_chain: ${BASE_LEDGER_IS_POA_CHAIN:bool:false}
default_gas_price_strategy: ${BASE_LEDGER_PRICING:str:eip1559}
gas_price_strategies: *id001
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
fingerprint:
README.md: bafybeign56hilwuoa6bgos3uqabss4gew4vadkik7vhj3ucpqw6nxtqtpe
fingerprint_ignore_patterns: []
agent: valory/impact_evaluator:0.1.0:bafybeihz7ixk26mfjgb3v2tf7b6ewgy6epe5tftfkq5mkfi5zwdlnakgva
agent: valory/impact_evaluator:0.1.0:bafybeibvbhfm5itgvwtddczmv6d3jre4vwjayassqwvbltxrsoxg5crceq
number_of_agents: 1
deployment:
agent:
Expand Down
Loading