Contracts written in Cairo using Dojo to showcase a Pixel World with app interoperability. Its interoperability is made possible with core actions. Apps are any other contracts that are deployed to the Pixel World.
Follow the asdf installation instructions.
asdf plugin add dojo https://github.com/dojoengine/asdf-dojo
asdf install dojo 1.0.0-alpha.11
asdf plugin add scarb
asdf install scarb 2.7.0
And after moving into contracts directory, the versions for these libs are set in the .tool-versions file.
# Run Katana
katana --disable-fee --allowed-origins "*"
# Build the example
sozo build
# Migrate the example
sozo migrate apply
# Initialize the pixelaw app
scarb run init_auth
# Start Torii
torii --world 0x263ae44e5414519a5c5a135cccaf3d9d7ee196d37e8de47a178da91f3de9b34 --allowed-origins "*"
you can deploy your app to our katana testnet by running the following commands:
# Deploy the pixelaw app
sozo build -P release
sozo migrate apply -P release
If you want to use latest dojo version, you need to clone core by yourself and modify the path in Scarb.toml
file.
- Clone core repo
git clone https://github.com/pixelaw/core
- Modify the path in
Scarb.toml
file
pixelaw = { path = "../pixelaw/core/contracts" }
- Modify version in
Scarb.toml
file in core repo
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-alpha.11" }
- Build and run core
cd contracts
sozo build
sozo migrate apply