diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2ceda4d..795c1b1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ on: workflow_dispatch: env: - DOJO_VERSION: v1.0.0-alpha.19 + DOJO_VERSION: v1.0.0-alpha.16 SCARB_VERSION: v2.7.0 jobs: diff --git a/Scarb.lock b/Scarb.lock index 482b7d5..1845ea4 100644 --- a/Scarb.lock +++ b/Scarb.lock @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "dojo" version = "1.0.0-alpha.4" -source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-alpha.19#ef696ea9bbaa22d3f6db392d9692b4821578c23c" +source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-alpha.16#3b3a78cd8239ca2ee524c49c83f36db4d79cb4bc" [[package]] name = "jokers_of_neon" diff --git a/Scarb.toml b/Scarb.toml index 42704eb..835e3be 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -19,7 +19,7 @@ move = "./scripts/move.sh" deploy-sepolia = "rm -rf ./manifest/sepolia && sozo --profile sepolia clean && sozo --profile sepolia build && sozo --profile sepolia migrate plan && sozo --profile sepolia migrate apply" [dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-alpha.19" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-alpha.16" } alexandria_sorting = { git = "https://github.com/dubzn/quaireaux.git", branch = "main" } [profile.prod] diff --git a/dojo_dev.toml b/dojo_dev.toml index d111ed6..9dad038 100644 --- a/dojo_dev.toml +++ b/dojo_dev.toml @@ -10,6 +10,6 @@ mappings = { } [env] rpc_url = "http://localhost:5050/" # Default account for katana with seed = 0 -account_address = "0x6677fe62ee39c7b07401f754138502bab7fac99d2d3c5d37df7d1c6fab10819" -private_key = "0x3e3979c1ed728490308054fe357a9f49cf67f80f9721f44cc57235129e090f4" +account_address = "0x6b86e40118f29ebe393a75469b4d926c7a44c2e2681b6d319520b7c1156d114" +private_key = "0x1c9053c053edf324aec366a34c6901b1095b07af69495bffec7d7fe21effb1b" #world_address = "0x42e172247714a480a40121c97c13acb1338e6cc8948b5ae23f5d7d53cd26338" diff --git a/manifests/dev/deployment/manifest.json b/manifests/dev/deployment/manifest.json index e74c1c7..5f6d1e4 100644 --- a/manifests/dev/deployment/manifest.json +++ b/manifests/dev/deployment/manifest.json @@ -1235,7 +1235,7 @@ } ], "address": "0x37578f01e123327fb366fc6e2224f4be4e44234d682855e1326363b57444b88", - "transaction_hash": "0x2c1ee2ccda8c4ae2bb63ccb7af8d14918b4d8ff816ad9573e0a8a79bc576be6", + "transaction_hash": "0x244541a1180fd75745c73a9a013978c29a6b2f06df19582c4945cfeeedd768c", "block_number": 3, "seed": "jokers_of_neon", "metadata": { diff --git a/manifests/dev/deployment/manifest.toml b/manifests/dev/deployment/manifest.toml index 0364bb3..7b60aa1 100644 --- a/manifests/dev/deployment/manifest.toml +++ b/manifests/dev/deployment/manifest.toml @@ -4,7 +4,7 @@ class_hash = "0x6f38d5d9507c5d9546290e1a27e309efe5a9af3770b6cc1627db4a1b90a7dce" original_class_hash = "0x6f38d5d9507c5d9546290e1a27e309efe5a9af3770b6cc1627db4a1b90a7dce" abi = "manifests/dev/deployment/abis/dojo-world.json" address = "0x37578f01e123327fb366fc6e2224f4be4e44234d682855e1326363b57444b88" -transaction_hash = "0x2c1ee2ccda8c4ae2bb63ccb7af8d14918b4d8ff816ad9573e0a8a79bc576be6" +transaction_hash = "0x244541a1180fd75745c73a9a013978c29a6b2f06df19582c4945cfeeedd768c" block_number = 3 seed = "jokers_of_neon" manifest_name = "dojo-world" diff --git a/scripts/deploy_slot.sh b/scripts/deploy_slot.sh index d5f95ce..ee94800 100755 --- a/scripts/deploy_slot.sh +++ b/scripts/deploy_slot.sh @@ -26,7 +26,7 @@ if [ "$action" == "create" ]; then slot deployments delete jon-${profile} katana slot deployments delete jon-${profile} torii sleep 10 - slot deployments create --tier epic jon-${profile} katana -b 3000 -v v1.0.0-alpha.19 --disable-fee true --invoke-max-steps 4294967295 --seed 420 -a 10 + slot deployments create --tier epic jon-${profile} katana -b 3000 -v v1.0.0-alpha.16 --disable-fee true --invoke-max-steps 4294967295 --seed 420 -a 10 fi echo "sozo -P ${profile} build && sozo -P ${profile} migrate plan && sozo -P ${profile} migrate apply" @@ -38,5 +38,5 @@ export world_address=$(cat ./manifests/$profile/deployment/manifest.json | jq -r if [ "$action" == "create" ]; then echo -e "\n✅ Init Torii!" - slot d create --tier epic jon-${profile} torii --rpc https://api.cartridge.gg/x/jon-${profile}/katana --world $world_address -v v1.0.0-alpha.19 + slot d create --tier epic jon-${profile} torii --rpc https://api.cartridge.gg/x/jon-${profile}/katana --world $world_address -v v1.0.0-alpha.16 fi