-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
12 changed files
with
120 additions
and
105 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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ check-lint: clippy | |
# cd examples && cargo check --no-default-features -F casper-livenet | ||
|
||
install-cargo-odra: | ||
cargo install cargo-odra --locked | ||
git clone [email protected]:odradev/cargo-odra.git && cd cargo-odra && just install | ||
|
||
prepare-test-env: install-cargo-odra | ||
rustup target add wasm32-unknown-unknown | ||
|
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 |
---|---|---|
@@ -1,32 +1,32 @@ | ||
[[contracts]] | ||
name = "erc20" | ||
fqn = "odra_modules::erc20::Erc20" | ||
|
||
[[contracts]] | ||
name = "erc721_token" | ||
fqn = "odra_modules::erc721_token::Erc721Token" | ||
|
||
[[contracts]] | ||
name = "erc721_receiver" | ||
fqn = "odra_modules::erc721_receiver::Erc721Receiver" | ||
|
||
[[contracts]] | ||
name = "erc1155_token" | ||
fqn = "odra_modules::erc1155_token::Erc1155Token" | ||
|
||
[[contracts]] | ||
name = "erc1155_receiver" | ||
fqn = "odra_modules::erc1155_receiver::Erc1155Receiver" | ||
|
||
[[contracts]] | ||
name = "wrapped_native_token" | ||
fqn = "odra_modules::wrapped_native::WrappedNativeToken" | ||
|
||
[[contracts]] | ||
name = "ownable" | ||
fqn = "odra_modules::access::Ownable" | ||
|
||
[[contracts]] | ||
name = "ownable2_step" | ||
fqn = "odra_modules::access::Ownable2Step" | ||
|
||
# | ||
#[[contracts]] | ||
#name = "erc721_token" | ||
#fqn = "odra_modules::erc721_token::Erc721Token" | ||
# | ||
#[[contracts]] | ||
#name = "erc721_receiver" | ||
#fqn = "odra_modules::erc721_receiver::Erc721Receiver" | ||
# | ||
#[[contracts]] | ||
#name = "erc1155_token" | ||
#fqn = "odra_modules::erc1155_token::Erc1155Token" | ||
# | ||
#[[contracts]] | ||
#name = "erc1155_receiver" | ||
#fqn = "odra_modules::erc1155_receiver::Erc1155Receiver" | ||
# | ||
#[[contracts]] | ||
#name = "wrapped_native_token" | ||
#fqn = "odra_modules::wrapped_native::WrappedNativeToken" | ||
# | ||
#[[contracts]] | ||
#name = "ownable" | ||
#fqn = "odra_modules::access::Ownable" | ||
# | ||
#[[contracts]] | ||
#name = "ownable2_step" | ||
#fqn = "odra_modules::access::Ownable2Step" | ||
# |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#![cfg_attr(not(feature = "std"), no_std)] | ||
|
||
pub mod access; | ||
pub mod erc1155; | ||
pub mod erc1155_receiver; | ||
pub mod erc1155_token; | ||
// pub mod access; | ||
// pub mod erc1155; | ||
// pub mod erc1155_receiver; | ||
// pub mod erc1155_token; | ||
pub mod erc20; | ||
pub mod erc721; | ||
pub mod erc721_receiver; | ||
pub mod erc721_token; | ||
pub mod security; | ||
pub mod wrapped_native; | ||
// pub mod erc721; | ||
// pub mod erc721_receiver; | ||
// pub mod erc721_token; | ||
// pub mod security; | ||
// pub mod wrapped_native; |
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