Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.

Commit 8a6786c

Browse files
authored
Merge pull request #47 from valory-xyz/fix/service-update
Fix service update
2 parents 3ebe10a + 26c704f commit 8a6786c

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

run_service.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ fi
287287
directory="trader"
288288
# This is a tested version that works well.
289289
# Feel free to replace this with a different version of the repo, but be careful as there might be breaking changes
290-
service_version="v0.6.8"
290+
service_version="v0.6.9"
291291
service_repo=https://github.com/valory-xyz/$directory.git
292292
if [ -d $directory ]
293293
then
@@ -321,9 +321,9 @@ n_agents=1
321321
# setup the minting tool
322322
export CUSTOM_CHAIN_RPC=$rpc
323323
export CUSTOM_CHAIN_ID=$gnosis_chain_id
324-
export CUSTOM_SERVICE_MANAGER_ADDRESS="0xE3607b00E75f6405248323A9417ff6b39B244b50"
324+
export CUSTOM_SERVICE_MANAGER_ADDRESS="0x04b0007b2aFb398015B76e5f22993a1fddF83644"
325325
export CUSTOM_SERVICE_REGISTRY_ADDRESS="0x9338b5153AE39BB89f50468E608eD9d764B755fD"
326-
export CUSTOM_GNOSIS_SAFE_MULTISIG_ADDRESS="0x3C1fF68f5aa342D296d4DEe4Bb1cACCA912D95fE"
326+
export CUSTOM_SERVICE_REGISTRY_TOKEN_UTILITY_ADDRESS="0xa45E64d13A30a51b91ae0eb182e88a40e9b18eD8"
327327
export CUSTOM_GNOSIS_SAFE_PROXY_FACTORY_ADDRESS="0x3C1fF68f5aa342D296d4DEe4Bb1cACCA912D95fE"
328328
export CUSTOM_GNOSIS_SAFE_SAME_ADDRESS_MULTISIG_ADDRESS="0x3d77596beb0f130a4415df3D2D8232B3d3D31e44"
329329
export CUSTOM_MULTISEND_ADDRESS="0x40A2aCCbd92BCA938b02010E17A5b8929b49130D"
@@ -410,9 +410,7 @@ local_service_hash="$(grep 'service' $packages | awk -F: '{print $2}' | tr -d '"
410410
remote_service_hash=$(poetry run python "../scripts/service_hash.py")
411411
operator_address=$(get_address "../$operator_keys_file")
412412

413-
# FIXME Temporary disable on-chain update
414-
#if [ "$local_service_hash" != "$remote_service_hash" ]; then
415-
if false; then
413+
if [ "$local_service_hash" != "$remote_service_hash" ]; then
416414
echo ""
417415
echo "Your currently minted on-chain service (id $service_id) mismatches the fetched trader service ($service_version):"
418416
echo " - Local service hash ($service_version): $local_service_hash"

scripts/fix_interrupted_service_update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ fi
228228
directory="trader"
229229
# This is a tested version that works well.
230230
# Feel free to replace this with a different version of the repo, but be careful as there might be breaking changes
231-
service_version="v0.6.8"
231+
service_version="v0.6.9"
232232
service_repo=https://github.com/valory-xyz/$directory.git
233233
echo "Cloning the $directory repo..."
234234
git clone --depth 1 --branch $service_version $service_repo

0 commit comments

Comments
 (0)