Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

👽️ Upgrade dojo dep #4

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Bug Report
description: Report a bug
labels: [ "bug" ]
body:
- type: dropdown
id: service-name
attributes:
label: Which service is your bug related to?
multiple: true
options:
- Frontend
- Contracts
validations:
required: true

- type: textarea
id: what-happened
attributes:
label: What happened
description: Describe the issue here.
validations:
required: true

- type: textarea
id: logs
attributes:
label: Trace
description: Please provide output of the error.
validations:
required: false

- type: checkboxes
id: verified-not-exists
attributes:
label: Is there an existing issue for this?
options:
- label: I have searched the existing issues and verified no issue exits for this problem.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Feature request
description: Suggest a feature
body:
- type: dropdown
id: service-name
attributes:
label: Which service is your feature related to?
multiple: true
options:
- Frontend
- Contracts
validations:
required: true

- type: textarea
id: Suggestion
attributes:
label: Feature Request
description: Describe the feature(s) you would like to be added.
validations:
required: true
22 changes: 22 additions & 0 deletions Scarb.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "dojo"
version = "0.5.1"
source = "git+https://github.com/dojoengine/dojo?tag=v0.6.0-alpha.3#9b2bf3e465be5efeeb7f41032c15d35c46d90002"
dependencies = [
"dojo_plugin",
]

[[package]]
name = "dojo_plugin"
version = "0.3.11"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.11#1e651b5d4d3b79b14a7d8aa29a92062fcb9e6659"

[[package]]
name = "zknight"
version = "0.0.0"
dependencies = [
"dojo",
]
22 changes: 10 additions & 12 deletions Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
[package]
cairo-version = "2.2.0"
cairo-version = "2.4.0"
name = "zknight"
version = "0.1.0"
version = "0.0.0"
edition = "2023_10"

[cairo]
sierra-replace-ids = true

[dependencies]
starknet = ">=2.2.0"
alexandria_data_structures = { git = "https://github.com/keep-starknet-strange/alexandria.git", rev = "46c8d8ab9e3bfb68b70a29b3246f809cd8bf70e4" }
dojo = { git = "https://github.com/dojoengine/dojo.git", tag = "v0.3.1" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.6.0-alpha.3" }

[[target.dojo]]

[tool.dojo]
initializer_class_hash = "0xbeef"

[tool.dojo.env]
# Katana
rpc_url = "http://localhost:5050/"
# Default account for katana with seed = 0
account_address = "0x517ececd29116499f4a1b64b094da79ba08dfd54a3edaa316134c41f8160973"
account_address = "0x6162896d1d7ab204c7ccac6dd5f8e9e7c25ecd5ae4fcb4ad32e57786bb46e03"
private_key = "0x1800000000300000180000000000030000000000003006001800006600"
# world_address = "0x5797dca16591ca89ac11a7946e962185dfad886f029d91bb57339eeb94c57fa"

# Madara testnet
# rpc_url = "https://api.cartridge.gg/x/shinai/madara"
# account_address = "0x2"
# private_key = "0xc1cf1490de1352865301bb8705143f3ef938f97fdf892f1090dcb5ac7bcd1d"
# Dev
# rpc_url = "https://api.cartridge.gg/x/paved-dev/katana/"
# account_address = "0x68d2fe2d7b67ef40d9567f96fdc6925eb6c8a103ecde715a17c108afc3652e5"
# private_key = "0x69c450373bce35581f17586b7a4fdc9ad49ba30ea4340607df8f08864f36a8a"
Loading