Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.
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
4 changes: 2 additions & 2 deletions run_service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -705,18 +705,18 @@ if [ ! -d "$directory" ]; then
fi

cd $directory
poetry run autonomy init --reset --author $open_autonomy_author --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"

if [ "$(git rev-parse --is-inside-work-tree)" = true ]
then
poetry install
poetry run autonomy packages sync
poetry run autonomy init --reset --author $open_autonomy_author --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https"
poetry add tqdm
else
echo "$directory is not a git repo!"
exit 1
fi


# Setup the minting tool
export CUSTOM_CHAIN_RPC=$rpc
export CUSTOM_CHAIN_ID=$gnosis_chain_id
Expand Down
2 changes: 1 addition & 1 deletion scripts/swap_safe_owner.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def load_contract(ctype: ContractType) -> ContractType:
current_owner_crypto = EthereumCrypto(
private_key_path=args.current_owner_private_key_path, password=args.password
)
owner_cryptos: list[EthereumCrypto] = [current_owner_crypto]
owner_cryptos = [current_owner_crypto] # type: ignore

owners = [
ledger_api.api.to_checksum_address(owner_crypto.address)
Expand Down