-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScarb.toml
40 lines (32 loc) · 1.18 KB
/
Scarb.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
cairo-version = "=2.8.4"
name = "myapp"
version = "0.0.0"
[cairo]
sierra-replace-ids = true
[dependencies]
pixelaw = { git = "https://github.com/pixelaw/core", tag = "v0.5.17" }
#pixelaw = { path = "../core/contracts" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.6" }
[dev-dependencies]
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.6" }
pixelaw_test_helpers = { git = "https://github.com/pixelaw/core", tag = "v0.5.17" }
#pixelaw_test_helpers = { path = "../core/test_helpers" }
[[target.starknet-contract]]
sierra = true
build-external-contracts = [
"dojo::world::world_contract::world",
"pixelaw::core::actions::actions",
"pixelaw::apps::paint::app::paint_actions",
"pixelaw::apps::snake::app::snake_actions",
]
[tool.fmt]
sort-module-level-items = true
[profile.sepolia]
[scripts]
ready_for_deployment = "bash ./scripts/ready_for_deployment.sh"
initialize = "bash ./scripts/default_auth.sh"
upload_manifest = "bash ./scripts/upload_manifest.sh"
ready_for_deployment_zsh = "zsh ./scripts/ready_for_deployment.sh"
initialize_zsh = "zsh ./scripts/default_auth.sh"
upload_manifest_zsh = "zsh ./scripts/upload_manifest.sh"