-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disable erc components & use u128 instead of u256 for #[key]
- Loading branch information
Showing
13 changed files
with
138 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,13 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "0.6.0-alpha.13" | ||
version = "0.6.0" | ||
description = "Community-maintained libraries for Cairo" | ||
homepage = "https://github.com/dojoengine/origami" | ||
authors = ["[email protected]"] | ||
|
||
[workspace.dependencies] | ||
cubit = { git = "https://github.com/influenceth/cubit.git" } | ||
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.6.0-alpha.13" } | ||
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.6.0" } | ||
origami = { path = "crates" } | ||
token = { path = "token" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,6 @@ struct ERC1155Balance { | |
#[key] | ||
account: ContractAddress, | ||
#[key] | ||
id: u256, | ||
id: u128, | ||
amount: u256 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.