Skip to content

Commit

Permalink
fix alpha 2 readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Jul 26, 2024
1 parent fbb87b4 commit 75ecc4f
Show file tree
Hide file tree
Showing 11 changed files with 519 additions and 519 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ sozo build
sozo migrate apply

# Start Torii
torii --world 0x16a15cc2a571bf95eef741c701a5657e4dbf1a5b9ce3785b4060b60f58913f4 --allowed-origins "*"
torii --world 0x70835f8344647b1e573fe7aeccbf044230089eb19624d3c7dea4080f5dcb025 --allowed-origins "*"
```

---
Expand Down
2 changes: 1 addition & 1 deletion Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ rpc_url = "http://localhost:5050/"
# Default account for katana with seed = 0
account_address = "0xb3ff441a68610b30fd5e2abbf3a1548eb6ba6f3559f2862bf2dc757e5828ca"
private_key = "0x2bbf4f9fd0bbb2e60b0316c1fe0b76cf7a4d0198bd493ced9b8df2a3a24d68a"
world_address = "0x3fc79ccfd72c1450d2ccb73c5c521a7ec68b6c6af0caf96a0f1c39ce58876c8" # Uncomment and update this line with your world address.
# world_address = "0x3fc79ccfd72c1450d2ccb73c5c521a7ec68b6c6af0caf96a0f1c39ce58876c8" # Uncomment and update this line with your world address.

[tool.dojo.world]
name = "Dojo starter"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"type": "impl",
"name": "ContractImpl",
"interface_name": "dojo::contract::IContract"
"interface_name": "dojo::contract::contract::IContract"
},
{
"type": "struct",
Expand All @@ -24,7 +24,7 @@
},
{
"type": "interface",
"name": "dojo::contract::IContract",
"name": "dojo::contract::contract::IContract",
"items": [
{
"type": "function",
Expand Down Expand Up @@ -97,11 +97,11 @@
{
"type": "impl",
"name": "WorldProviderImpl",
"interface_name": "dojo::world::IWorldProvider"
"interface_name": "dojo::world::world_contract::IWorldProvider"
},
{
"type": "struct",
"name": "dojo::world::IWorldDispatcher",
"name": "dojo::world::world_contract::IWorldDispatcher",
"members": [
{
"name": "contract_address",
Expand All @@ -111,15 +111,15 @@
},
{
"type": "interface",
"name": "dojo::world::IWorldProvider",
"name": "dojo::world::world_contract::IWorldProvider",
"items": [
{
"type": "function",
"name": "world",
"inputs": [],
"outputs": [
{
"type": "dojo::world::IWorldDispatcher"
"type": "dojo::world::world_contract::IWorldDispatcher"
}
],
"state_mutability": "view"
Expand All @@ -133,7 +133,7 @@
},
{
"type": "enum",
"name": "dojo_starter::models::moves::Direction",
"name": "dojo_starter::models::Direction",
"variants": [
{
"name": "None",
Expand Down Expand Up @@ -174,7 +174,7 @@
"inputs": [
{
"name": "direction",
"type": "dojo_starter::models::moves::Direction"
"type": "dojo_starter::models::Direction"
}
],
"outputs": [],
Expand Down Expand Up @@ -203,11 +203,11 @@
{
"type": "impl",
"name": "UpgradableImpl",
"interface_name": "dojo::components::upgradeable::IUpgradeable"
"interface_name": "dojo::contract::upgradeable::IUpgradeable"
},
{
"type": "interface",
"name": "dojo::components::upgradeable::IUpgradeable",
"name": "dojo::contract::upgradeable::IUpgradeable",
"items": [
{
"type": "function",
Expand All @@ -225,7 +225,7 @@
},
{
"type": "event",
"name": "dojo::components::upgradeable::upgradeable::Upgraded",
"name": "dojo::contract::upgradeable::upgradeable::Upgraded",
"kind": "struct",
"members": [
{
Expand All @@ -237,12 +237,12 @@
},
{
"type": "event",
"name": "dojo::components::upgradeable::upgradeable::Event",
"name": "dojo::contract::upgradeable::upgradeable::Event",
"kind": "enum",
"variants": [
{
"name": "Upgraded",
"type": "dojo::components::upgradeable::upgradeable::Upgraded",
"type": "dojo::contract::upgradeable::upgradeable::Upgraded",
"kind": "nested"
}
]
Expand All @@ -254,7 +254,7 @@
"variants": [
{
"name": "UpgradeableEvent",
"type": "dojo::components::upgradeable::upgradeable::Event",
"type": "dojo::contract::upgradeable::upgradeable::Event",
"kind": "nested"
}
]
Expand Down
22 changes: 11 additions & 11 deletions manifests/dev/deployment/abis/dojo-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
{
"type": "impl",
"name": "WorldProviderImpl",
"interface_name": "dojo::world::IWorldProvider"
"interface_name": "dojo::world::world_contract::IWorldProvider"
},
{
"type": "struct",
"name": "dojo::world::IWorldDispatcher",
"name": "dojo::world::world_contract::IWorldDispatcher",
"members": [
{
"name": "contract_address",
Expand All @@ -16,15 +16,15 @@
},
{
"type": "interface",
"name": "dojo::world::IWorldProvider",
"name": "dojo::world::world_contract::IWorldProvider",
"items": [
{
"type": "function",
"name": "world",
"inputs": [],
"outputs": [
{
"type": "dojo::world::IWorldDispatcher"
"type": "dojo::world::world_contract::IWorldDispatcher"
}
],
"state_mutability": "view"
Expand All @@ -34,11 +34,11 @@
{
"type": "impl",
"name": "UpgradableImpl",
"interface_name": "dojo::components::upgradeable::IUpgradeable"
"interface_name": "dojo::contract::upgradeable::IUpgradeable"
},
{
"type": "interface",
"name": "dojo::components::upgradeable::IUpgradeable",
"name": "dojo::contract::upgradeable::IUpgradeable",
"items": [
{
"type": "function",
Expand All @@ -61,7 +61,7 @@
},
{
"type": "event",
"name": "dojo::components::upgradeable::upgradeable::Upgraded",
"name": "dojo::contract::upgradeable::upgradeable::Upgraded",
"kind": "struct",
"members": [
{
Expand All @@ -73,24 +73,24 @@
},
{
"type": "event",
"name": "dojo::components::upgradeable::upgradeable::Event",
"name": "dojo::contract::upgradeable::upgradeable::Event",
"kind": "enum",
"variants": [
{
"name": "Upgraded",
"type": "dojo::components::upgradeable::upgradeable::Upgraded",
"type": "dojo::contract::upgradeable::upgradeable::Upgraded",
"kind": "nested"
}
]
},
{
"type": "event",
"name": "dojo::base::base::Event",
"name": "dojo::contract::base_contract::base::Event",
"kind": "enum",
"variants": [
{
"name": "UpgradeableEvent",
"type": "dojo::components::upgradeable::upgradeable::Event",
"type": "dojo::contract::upgradeable::upgradeable::Event",
"kind": "flat"
}
]
Expand Down
Loading

0 comments on commit 75ecc4f

Please sign in to comment.