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/drand #245

Merged
merged 2 commits into from
Dec 4, 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:bafybeigexmn4jl2s43urlusyajcplmvf3sqcm3ty63ukzgloyfuigzude4 --service
autonomy fetch valory/impact_evaluator:0.1.0:bafybeidja2nujonwekejosenrayprktnxxubwgjnthi7d7vi4u6eqi5tva --service
```

3. Build the Docker image of the service agents
Expand Down
4 changes: 2 additions & 2 deletions packages/packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"skill/valory/staking_abci/0.1.0": "bafybeiffqyu4plhkkezhz6oabgx6nb6v2ozhs53iruw7p4ucclbgvo5u24",
"agent/valory/impact_evaluator/0.1.0": "bafybeicsncua573sgxisxkxf3f6xflt2plyxeejh4lbstr6ybywuj6ekqi",
"agent/valory/farcaster_test/0.1.0": "bafybeig6yilme5s7fvru2b44dtr5xxqz3gf7p56swr7c5hip775l5wally",
"service/valory/impact_evaluator/0.1.0": "bafybeigexmn4jl2s43urlusyajcplmvf3sqcm3ty63ukzgloyfuigzude4",
"service/valory/impact_evaluator_local/0.1.0": "bafybeiczd3xkxlfzrpwhu5sqsj5z5d4i2ijlk5xmzf2466de2drn7snvhi"
"service/valory/impact_evaluator/0.1.0": "bafybeidja2nujonwekejosenrayprktnxxubwgjnthi7d7vi4u6eqi5tva",
"service/valory/impact_evaluator_local/0.1.0": "bafybeidarrmtapqiakoo2rfekq7ifnszt3o2nx66l6ce7efgm3q3clpl7a"
},
"third_party": {
"protocol/open_aea/signing/1.0.0": "bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi",
Expand Down
8 changes: 4 additions & 4 deletions packages/valory/services/impact_evaluator/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ extra:
use_acn_for_delivers: ${USE_ACN_FOR_DELIVERS:bool:false}
randomness_api:
args:
url: ${DRAND_ENDPOINT:str:https://drand.cloudflare.com/public/latest}
url: ${DRAND_ENDPOINT:str:https://api.drand.sh/public/latest}
1:
models:
benchmark_tool:
Expand Down Expand Up @@ -245,7 +245,7 @@ extra:
use_acn_for_delivers: ${USE_ACN_FOR_DELIVERS:bool:false}
randomness_api:
args:
url: ${DRAND_ENDPOINT:str:https://drand.cloudflare.com/public/latest}
url: ${DRAND_ENDPOINT:str:https://api.drand.sh/public/latest}
2:
models:
benchmark_tool:
Expand Down Expand Up @@ -344,7 +344,7 @@ extra:
staking_rewards_required_points: ${STAKING_REWARDS_REQUIRED_POINTS:int:200}
randomness_api:
args:
url: ${DRAND_ENDPOINT:str:https://drand.cloudflare.com/public/latest}
url: ${DRAND_ENDPOINT:str:https://api.drand.sh/public/latest}
3:
models:
benchmark_tool:
Expand Down Expand Up @@ -447,7 +447,7 @@ extra:
staking_rewards_required_points: ${STAKING_REWARDS_REQUIRED_POINTS:int:200}
randomness_api:
args:
url: ${DRAND_ENDPOINT:str:https://drand.cloudflare.com/public/latest}
url: ${DRAND_ENDPOINT:str:https://api.drand.sh/public/latest}
---
public_id: valory/ledger:0.19.0
type: connection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ models:
staking_rewards_required_points: ${STAKING_REWARDS_REQUIRED_POINTS:int:200}
randomness_api:
args:
url: ${DRAND_ENDPOINT:str:https://drand.cloudflare.com/public/latest}
url: ${DRAND_ENDPOINT:str:https://api.drand.sh/public/latest}
---
public_id: valory/ledger:0.19.0
type: connection
Expand Down
Loading