-
Notifications
You must be signed in to change notification settings - Fork 11
Tutorial step 3- Uplift to latest ink! and Openbrush #15
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
Open
bobo-k2
wants to merge
3
commits into
tutorial/trait-step3
Choose a base branch
from
tutorial/trait-step3-uplift
base: tutorial/trait-step3
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,45 +1,51 @@ | ||
| #![cfg_attr(not(feature = "std"), no_std)] | ||
| #![feature(min_specialization)] | ||
| #![cfg_attr(not(feature = "std"), no_std, no_main)] | ||
|
|
||
| #[openbrush::implementation(PSP34, PSP34Enumerable, PSP34Metadata, PSP34Mintable, Ownable)] | ||
| #[openbrush::contract] | ||
| pub mod shiden34 { | ||
| use payable_mint_pkg::traits::payable_mint::*; | ||
| use openbrush::{ | ||
| contracts::ownable::*, | ||
| contracts::psp34::extensions::{enumerable::*, metadata::*}, | ||
| traits::{Storage, String}, | ||
| }; | ||
| use openbrush::traits::Storage; | ||
| use payable_mint_pkg::impls::payable_mint::*; | ||
|
|
||
| #[ink(storage)] | ||
| #[derive(Default, Storage)] | ||
| pub struct Shiden34 { | ||
| #[storage_field] | ||
| psp34: psp34::Data<enumerable::Balances>, | ||
| psp34: psp34::Data, | ||
| #[storage_field] | ||
| ownable: ownable::Data, | ||
| #[storage_field] | ||
| metadata: metadata::Data, | ||
| #[storage_field] | ||
| enumerable: enumerable::Data, | ||
| } | ||
|
|
||
| #[overrider(PSP34Mintable)] | ||
| #[openbrush::modifiers(only_owner)] | ||
| fn mint(&mut self, account: AccountId, id: Id) -> Result<(), PSP34Error> { | ||
| psp34::InternalImpl::_mint_to(self, account, id) | ||
| } | ||
|
|
||
| impl PSP34 for Shiden34 {} | ||
| impl Ownable for Shiden34 {} | ||
| impl PSP34Enumerable for Shiden34 {} | ||
| impl PSP34Metadata for Shiden34 {} | ||
| impl PayableMint for Shiden34 {} | ||
| impl payable_mint::PayableMintImpl for Shiden34 {} | ||
|
|
||
| impl Shiden34 { | ||
| #[ink(constructor)] | ||
| pub fn new() -> Self { | ||
| let mut instance = Self::default(); | ||
| instance._init_with_owner(instance.env().caller()); | ||
| let collection_id = instance.collection_id(); | ||
| instance._set_attribute( | ||
| let mut _instance = Self::default(); | ||
| ownable::Internal::_init_with_owner(&mut _instance, Self::env().caller()); | ||
| let collection_id = psp34::PSP34Impl::collection_id(&_instance); | ||
| metadata::Internal::_set_attribute( | ||
| &mut _instance, | ||
| collection_id.clone(), | ||
| String::from("name"), | ||
| String::from("Shiden34"), | ||
| ); | ||
| instance._set_attribute(collection_id, String::from("symbol"), String::from("SH34")); | ||
| instance | ||
| metadata::Internal::_set_attribute( | ||
| &mut _instance, | ||
| collection_id, | ||
| String::from("symbol"), | ||
| String::from("SH34"), | ||
| ); | ||
| _instance | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 +1 @@ | ||
| pub mod payable_mint; | ||
| pub mod payable_mint; |
This file contains hidden or 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,27 +1,17 @@ | ||
| pub use crate::traits::payable_mint::PayableMint; | ||
| use openbrush::traits::DefaultEnv; | ||
| use openbrush::{ | ||
| contracts::{ | ||
| psp34::extensions::{ | ||
| enumerable::*, | ||
| }, | ||
| }, | ||
| traits::{ | ||
| AccountId, | ||
| Storage, | ||
| String | ||
| }, | ||
| contracts::psp34::*, | ||
| traits::{AccountId, String}, | ||
| }; | ||
|
|
||
| impl<T> PayableMint for T | ||
| where | ||
| T: Storage<psp34::Data<enumerable::Balances>> | ||
| + psp34::extensions::metadata::PSP34Metadata | ||
| + psp34::Internal, | ||
| { | ||
| default fn mint(&mut self, account: AccountId, id: Id) -> Result<(), PSP34Error> { | ||
| #[openbrush::trait_definition] | ||
| pub trait PayableMintImpl: psp34::InternalImpl { | ||
| #[ink(message, payable)] | ||
| fn mint(&mut self, account: AccountId, id: Id) -> Result<(), PSP34Error> { | ||
| if Self::env().transferred_value() != 1_000_000_000_000_000_000 { | ||
| return Err(PSP34Error::Custom(String::from("BadMintValue"))) | ||
| return Err(PSP34Error::Custom(String::from("BadMintValue"))); | ||
| } | ||
| self._mint_to(account, id) | ||
|
|
||
| psp34::InternalImpl::_mint_to(self, account, id) | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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,5 +1,4 @@ | ||
| #![cfg_attr(not(feature = "std"), no_std)] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add |
||
| #![feature(min_specialization)] | ||
|
|
||
| pub mod impls; | ||
| pub mod traits; | ||
| pub mod traits; | ||
This file contains hidden or 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 +1 @@ | ||
| pub mod payable_mint; | ||
| pub mod payable_mint; |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove
_