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

Migrate to Cairo 2.1.0 #675

Merged
merged 35 commits into from
Aug 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
66f8e79
Migrate to Cairo 2.1.0
tarrencev Jul 24, 2023
ced0919
fix katana breaking changes
kariy Jul 26, 2023
038252f
Update set inline macro
tarrencev Jul 26, 2023
1aefa7b
InlineMacro test setup
tarrencev Jul 26, 2023
6372dc5
Implement get macro
tarrencev Jul 27, 2023
3470979
Merge remote-tracking branch 'origin/main' into inlinemacros
tarrencev Jul 27, 2023
b629e51
Remove deps logic
tarrencev Jul 27, 2023
4669f56
merge main
kariy Jul 31, 2023
e9bb25a
Merge branch 'main' into inlinemacros
kariy Jul 31, 2023
2be2d9c
Merge branch 'main' into inlinemacros
kariy Aug 1, 2023
8fd8fed
Format
tarrencev Jul 31, 2023
9c07734
Dont index entity components by default
tarrencev Jul 31, 2023
1567881
Implement new component keys pattern
tarrencev Jul 31, 2023
cf585ab
Typed keys trait
tarrencev Aug 1, 2023
464c721
Update get macro
tarrencev Aug 1, 2023
aa7f53e
Remove query
tarrencev Aug 2, 2023
2921115
Fix tests
tarrencev Aug 2, 2023
379165b
Update erc20 implementation
tarrencev Aug 2, 2023
db12fc5
Fix ci issues
tarrencev Aug 2, 2023
4c95a8f
Fix examples
tarrencev Aug 3, 2023
48433a8
Merge remote-tracking branch 'origin/main' into inlinemacros
tarrencev Aug 3, 2023
dab19ba
Format
tarrencev Aug 3, 2023
1796ffb
Merge remote-tracking branch 'origin/main' into inlinemacros
tarrencev Aug 3, 2023
c518512
Fix component value serialization
tarrencev Aug 3, 2023
10a3897
Update gen
tarrencev Aug 3, 2023
1966b7b
Merge remote-tracking branch 'origin/main' into inlinemacros
tarrencev Aug 3, 2023
1f6ed77
Additional cleanup
tarrencev Aug 3, 2023
05610ce
Avoid rebuild if artifacts already exist
tarrencev Aug 3, 2023
4bc0cf7
CI fixes (#708)
shramee Aug 3, 2023
c762d39
Inlinemacros (#709)
shramee Aug 4, 2023
ce6bdb2
Component class hash updated
shramee Aug 4, 2023
991e5b3
compute contract address for receipt
kariy Aug 4, 2023
66c9851
Remove partitions
tarrencev Aug 4, 2023
9d8a819
Merge remote-tracking branch 'origin/main' into inlinemacros
tarrencev Aug 5, 2023
eaeb700
Format
tarrencev Aug 5, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,6 @@ jobs:
- name: Build and start Katana node
run: |
cargo build --bin katana
nohup target/debug/katana --accounts 2 --account-class crates/katana/core/contracts/compiled/account_without_validation.json --allow-zero-max-fee &
nohup target/debug/katana --accounts 2 --account-class crates/katana/core/contracts/compiled/account_without_validation.json --disable-fee &
- name: Execute Hurl Scripts
run: hurl --test examples/rpc/**/*.hurl
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"cairo1.languageServerPath": "/workspaces/dojo/target/release/dojo-language-server",
"cairo1.enableLanguageServer": true
"cairo1.enableLanguageServer": true,
"rust-analyzer.linkedProjects": [
"./crates/dojo-lang/Cargo.toml"
]
}
Loading