From c0ebfc65937a20dba32e886c842d04203e7fbdd9 Mon Sep 17 00:00:00 2001 From: ponderingdemocritus Date: Tue, 25 Jun 2024 09:02:25 +1000 Subject: [PATCH 1/4] bump --- Scarb.lock | 4 ++-- Scarb.toml | 2 +- manifests/dev/manifest.json | 2 +- manifests/dev/manifest.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Scarb.lock b/Scarb.lock index 01bf6fc..692332f 100644 --- a/Scarb.lock +++ b/Scarb.lock @@ -3,8 +3,8 @@ version = 1 [[package]] name = "dojo" -version = "0.7.1" -source = "git+https://github.com/dojoengine/dojo?tag=v0.7.1#c4a1feadf1d5c5ecf9593b50c1a2ca2856ae2313" +version = "0.7.2" +source = "git+https://github.com/dojoengine/dojo?tag=v0.7.2#3da5cad9fdd39b81551e0668015d88262e6c5fc4" dependencies = [ "dojo_plugin", ] diff --git a/Scarb.toml b/Scarb.toml index 0343000..27b4553 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -12,7 +12,7 @@ spawn = "./scripts/spawn.sh" move = "./scripts/move.sh" [dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.7.1" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.7.2" } [[target.dojo]] diff --git a/manifests/dev/manifest.json b/manifests/dev/manifest.json index 26bcd9f..69254f5 100644 --- a/manifests/dev/manifest.json +++ b/manifests/dev/manifest.json @@ -1001,7 +1001,7 @@ ], "address": "0xb4079627ebab1cd3cf9fd075dda1ad2454a7a448bf659591f259efa2519b18", "transaction_hash": "0x3a729aa09b4ad351fbc724f94c6d599037a53d7d9b5a182097a60fb09d0486c", - "block_number": 9, + "block_number": 3, "seed": "dojo_starter", "metadata": { "profile_name": "dev", diff --git a/manifests/dev/manifest.toml b/manifests/dev/manifest.toml index 13d0cba..4f0382b 100644 --- a/manifests/dev/manifest.toml +++ b/manifests/dev/manifest.toml @@ -5,7 +5,7 @@ original_class_hash = "0x3f63cecdc4964acafb921ba2934c6507d1b3c344edb64c2762cf080 abi = "manifests/dev/abis/deployments/dojo_world_world.json" address = "0xb4079627ebab1cd3cf9fd075dda1ad2454a7a448bf659591f259efa2519b18" transaction_hash = "0x3a729aa09b4ad351fbc724f94c6d599037a53d7d9b5a182097a60fb09d0486c" -block_number = 9 +block_number = 3 seed = "dojo_starter" name = "dojo::world::world" From 39d2f8936395f8b74d2af84578b179f704b2562d Mon Sep 17 00:00:00 2001 From: ponderingdemocritus Date: Tue, 2 Jul 2024 15:46:20 +1000 Subject: [PATCH 2/4] update readme: --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 6694ed3..42d8586 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,26 @@ The official Dojo Starter guide, the quickest and most streamlined way to get yo Read the full tutorial [here](https://book.dojoengine.org/tutorial/dojo-starter). +## Running Locally + +#### Terminal one (Make sure this is running) +```bash +# Run Katana +katana --disable-fee --allowed-origins "*" +``` + +#### Terminal two +```bash +# Build the example +sozo build + +# Migrate the example +sozo migrate apply + +# Start Torii +torii --world --allowed-origins "*" +``` + --- ## Contribution From 3ceedcbc9d37d5173b15428fa6189de734beb8c7 Mon Sep 17 00:00:00 2001 From: ponderingdemocritus Date: Tue, 2 Jul 2024 15:47:28 +1000 Subject: [PATCH 3/4] bumps ci --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5a0def0..a920ae5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: curl -L https://install.dojoengine.org | bash - - run: /home/runner/.config/.dojo/bin/dojoup -v v0.7.1 + - run: /home/runner/.config/.dojo/bin/dojoup -v v0.7.2 - run: | /home/runner/.config/.dojo/bin/sozo build /home/runner/.config/.dojo/bin/sozo test From 11a8cc29a6fe2b4b508d5271d63ed6a8557826d4 Mon Sep 17 00:00:00 2001 From: ponderingdemocritus Date: Tue, 2 Jul 2024 15:52:31 +1000 Subject: [PATCH 4/4] readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42d8586..9f52a24 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ sozo build sozo migrate apply # Start Torii -torii --world --allowed-origins "*" +torii --world 0xb4079627ebab1cd3cf9fd075dda1ad2454a7a448bf659591f259efa2519b18 --allowed-origins "*" ``` ---