difftreelog
Merge remote-tracking branch 'origin/feature/erc-721-for-refungible' into develop
in: master
13 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6311,7 +6311,7 @@
[[package]]
name = "pallet-refungible"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"ethereum",
"evm-coder",
Makefilediffbeforeafterboth--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,9 @@
NONFUNGIBLE_EVM_STUBS=./pallets/nonfungible/src/stubs
NONFUNGIBLE_EVM_ABI=./tests/src/eth/nonFungibleAbi.json
-RENFUNGIBLE_EVM_ABI=./tests/src/eth/reFungibleAbi.json
-RENFUNGIBLE_TOKEN_EVM_ABI=./tests/src/eth/reFungibleTokenAbi.json
+REFUNGIBLE_EVM_STUBS=./pallets/refungible/src/stubs
+REFUNGIBLE_EVM_ABI=./tests/src/eth/reFungibleAbi.json
+REFUNGIBLE_TOKEN_EVM_ABI=./tests/src/eth/reFungibleTokenAbi.json
CONTRACT_HELPERS_STUBS=./pallets/evm-contract-helpers/src/stubs/
CONTRACT_HELPERS_ABI=./tests/src/eth/util/contractHelpersAbi.json
@@ -36,7 +37,7 @@
UniqueNFT.sol:
PACKAGE=pallet-nonfungible NAME=erc::gen_iface OUTPUT=$(TESTS_API)/$@ ./.maintain/scripts/generate_sol.sh
PACKAGE=pallet-nonfungible NAME=erc::gen_impl OUTPUT=$(NONFUNGIBLE_EVM_STUBS)/$@ ./.maintain/scripts/generate_sol.sh
-
+
UniqueRefungible.sol:
PACKAGE=pallet-refungible NAME=erc::gen_iface OUTPUT=$(TESTS_API)/$@ ./.maintain/scripts/generate_sol.sh
PACKAGE=pallet-refungible NAME=erc::gen_impl OUTPUT=$(REFUNGIBLE_EVM_STUBS)/$@ ./.maintain/scripts/generate_sol.sh
@@ -61,14 +62,14 @@
INPUT=$(NONFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(NONFUNGIBLE_EVM_STUBS)/UniqueNFT.raw ./.maintain/scripts/compile_stub.sh
INPUT=$(NONFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(NONFUNGIBLE_EVM_ABI) ./.maintain/scripts/generate_abi.sh
-UniqueRefungibleToken: UniqueRefungibleToken.sol
- INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_EVM_STUBS)/UniqueRefungibleToken.raw ./.maintain/scripts/compile_stub.sh
- INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(RENFUNGIBLE_TOKEN_EVM_ABI) ./.maintain/scripts/generate_abi.sh
-
UniqueRefungible: UniqueRefungible.sol
INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_EVM_STUBS)/UniqueRefungible.raw ./.maintain/scripts/compile_stub.sh
INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_EVM_ABI) ./.maintain/scripts/generate_abi.sh
+UniqueRefungibleToken: UniqueRefungibleToken.sol
+ INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_EVM_STUBS)/UniqueRefungibleToken.raw ./.maintain/scripts/compile_stub.sh
+ INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_TOKEN_EVM_ABI) ./.maintain/scripts/generate_abi.sh
+
ContractHelpers: ContractHelpers.sol
INPUT=$(CONTRACT_HELPERS_STUBS)/$< OUTPUT=$(CONTRACT_HELPERS_STUBS)/ContractHelpers.raw ./.maintain/scripts/compile_stub.sh
INPUT=$(CONTRACT_HELPERS_STUBS)/$< OUTPUT=$(CONTRACT_HELPERS_ABI) ./.maintain/scripts/generate_abi.sh
pallets/refungible/CHANGELOG.mddiffbeforeafterboth--- a/pallets/refungible/CHANGELOG.md
+++ b/pallets/refungible/CHANGELOG.md
@@ -2,8 +2,18 @@
All notable changes to this project will be documented in this file.
+## [v0.2.1] - 2022-07-27
+
+### New features
+
+Implementation of ERC-721 EVM API ([#452](https://github.com/UniqueNetwork/unique-chain/pull/452))
+
## [v0.2.0] - 2022-08-01
+
### Deprecated
+
+`const_data` field is removed
+
- `ItemData`
- `TokenData`
@@ -15,11 +25,13 @@
test(refungible-pallet): add tests for ERC-20 EVM API for RFT token pieces ([#413](https://github.com/UniqueNetwork/unique-chain/pull/413))
## [v0.1.1] - 2022-07-14
-### Added
+
+### Added features
+
- Support for properties for RFT collections and tokens.
### Other changes
- feat: RPC method `token_owners` returning 10 owners in no particular order.
-This was an internal request to improve the web interface and support fractionalization event.
+This was an internal request to improve the web interface and support fractionalization event.
pallets/refungible/Cargo.tomldiffbeforeafterboth--- a/pallets/refungible/Cargo.toml
+++ b/pallets/refungible/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-refungible"
-version = "0.2.0"
+version = "0.2.1"
license = "GPLv3"
edition = "2021"
pallets/refungible/src/erc.rsdiffbeforeafterboth--- a/pallets/refungible/src/erc.rs
+++ b/pallets/refungible/src/erc.rs
@@ -14,19 +14,797 @@
// You should have received a copy of the GNU General Public License
// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
+//! # Refungible Pallet EVM API for tokens
+//!
+//! Provides ERC-721 standart support implementation and EVM API for unique extensions for Refungible Pallet.
+//! Method implementations are mostly doing parameter conversion and calling Refungible Pallet methods.
+
extern crate alloc;
-use evm_coder::{generate_stubgen, solidity_interface, types::*};
-use pallet_common::{CollectionHandle, erc::CollectionCall, erc::CommonEvmHandler};
+use alloc::string::ToString;
+use core::{
+ char::{REPLACEMENT_CHARACTER, decode_utf16},
+ convert::TryInto,
+};
+use evm_coder::{ToLog, execution::*, generate_stubgen, solidity, solidity_interface, types::*, weight};
+use frame_support::{BoundedBTreeMap, BoundedVec};
+use pallet_common::{
+ CollectionHandle, CollectionPropertyPermissions,
+ erc::{
+ CommonEvmHandler, CollectionCall,
+ static_property::{key, value as property_value},
+ },
+};
+use pallet_evm::{account::CrossAccountId, PrecompileHandle};
+use pallet_evm_coder_substrate::{call, dispatch_to_evm};
+use pallet_structure::{SelfWeightOf as StructureWeight, weights::WeightInfo as _};
+use sp_core::H160;
+use sp_std::{collections::btree_map::BTreeMap, vec::Vec, vec};
+use up_data_structs::{
+ CollectionId, CollectionPropertiesVec, Property, PropertyKey, PropertyKeyPermission,
+ PropertyPermission, TokenId,
+};
+
+use crate::{
+ AccountBalance, Balance, Config, CreateItemData, Pallet, RefungibleHandle, SelfWeightOf,
+ TokenProperties, TokensMinted, TotalSupply, weights::WeightInfo,
+};
+
+pub const ADDRESS_FOR_PARTIALLY_OWNED_TOKENS: H160 = H160::repeat_byte(0xff);
+
+/// @title A contract that allows to set and delete token properties and change token property permissions.
+#[solidity_interface(name = "TokenProperties")]
+impl<T: Config> RefungibleHandle<T> {
+ /// @notice Set permissions for token property.
+ /// @dev Throws error if `msg.sender` is not admin or owner of the collection.
+ /// @param key Property key.
+ /// @param is_mutable Permission to mutate property.
+ /// @param collection_admin Permission to mutate property by collection admin if property is mutable.
+ /// @param token_owner Permission to mutate property by token owner if property is mutable.
+ fn set_token_property_permission(
+ &mut self,
+ caller: caller,
+ key: string,
+ is_mutable: bool,
+ collection_admin: bool,
+ token_owner: bool,
+ ) -> Result<()> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ <Pallet<T>>::set_token_property_permissions(
+ self,
+ &caller,
+ vec![PropertyKeyPermission {
+ key: <Vec<u8>>::from(key)
+ .try_into()
+ .map_err(|_| "too long key")?,
+ permission: PropertyPermission {
+ mutable: is_mutable,
+ collection_admin,
+ token_owner,
+ },
+ }],
+ )
+ .map_err(dispatch_to_evm::<T>)
+ }
+
+ /// @notice Set token property value.
+ /// @dev Throws error if `msg.sender` has no permission to edit the property.
+ /// @param tokenId ID of the token.
+ /// @param key Property key.
+ /// @param value Property value.
+ fn set_property(
+ &mut self,
+ caller: caller,
+ token_id: uint256,
+ key: string,
+ value: bytes,
+ ) -> Result<()> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;
+ let key = <Vec<u8>>::from(key)
+ .try_into()
+ .map_err(|_| "key too long")?;
+ let value = value.try_into().map_err(|_| "value too long")?;
+
+ let nesting_budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ <Pallet<T>>::set_token_property(
+ self,
+ &caller,
+ TokenId(token_id),
+ Property { key, value },
+ &nesting_budget,
+ )
+ .map_err(dispatch_to_evm::<T>)
+ }
+
+ /// @notice Delete token property value.
+ /// @dev Throws error if `msg.sender` has no permission to edit the property.
+ /// @param tokenId ID of the token.
+ /// @param key Property key.
+ fn delete_property(&mut self, token_id: uint256, caller: caller, key: string) -> Result<()> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;
+ let key = <Vec<u8>>::from(key)
+ .try_into()
+ .map_err(|_| "key too long")?;
+
+ let nesting_budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ <Pallet<T>>::delete_token_property(self, &caller, TokenId(token_id), key, &nesting_budget)
+ .map_err(dispatch_to_evm::<T>)
+ }
+
+ /// @notice Get token property value.
+ /// @dev Throws error if key not found
+ /// @param tokenId ID of the token.
+ /// @param key Property key.
+ /// @return Property value bytes
+ fn property(&self, token_id: uint256, key: string) -> Result<bytes> {
+ let token_id: u32 = token_id.try_into().map_err(|_| "token id overflow")?;
+ let key = <Vec<u8>>::from(key)
+ .try_into()
+ .map_err(|_| "key too long")?;
+
+ let props = <TokenProperties<T>>::get((self.id, token_id));
+ let prop = props.get(&key).ok_or("key not found")?;
+
+ Ok(prop.to_vec())
+ }
+}
+
+#[derive(ToLog)]
+pub enum ERC721Events {
+ /// @dev This event emits when NFTs are created (`from` == 0) and destroyed
+ /// (`to` == 0). Exception: during contract creation, any number of RFTs
+ /// may be created and assigned without emitting Transfer.
+ Transfer {
+ #[indexed]
+ from: address,
+ #[indexed]
+ to: address,
+ #[indexed]
+ token_id: uint256,
+ },
+ /// @dev Not supported
+ Approval {
+ #[indexed]
+ owner: address,
+ #[indexed]
+ approved: address,
+ #[indexed]
+ token_id: uint256,
+ },
+ /// @dev Not supported
+ #[allow(dead_code)]
+ ApprovalForAll {
+ #[indexed]
+ owner: address,
+ #[indexed]
+ operator: address,
+ approved: bool,
+ },
+}
+
+#[derive(ToLog)]
+pub enum ERC721MintableEvents {
+ /// @dev Not supported
+ #[allow(dead_code)]
+ MintingFinished {},
+}
+
+#[solidity_interface(name = "ERC721Metadata")]
+impl<T: Config> RefungibleHandle<T> {
+ /// @notice A descriptive name for a collection of RFTs in this contract
+ fn name(&self) -> Result<string> {
+ Ok(decode_utf16(self.name.iter().copied())
+ .map(|r| r.unwrap_or(REPLACEMENT_CHARACTER))
+ .collect::<string>())
+ }
+
+ /// @notice An abbreviated name for RFTs in this contract
+ fn symbol(&self) -> Result<string> {
+ Ok(string::from_utf8_lossy(&self.token_prefix).into())
+ }
+
+ /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
+ ///
+ /// @dev If the token has a `url` property and it is not empty, it is returned.
+ /// Else If the collection does not have a property with key `schemaName` or its value is not equal to `ERC721Metadata`, it return an error `tokenURI not set`.
+ /// If the collection property `baseURI` is empty or absent, return "" (empty string)
+ /// otherwise, if token property `suffix` present and is non-empty, return concatenation of baseURI and suffix
+ /// otherwise, return concatenation of `baseURI` and stringified token id (decimal stringifying, without paddings).
+ ///
+ /// @return token's const_metadata
+ #[solidity(rename_selector = "tokenURI")]
+ fn token_uri(&self, token_id: uint256) -> Result<string> {
+ let token_id_u32: u32 = token_id.try_into().map_err(|_| "token id overflow")?;
+
+ if let Ok(url) = get_token_property(self, token_id_u32, &key::url()) {
+ if !url.is_empty() {
+ return Ok(url);
+ }
+ } else if !is_erc721_metadata_compatible::<T>(self.id) {
+ return Err("tokenURI not set".into());
+ }
+
+ if let Some(base_uri) =
+ pallet_common::Pallet::<T>::get_collection_property(self.id, &key::base_uri())
+ {
+ if !base_uri.is_empty() {
+ let base_uri = string::from_utf8(base_uri.into_inner()).map_err(|e| {
+ Error::Revert(alloc::format!(
+ "Can not convert value \"baseURI\" to string with error \"{}\"",
+ e
+ ))
+ })?;
+ if let Ok(suffix) = get_token_property(self, token_id_u32, &key::suffix()) {
+ if !suffix.is_empty() {
+ return Ok(base_uri + suffix.as_str());
+ }
+ }
+
+ return Ok(base_uri + token_id.to_string().as_str());
+ }
+ }
+
+ Ok("".into())
+ }
+}
+
+/// @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
+/// @dev See https://eips.ethereum.org/EIPS/eip-721
+#[solidity_interface(name = "ERC721Enumerable")]
+impl<T: Config> RefungibleHandle<T> {
+ /// @notice Enumerate valid RFTs
+ /// @param index A counter less than `totalSupply()`
+ /// @return The token identifier for the `index`th NFT,
+ /// (sort order not specified)
+ fn token_by_index(&self, index: uint256) -> Result<uint256> {
+ Ok(index)
+ }
+
+ /// Not implemented
+ fn token_of_owner_by_index(&self, _owner: address, _index: uint256) -> Result<uint256> {
+ // TODO: Not implemetable
+ Err("not implemented".into())
+ }
+
+ /// @notice Count RFTs tracked by this contract
+ /// @return A count of valid RFTs tracked by this contract, where each one of
+ /// them has an assigned and queryable owner not equal to the zero address
+ fn total_supply(&self) -> Result<uint256> {
+ self.consume_store_reads(1)?;
+ Ok(<Pallet<T>>::total_supply(self).into())
+ }
+}
+
+/// @title ERC-721 Non-Fungible Token Standard
+/// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
+#[solidity_interface(name = "ERC721", events(ERC721Events))]
+impl<T: Config> RefungibleHandle<T> {
+ /// @notice Count all RFTs assigned to an owner
+ /// @dev RFTs assigned to the zero address are considered invalid, and this
+ /// function throws for queries about the zero address.
+ /// @param owner An address for whom to query the balance
+ /// @return The number of RFTs owned by `owner`, possibly zero
+ fn balance_of(&self, owner: address) -> Result<uint256> {
+ self.consume_store_reads(1)?;
+ let owner = T::CrossAccountId::from_eth(owner);
+ let balance = <AccountBalance<T>>::get((self.id, owner));
+ Ok(balance.into())
+ }
+
+ /// @notice Find the owner of an RFT
+ /// @dev RFTs assigned to zero address are considered invalid, and queries
+ /// about them do throw.
+ /// Returns special 0xffffffffffffffffffffffffffffffffffffffff address for
+ /// the tokens that are partially owned.
+ /// @param tokenId The identifier for an RFT
+ /// @return The address of the owner of the RFT
+ fn owner_of(&self, token_id: uint256) -> Result<address> {
+ self.consume_store_reads(2)?;
+ let token = token_id.try_into()?;
+ let owner = <Pallet<T>>::token_owner(self.id, token);
+ Ok(owner
+ .map(|address| *address.as_eth())
+ .unwrap_or_else(|| ADDRESS_FOR_PARTIALLY_OWNED_TOKENS))
+ }
+
+ /// @dev Not implemented
+ fn safe_transfer_from_with_data(
+ &mut self,
+ _from: address,
+ _to: address,
+ _token_id: uint256,
+ _data: bytes,
+ _value: value,
+ ) -> Result<void> {
+ // TODO: Not implemetable
+ Err("not implemented".into())
+ }
+
+ /// @dev Not implemented
+ fn safe_transfer_from(
+ &mut self,
+ _from: address,
+ _to: address,
+ _token_id: uint256,
+ _value: value,
+ ) -> Result<void> {
+ // TODO: Not implemetable
+ Err("not implemented".into())
+ }
+
+ /// @notice Transfer ownership of an RFT -- THE CALLER IS RESPONSIBLE
+ /// TO CONFIRM THAT `to` IS CAPABLE OF RECEIVING NFTS OR ELSE
+ /// THEY MAY BE PERMANENTLY LOST
+ /// @dev Throws unless `msg.sender` is the current owner or an authorized
+ /// operator for this RFT. Throws if `from` is not the current owner. Throws
+ /// if `to` is the zero address. Throws if `tokenId` is not a valid RFT.
+ /// Throws if RFT pieces have multiple owners.
+ /// @param from The current owner of the NFT
+ /// @param to The new owner
+ /// @param tokenId The NFT to transfer
+ /// @param _value Not used for an NFT
+ #[weight(<SelfWeightOf<T>>::transfer_from_creating_removing())]
+ fn transfer_from(
+ &mut self,
+ caller: caller,
+ from: address,
+ to: address,
+ token_id: uint256,
+ _value: value,
+ ) -> Result<void> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let from = T::CrossAccountId::from_eth(from);
+ let to = T::CrossAccountId::from_eth(to);
+ let token = token_id.try_into()?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ let balance = balance(&self, token, &from)?;
+ ensure_single_owner(&self, token, balance)?;
+
+ <Pallet<T>>::transfer_from(self, &caller, &from, &to, token, balance, &budget)
+ .map_err(dispatch_to_evm::<T>)?;
+
+ Ok(())
+ }
+
+ /// @dev Not implemented
+ fn approve(
+ &mut self,
+ _caller: caller,
+ _approved: address,
+ _token_id: uint256,
+ _value: value,
+ ) -> Result<void> {
+ Err("not implemented".into())
+ }
+
+ /// @dev Not implemented
+ fn set_approval_for_all(
+ &mut self,
+ _caller: caller,
+ _operator: address,
+ _approved: bool,
+ ) -> Result<void> {
+ // TODO: Not implemetable
+ Err("not implemented".into())
+ }
+
+ /// @dev Not implemented
+ fn get_approved(&self, _token_id: uint256) -> Result<address> {
+ // TODO: Not implemetable
+ Err("not implemented".into())
+ }
+
+ /// @dev Not implemented
+ fn is_approved_for_all(&self, _owner: address, _operator: address) -> Result<address> {
+ // TODO: Not implemetable
+ Err("not implemented".into())
+ }
+}
+
+/// Returns amount of pieces of `token` that `owner` have
+fn balance<T: Config>(
+ collection: &RefungibleHandle<T>,
+ token: TokenId,
+ owner: &T::CrossAccountId,
+) -> Result<u128> {
+ collection.consume_store_reads(1)?;
+ let balance = <Balance<T>>::get((collection.id, token, &owner));
+ Ok(balance)
+}
+
+/// Throws if `owner_balance` is lower than total amount of `token` pieces
+fn ensure_single_owner<T: Config>(
+ collection: &RefungibleHandle<T>,
+ token: TokenId,
+ owner_balance: u128,
+) -> Result<()> {
+ collection.consume_store_reads(1)?;
+ let total_supply = <TotalSupply<T>>::get((collection.id, token));
+ if total_supply != owner_balance {
+ return Err("token has multiple owners".into());
+ }
+ Ok(())
+}
+
+/// @title ERC721 Token that can be irreversibly burned (destroyed).
+#[solidity_interface(name = "ERC721Burnable")]
+impl<T: Config> RefungibleHandle<T> {
+ /// @notice Burns a specific ERC721 token.
+ /// @dev Throws unless `msg.sender` is the current RFT owner, or an authorized
+ /// operator of the current owner.
+ /// @param tokenId The RFT to approve
+ #[weight(<SelfWeightOf<T>>::burn_item_fully())]
+ fn burn(&mut self, caller: caller, token_id: uint256) -> Result<void> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let token = token_id.try_into()?;
+
+ let balance = balance(&self, token, &caller)?;
+ ensure_single_owner(&self, token, balance)?;
+
+ <Pallet<T>>::burn(self, &caller, token, balance).map_err(dispatch_to_evm::<T>)?;
+ Ok(())
+ }
+}
+
+/// @title ERC721 minting logic.
+#[solidity_interface(name = "ERC721Mintable", events(ERC721MintableEvents))]
+impl<T: Config> RefungibleHandle<T> {
+ fn minting_finished(&self) -> Result<bool> {
+ Ok(false)
+ }
+
+ /// @notice Function to mint token.
+ /// @dev `tokenId` should be obtained with `nextTokenId` method,
+ /// unlike standard, you can't specify it manually
+ /// @param to The new owner
+ /// @param tokenId ID of the minted RFT
+ #[weight(<SelfWeightOf<T>>::create_item())]
+ fn mint(&mut self, caller: caller, to: address, token_id: uint256) -> Result<bool> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let to = T::CrossAccountId::from_eth(to);
+ let token_id: u32 = token_id.try_into()?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ if <TokensMinted<T>>::get(self.id)
+ .checked_add(1)
+ .ok_or("item id overflow")?
+ != token_id
+ {
+ return Err("item id should be next".into());
+ }
+
+ let users = [(to.clone(), 1)]
+ .into_iter()
+ .collect::<BTreeMap<_, _>>()
+ .try_into()
+ .unwrap();
+ <Pallet<T>>::create_item(
+ self,
+ &caller,
+ CreateItemData::<T> {
+ users,
+ properties: CollectionPropertiesVec::default(),
+ },
+ &budget,
+ )
+ .map_err(dispatch_to_evm::<T>)?;
+
+ Ok(true)
+ }
+
+ /// @notice Function to mint token with the given tokenUri.
+ /// @dev `tokenId` should be obtained with `nextTokenId` method,
+ /// unlike standard, you can't specify it manually
+ /// @param to The new owner
+ /// @param tokenId ID of the minted RFT
+ /// @param tokenUri Token URI that would be stored in the RFT properties
+ #[solidity(rename_selector = "mintWithTokenURI")]
+ #[weight(<SelfWeightOf<T>>::create_item())]
+ fn mint_with_token_uri(
+ &mut self,
+ caller: caller,
+ to: address,
+ token_id: uint256,
+ token_uri: string,
+ ) -> Result<bool> {
+ let key = key::url();
+ let permission = get_token_permission::<T>(self.id, &key)?;
+ if !permission.collection_admin {
+ return Err("Operation is not allowed".into());
+ }
+
+ let caller = T::CrossAccountId::from_eth(caller);
+ let to = T::CrossAccountId::from_eth(to);
+ let token_id: u32 = token_id.try_into().map_err(|_| "amount overflow")?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
-use pallet_evm::PrecompileHandle;
-use pallet_evm_coder_substrate::call;
+ if <TokensMinted<T>>::get(self.id)
+ .checked_add(1)
+ .ok_or("item id overflow")?
+ != token_id
+ {
+ return Err("item id should be next".into());
+ }
-use crate::{Config, RefungibleHandle};
+ let mut properties = CollectionPropertiesVec::default();
+ properties
+ .try_push(Property {
+ key,
+ value: token_uri
+ .into_bytes()
+ .try_into()
+ .map_err(|_| "token uri is too long")?,
+ })
+ .map_err(|e| Error::Revert(alloc::format!("Can't add property: {:?}", e)))?;
+ let users = [(to.clone(), 1)]
+ .into_iter()
+ .collect::<BTreeMap<_, _>>()
+ .try_into()
+ .unwrap();
+ <Pallet<T>>::create_item(
+ self,
+ &caller,
+ CreateItemData::<T> {
+ users,
+ properties,
+ },
+ &budget,
+ )
+ .map_err(dispatch_to_evm::<T>)?;
+ Ok(true)
+ }
+
+ /// @dev Not implemented
+ fn finish_minting(&mut self, _caller: caller) -> Result<bool> {
+ Err("not implementable".into())
+ }
+}
+
+fn get_token_property<T: Config>(
+ collection: &CollectionHandle<T>,
+ token_id: u32,
+ key: &up_data_structs::PropertyKey,
+) -> Result<string> {
+ collection.consume_store_reads(1)?;
+ let properties = <TokenProperties<T>>::try_get((collection.id, token_id))
+ .map_err(|_| Error::Revert("Token properties not found".into()))?;
+ if let Some(property) = properties.get(key) {
+ return Ok(string::from_utf8_lossy(property).into());
+ }
+
+ Err("Property tokenURI not found".into())
+}
+
+fn is_erc721_metadata_compatible<T: Config>(collection_id: CollectionId) -> bool {
+ if let Some(shema_name) =
+ pallet_common::Pallet::<T>::get_collection_property(collection_id, &key::schema_name())
+ {
+ let shema_name = shema_name.into_inner();
+ shema_name == property_value::ERC721_METADATA
+ } else {
+ false
+ }
+}
+
+fn get_token_permission<T: Config>(
+ collection_id: CollectionId,
+ key: &PropertyKey,
+) -> Result<PropertyPermission> {
+ let token_property_permissions = CollectionPropertyPermissions::<T>::try_get(collection_id)
+ .map_err(|_| Error::Revert("No permissions for collection".into()))?;
+ let a = token_property_permissions
+ .get(key)
+ .map(Clone::clone)
+ .ok_or_else(|| {
+ let key = string::from_utf8(key.clone().into_inner()).unwrap_or_default();
+ Error::Revert(alloc::format!("No permission for key {}", key))
+ })?;
+ Ok(a)
+}
+
+/// @title Unique extensions for ERC721.
+#[solidity_interface(name = "ERC721UniqueExtensions")]
+impl<T: Config> RefungibleHandle<T> {
+ /// @notice Transfer ownership of an RFT
+ /// @dev Throws unless `msg.sender` is the current owner. Throws if `to`
+ /// is the zero address. Throws if `tokenId` is not a valid RFT.
+ /// Throws if RFT pieces have multiple owners.
+ /// @param to The new owner
+ /// @param tokenId The RFT to transfer
+ /// @param _value Not used for an RFT
+ #[weight(<SelfWeightOf<T>>::transfer_creating_removing())]
+ fn transfer(
+ &mut self,
+ caller: caller,
+ to: address,
+ token_id: uint256,
+ _value: value,
+ ) -> Result<void> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let to = T::CrossAccountId::from_eth(to);
+ let token = token_id.try_into()?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ let balance = balance(&self, token, &caller)?;
+ ensure_single_owner(&self, token, balance)?;
+
+ <Pallet<T>>::transfer(self, &caller, &to, token, balance, &budget)
+ .map_err(dispatch_to_evm::<T>)?;
+ Ok(())
+ }
+
+ /// @notice Burns a specific ERC721 token.
+ /// @dev Throws unless `msg.sender` is the current owner or an authorized
+ /// operator for this RFT. Throws if `from` is not the current owner. Throws
+ /// if `to` is the zero address. Throws if `tokenId` is not a valid RFT.
+ /// Throws if RFT pieces have multiple owners.
+ /// @param from The current owner of the RFT
+ /// @param tokenId The RFT to transfer
+ /// @param _value Not used for an RFT
+ #[weight(<SelfWeightOf<T>>::burn_from())]
+ fn burn_from(
+ &mut self,
+ caller: caller,
+ from: address,
+ token_id: uint256,
+ _value: value,
+ ) -> Result<void> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let from = T::CrossAccountId::from_eth(from);
+ let token = token_id.try_into()?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ let balance = balance(&self, token, &caller)?;
+ ensure_single_owner(&self, token, balance)?;
+
+ <Pallet<T>>::burn_from(self, &caller, &from, token, balance, &budget)
+ .map_err(dispatch_to_evm::<T>)?;
+ Ok(())
+ }
+
+ /// @notice Returns next free RFT ID.
+ fn next_token_id(&self) -> Result<uint256> {
+ self.consume_store_reads(1)?;
+ Ok(<TokensMinted<T>>::get(self.id)
+ .checked_add(1)
+ .ok_or("item id overflow")?
+ .into())
+ }
+
+ /// @notice Function to mint multiple tokens.
+ /// @dev `tokenIds` should be an array of consecutive numbers and first number
+ /// should be obtained with `nextTokenId` method
+ /// @param to The new owner
+ /// @param tokenIds IDs of the minted RFTs
+ #[weight(<SelfWeightOf<T>>::create_multiple_items(token_ids.len() as u32))]
+ fn mint_bulk(&mut self, caller: caller, to: address, token_ids: Vec<uint256>) -> Result<bool> {
+ let caller = T::CrossAccountId::from_eth(caller);
+ let to = T::CrossAccountId::from_eth(to);
+ let mut expected_index = <TokensMinted<T>>::get(self.id)
+ .checked_add(1)
+ .ok_or("item id overflow")?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ let total_tokens = token_ids.len();
+ for id in token_ids.into_iter() {
+ let id: u32 = id.try_into().map_err(|_| "token id overflow")?;
+ if id != expected_index {
+ return Err("item id should be next".into());
+ }
+ expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;
+ }
+ let users = [(to.clone(), 1)]
+ .into_iter()
+ .collect::<BTreeMap<_, _>>()
+ .try_into()
+ .unwrap();
+ let create_item_data = CreateItemData::<T> {
+ users,
+ properties: CollectionPropertiesVec::default(),
+ };
+ let data = (0..total_tokens)
+ .map(|_| create_item_data.clone())
+ .collect();
+
+ <Pallet<T>>::create_multiple_items(self, &caller, data, &budget)
+ .map_err(dispatch_to_evm::<T>)?;
+ Ok(true)
+ }
+
+ /// @notice Function to mint multiple tokens with the given tokenUris.
+ /// @dev `tokenIds` is array of pairs of token ID and token URI. Token IDs should be consecutive
+ /// numbers and first number should be obtained with `nextTokenId` method
+ /// @param to The new owner
+ /// @param tokens array of pairs of token ID and token URI for minted tokens
+ #[solidity(rename_selector = "mintBulkWithTokenURI")]
+ #[weight(<SelfWeightOf<T>>::create_multiple_items(tokens.len() as u32))]
+ fn mint_bulk_with_token_uri(
+ &mut self,
+ caller: caller,
+ to: address,
+ tokens: Vec<(uint256, string)>,
+ ) -> Result<bool> {
+ let key = key::url();
+ let caller = T::CrossAccountId::from_eth(caller);
+ let to = T::CrossAccountId::from_eth(to);
+ let mut expected_index = <TokensMinted<T>>::get(self.id)
+ .checked_add(1)
+ .ok_or("item id overflow")?;
+ let budget = self
+ .recorder
+ .weight_calls_budget(<StructureWeight<T>>::find_parent());
+
+ let mut data = Vec::with_capacity(tokens.len());
+ let users: BoundedBTreeMap<_, _, _> = [(to.clone(), 1)]
+ .into_iter()
+ .collect::<BTreeMap<_, _>>()
+ .try_into()
+ .unwrap();
+ for (id, token_uri) in tokens {
+ let id: u32 = id.try_into().map_err(|_| "token id overflow")?;
+ if id != expected_index {
+ return Err("item id should be next".into());
+ }
+ expected_index = expected_index.checked_add(1).ok_or("item id overflow")?;
+
+ let mut properties = CollectionPropertiesVec::default();
+ properties
+ .try_push(Property {
+ key: key.clone(),
+ value: token_uri
+ .into_bytes()
+ .try_into()
+ .map_err(|_| "token uri is too long")?,
+ })
+ .map_err(|e| Error::Revert(alloc::format!("Can't add property: {:?}", e)))?;
+
+ let create_item_data = CreateItemData::<T> {
+ users: users.clone(),
+ properties,
+ };
+ data.push(create_item_data);
+ }
+
+ <Pallet<T>>::create_multiple_items(self, &caller, data, &budget)
+ .map_err(dispatch_to_evm::<T>)?;
+ Ok(true)
+ }
+}
+
#[solidity_interface(
name = "UniqueRefungible",
- is(via("CollectionHandle<T>", common_mut, Collection),)
+ is(
+ ERC721,
+ ERC721Metadata,
+ ERC721Enumerable,
+ ERC721UniqueExtensions,
+ ERC721Mintable,
+ ERC721Burnable,
+ via("CollectionHandle<T>", common_mut, Collection),
+ TokenProperties,
+ )
)]
impl<T: Config> RefungibleHandle<T> where T::AccountId: From<[u8; 32]> {}
pallets/refungible/src/lib.rsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617//! # Refungible Pallet18//!19//! The Refungible pallet provides functionality for handling refungible collections and tokens.20//!21//! - [`Config`]22//! - [`RefungibleHandle`]23//! - [`Pallet`]24//! - [`CommonWeights`](common::CommonWeights)25//!26//! ## Overview27//!28//! The Refungible pallet provides functions for:29//!30//! - RFT collection creation and removal31//! - Minting and burning of RFT tokens32//! - Partition and repartition of RFT tokens33//! - Retrieving number of pieces of RFT token34//! - Retrieving account balances35//! - Transfering RFT token pieces36//! - Burning RFT token pieces37//! - Setting and checking allowance for RFT tokens38//!39//! ### Terminology40//!41//! - **RFT token:** Non fungible token that was partitioned to pieces. If an account owns all42//! of the RFT token pieces than it owns the RFT token and can repartition it.43//!44//! - **RFT Collection:** A collection of RFT tokens. All RFT tokens are part of a collection.45//! Each collection has its own settings and set of permissions.46//!47//! - **RFT token piece:** A fungible part of an RFT token.48//!49//! - **Balance:** RFT token pieces owned by an account50//!51//! - **Allowance:** Maximum number of RFT token pieces that one account is allowed to52//! transfer from the balance of another account53//!54//! - **Burning:** The process of “deleting” a token from a collection or removing token pieces from55//! an account balance.56//!57//! ### Implementations58//!59//! The Refungible pallet provides implementations for the following traits. If these traits provide60//! the functionality that you need, then you can avoid coupling with the Refungible pallet.61//!62//! - [`CommonWeightInfo`](pallet_common::CommonWeightInfo): Functions for retrieval of transaction weight63//! - [`CommonCollectionOperations`](pallet_common::CommonCollectionOperations): Functions for dealing64//! with collections65//! - [`RefungibleExtensions`](pallet_common::RefungibleExtensions): Functions specific for refungible66//! collection67//!68//! ## Interface69//!70//! ### Dispatchable Functions71//!72//! - `init_collection` - Create RFT collection. RFT collection can be configured to allow or deny access for73//! some accounts.74//! - `destroy_collection` - Destroy exising RFT collection. There should be no tokens in the collection.75//! - `burn` - Burn some amount of RFT token pieces owned by account. Burns the RFT token if no pieces left.76//! - `transfer` - Transfer some amount of RFT token pieces. Transfers should be enabled for RFT collection.77//! Nests the RFT token if RFT token pieces are sent to another token.78//! - `create_item` - Mint RFT token in collection. Sender should have permission to mint tokens.79//! - `set_allowance` - Set allowance for another account to transfer balance from sender's account.80//! - `repartition` - Repartition token to selected number of pieces. Sender should own all existing pieces.81//!82//! ## Assumptions83//!84//! * Total number of pieces for one token shouldn't exceed `up_data_structs::MAX_REFUNGIBLE_PIECES`.85//! * Total number of tokens of all types shouldn't be greater than `up_data_structs::MAX_TOKEN_PREFIX_LENGTH`.86//! * Sender should be in collection's allow list to perform operations on tokens.8788#![cfg_attr(not(feature = "std"), no_std)]8990use crate::erc_token::ERC20Events;9192use codec::{Encode, Decode, MaxEncodedLen};93use core::ops::Deref;94use evm_coder::ToLog;95use frame_support::{BoundedVec, ensure, fail, storage::with_transaction, transactional};96use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};97use pallet_evm_coder_substrate::WithRecorder;98use pallet_common::{99 CommonCollectionOperations, Error as CommonError, Event as CommonEvent, Pallet as PalletCommon,100};101use pallet_structure::Pallet as PalletStructure;102use scale_info::TypeInfo;103use sp_core::H160;104use sp_runtime::{ArithmeticError, DispatchError, DispatchResult, TransactionOutcome};105use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};106use up_data_structs::{107 AccessMode, budget::Budget, CollectionId, CreateCollectionData, CreateRefungibleExData,108 CustomDataLimit, mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, TokenId, Property,109 PropertyKey, PropertyKeyPermission, PropertyPermission, PropertyScope, PropertyValue,110 TrySetProperty,111};112113pub use pallet::*;114#[cfg(feature = "runtime-benchmarks")]115pub mod benchmarking;116pub mod common;117pub mod erc;118pub mod erc_token;119pub mod weights;120pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;121122/// Token data, stored independently from other data used to describe it123/// for the convenience of database access. Notably contains the token metadata.124#[struct_versioning::versioned(version = 2, upper)]125#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]126#[deprecated(since = "0.2.0", note = "ItemData is no more contains usefull data")]127pub struct ItemData {128 pub const_data: BoundedVec<u8, CustomDataLimit>,129130 #[version(..2)]131 pub variable_data: BoundedVec<u8, CustomDataLimit>,132}133134#[frame_support::pallet]135pub mod pallet {136 use super::*;137 use frame_support::{138 Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key,139 traits::StorageVersion,140 };141 use frame_system::pallet_prelude::*;142 use up_data_structs::{CollectionId, TokenId};143 use super::weights::WeightInfo;144145 #[pallet::error]146 pub enum Error<T> {147 /// Not Refungible item data used to mint in Refungible collection.148 NotRefungibleDataUsedToMintFungibleCollectionToken,149 /// Maximum refungibility exceeded.150 WrongRefungiblePieces,151 /// Refungible token can't be repartitioned by user who isn't owns all pieces.152 RepartitionWhileNotOwningAllPieces,153 /// Refungible token can't nest other tokens.154 RefungibleDisallowsNesting,155 /// Setting item properties is not allowed.156 SettingPropertiesNotAllowed,157 }158159 #[pallet::config]160 pub trait Config:161 frame_system::Config + pallet_common::Config + pallet_structure::Config162 {163 type WeightInfo: WeightInfo;164 }165166 const STORAGE_VERSION: StorageVersion = StorageVersion::new(2);167168 #[pallet::pallet]169 #[pallet::storage_version(STORAGE_VERSION)]170 #[pallet::generate_store(pub(super) trait Store)]171 pub struct Pallet<T>(_);172173 /// Total amount of minted tokens in a collection.174 #[pallet::storage]175 pub type TokensMinted<T: Config> =176 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;177178 /// Amount of tokens burnt in a collection.179 #[pallet::storage]180 pub type TokensBurnt<T: Config> =181 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;182183 /// Token data, used to partially describe a token.184 // TODO: remove185 #[pallet::storage]186 #[deprecated(since = "0.2.0", note = "ItemData is no more contains usefull data")]187 pub type TokenData<T: Config> = StorageNMap<188 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),189 Value = ItemData,190 QueryKind = ValueQuery,191 >;192193 /// Amount of pieces a refungible token is split into.194 #[pallet::storage]195 #[pallet::getter(fn token_properties)]196 pub type TokenProperties<T: Config> = StorageNMap<197 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),198 Value = up_data_structs::Properties,199 QueryKind = ValueQuery,200 OnEmpty = up_data_structs::TokenProperties,201 >;202203 /// Total amount of pieces for token204 #[pallet::storage]205 pub type TotalSupply<T: Config> = StorageNMap<206 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),207 Value = u128,208 QueryKind = ValueQuery,209 >;210211 /// Used to enumerate tokens owned by account.212 #[pallet::storage]213 pub type Owned<T: Config> = StorageNMap<214 Key = (215 Key<Twox64Concat, CollectionId>,216 Key<Blake2_128Concat, T::CrossAccountId>,217 Key<Twox64Concat, TokenId>,218 ),219 Value = bool,220 QueryKind = ValueQuery,221 >;222223 /// Amount of tokens (not pieces) partially owned by an account within a collection.224 #[pallet::storage]225 pub type AccountBalance<T: Config> = StorageNMap<226 Key = (227 Key<Twox64Concat, CollectionId>,228 // Owner229 Key<Blake2_128Concat, T::CrossAccountId>,230 ),231 Value = u32,232 QueryKind = ValueQuery,233 >;234235 /// Amount of token pieces owned by account.236 #[pallet::storage]237 pub type Balance<T: Config> = StorageNMap<238 Key = (239 Key<Twox64Concat, CollectionId>,240 Key<Twox64Concat, TokenId>,241 // Owner242 Key<Blake2_128Concat, T::CrossAccountId>,243 ),244 Value = u128,245 QueryKind = ValueQuery,246 >;247248 /// Allowance set by a token owner for another user to perform one of certain transactions on a number of pieces of a token.249 #[pallet::storage]250 pub type Allowance<T: Config> = StorageNMap<251 Key = (252 Key<Twox64Concat, CollectionId>,253 Key<Twox64Concat, TokenId>,254 // Owner255 Key<Blake2_128, T::CrossAccountId>,256 // Spender257 Key<Blake2_128Concat, T::CrossAccountId>,258 ),259 Value = u128,260 QueryKind = ValueQuery,261 >;262263 #[pallet::hooks]264 impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {265 fn on_runtime_upgrade() -> Weight {266 let storage_version = StorageVersion::get::<Pallet<T>>();267 if storage_version < StorageVersion::new(2) {268 <TokenData<T>>::remove_all(None);269 }270 StorageVersion::new(2).put::<Pallet<T>>();271272 0273 }274 }275}276277pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);278impl<T: Config> RefungibleHandle<T> {279 pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {280 Self(inner)281 }282 pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {283 self.0284 }285 pub fn common_mut(&mut self) -> &mut pallet_common::CollectionHandle<T> {286 &mut self.0287 }288}289290impl<T: Config> Deref for RefungibleHandle<T> {291 type Target = pallet_common::CollectionHandle<T>;292293 fn deref(&self) -> &Self::Target {294 &self.0295 }296}297298impl<T: Config> WithRecorder<T> for RefungibleHandle<T> {299 fn recorder(&self) -> &pallet_evm_coder_substrate::SubstrateRecorder<T> {300 self.0.recorder()301 }302 fn into_recorder(self) -> pallet_evm_coder_substrate::SubstrateRecorder<T> {303 self.0.into_recorder()304 }305}306307impl<T: Config> Pallet<T> {308 /// Get number of RFT tokens in collection309 pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {310 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)311 }312313 /// Check that RFT token exists314 ///315 /// - `token`: Token ID.316 pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {317 <TotalSupply<T>>::contains_key((collection.id, token))318 }319320 pub fn set_scoped_token_property(321 collection_id: CollectionId,322 token_id: TokenId,323 scope: PropertyScope,324 property: Property,325 ) -> DispatchResult {326 TokenProperties::<T>::try_mutate((collection_id, token_id), |properties| {327 properties.try_scoped_set(scope, property.key, property.value)328 })329 .map_err(<CommonError<T>>::from)?;330331 Ok(())332 }333334 pub fn set_scoped_token_properties(335 collection_id: CollectionId,336 token_id: TokenId,337 scope: PropertyScope,338 properties: impl Iterator<Item = Property>,339 ) -> DispatchResult {340 TokenProperties::<T>::try_mutate((collection_id, token_id), |stored_properties| {341 stored_properties.try_scoped_set_from_iter(scope, properties)342 })343 .map_err(<CommonError<T>>::from)?;344345 Ok(())346 }347}348349// unchecked calls skips any permission checks350impl<T: Config> Pallet<T> {351 /// Create RFT collection352 ///353 /// `init_collection` will take non-refundable deposit for collection creation.354 ///355 /// - `data`: Contains settings for collection limits and permissions.356 pub fn init_collection(357 owner: T::CrossAccountId,358 data: CreateCollectionData<T::AccountId>,359 ) -> Result<CollectionId, DispatchError> {360 <PalletCommon<T>>::init_collection(owner, data, false)361 }362363 /// Destroy RFT collection364 ///365 /// `destroy_collection` will throw error if collection contains any tokens.366 /// Only owner can destroy collection.367 pub fn destroy_collection(368 collection: RefungibleHandle<T>,369 sender: &T::CrossAccountId,370 ) -> DispatchResult {371 let id = collection.id;372373 if Self::collection_has_tokens(id) {374 return Err(<CommonError<T>>::CantDestroyNotEmptyCollection.into());375 }376377 // =========378379 PalletCommon::destroy_collection(collection.0, sender)?;380381 <TokensMinted<T>>::remove(id);382 <TokensBurnt<T>>::remove(id);383 <TotalSupply<T>>::remove_prefix((id,), None);384 <Balance<T>>::remove_prefix((id,), None);385 <Allowance<T>>::remove_prefix((id,), None);386 <Owned<T>>::remove_prefix((id,), None);387 <AccountBalance<T>>::remove_prefix((id,), None);388 Ok(())389 }390391 fn collection_has_tokens(collection_id: CollectionId) -> bool {392 <TotalSupply<T>>::iter_prefix((collection_id,))393 .next()394 .is_some()395 }396397 pub fn burn_token_unchecked(398 collection: &RefungibleHandle<T>,399 token_id: TokenId,400 ) -> DispatchResult {401 let burnt = <TokensBurnt<T>>::get(collection.id)402 .checked_add(1)403 .ok_or(ArithmeticError::Overflow)?;404405 <TokensBurnt<T>>::insert(collection.id, burnt);406 <TokenProperties<T>>::remove((collection.id, token_id));407 <TotalSupply<T>>::remove((collection.id, token_id));408 <Balance<T>>::remove_prefix((collection.id, token_id), None);409 <Allowance<T>>::remove_prefix((collection.id, token_id), None);410 // TODO: ERC721 transfer event411 Ok(())412 }413414 /// Burn RFT token pieces415 ///416 /// `burn` will decrease total amount of token pieces and amount owned by sender.417 /// `burn` can be called even if there are multiple owners of the RFT token.418 /// If sender wouldn't have any pieces left after `burn` than she will stop being419 /// one of the owners of the token. If there is no account that owns any pieces of420 /// the token than token will be burned too.421 ///422 /// - `amount`: Amount of token pieces to burn.423 /// - `token`: Token who's pieces should be burned424 /// - `collection`: Collection that contains the token425 pub fn burn(426 collection: &RefungibleHandle<T>,427 owner: &T::CrossAccountId,428 token: TokenId,429 amount: u128,430 ) -> DispatchResult {431 let total_supply = <TotalSupply<T>>::get((collection.id, token))432 .checked_sub(amount)433 .ok_or(<CommonError<T>>::TokenValueTooLow)?;434435 // This was probally last owner of this token?436 if total_supply == 0 {437 // Ensure user actually owns this amount438 ensure!(439 <Balance<T>>::get((collection.id, token, owner)) == amount,440 <CommonError<T>>::TokenValueTooLow441 );442 let account_balance = <AccountBalance<T>>::get((collection.id, owner))443 .checked_sub(1)444 // Should not occur445 .ok_or(ArithmeticError::Underflow)?;446447 // =========448449 <Owned<T>>::remove((collection.id, owner, token));450 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);451 <AccountBalance<T>>::insert((collection.id, owner), account_balance);452 Self::burn_token_unchecked(collection, token)?;453 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(454 collection.id,455 token,456 owner.clone(),457 amount,458 ));459 return Ok(());460 }461462 let balance = <Balance<T>>::get((collection.id, token, owner))463 .checked_sub(amount)464 .ok_or(<CommonError<T>>::TokenValueTooLow)?;465 let account_balance = if balance == 0 {466 <AccountBalance<T>>::get((collection.id, owner))467 .checked_sub(1)468 // Should not occur469 .ok_or(ArithmeticError::Underflow)?470 } else {471 0472 };473474 // =========475476 if balance == 0 {477 <Owned<T>>::remove((collection.id, owner, token));478 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);479 <Balance<T>>::remove((collection.id, token, owner));480 <AccountBalance<T>>::insert((collection.id, owner), account_balance);481 } else {482 <Balance<T>>::insert((collection.id, token, owner), balance);483 }484 <TotalSupply<T>>::insert((collection.id, token), total_supply);485486 <PalletEvm<T>>::deposit_log(487 ERC20Events::Transfer {488 from: *owner.as_eth(),489 to: H160::default(),490 value: amount.into(),491 }492 .to_log(T::EvmTokenAddressMapping::token_to_address(493 collection.id,494 token,495 )),496 );497 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(498 collection.id,499 token,500 owner.clone(),501 amount,502 ));503 Ok(())504 }505506 #[transactional]507 fn modify_token_properties(508 collection: &RefungibleHandle<T>,509 sender: &T::CrossAccountId,510 token_id: TokenId,511 properties: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,512 is_token_create: bool,513 nesting_budget: &dyn Budget,514 ) -> DispatchResult {515 let is_collection_admin = || collection.is_owner_or_admin(sender);516 let is_token_owner = || -> Result<bool, DispatchError> {517 let balance = collection.balance(sender.clone(), token_id);518 let total_pieces: u128 =519 Self::total_pieces(collection.id, token_id).unwrap_or(u128::MAX);520 if balance != total_pieces {521 return Ok(false);522 }523524 let is_bundle_owner = <PalletStructure<T>>::check_indirectly_owned(525 sender.clone(),526 collection.id,527 token_id,528 None,529 nesting_budget,530 )?;531532 Ok(is_bundle_owner)533 };534535 for (key, value) in properties {536 let permission = <PalletCommon<T>>::property_permissions(collection.id)537 .get(&key)538 .cloned()539 .unwrap_or_else(PropertyPermission::none);540541 let is_property_exists = TokenProperties::<T>::get((collection.id, token_id))542 .get(&key)543 .is_some();544545 match permission {546 PropertyPermission { mutable: false, .. } if is_property_exists => {547 return Err(<CommonError<T>>::NoPermission.into());548 }549550 PropertyPermission {551 collection_admin,552 token_owner,553 ..554 } => {555 //TODO: investigate threats during public minting.556 let is_token_create =557 is_token_create && (collection_admin || token_owner) && value.is_some();558 if !(is_token_create559 || (collection_admin && is_collection_admin())560 || (token_owner && is_token_owner()?))561 {562 fail!(<CommonError<T>>::NoPermission);563 }564 }565 }566567 match value {568 Some(value) => {569 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {570 properties.try_set(key.clone(), value)571 })572 .map_err(<CommonError<T>>::from)?;573574 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertySet(575 collection.id,576 token_id,577 key,578 ));579 }580 None => {581 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {582 properties.remove(&key)583 })584 .map_err(<CommonError<T>>::from)?;585586 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertyDeleted(587 collection.id,588 token_id,589 key,590 ));591 }592 }593 }594595 Ok(())596 }597598 pub fn set_token_properties(599 collection: &RefungibleHandle<T>,600 sender: &T::CrossAccountId,601 token_id: TokenId,602 properties: impl Iterator<Item = Property>,603 is_token_create: bool,604 nesting_budget: &dyn Budget,605 ) -> DispatchResult {606 Self::modify_token_properties(607 collection,608 sender,609 token_id,610 properties.map(|p| (p.key, Some(p.value))),611 is_token_create,612 nesting_budget,613 )614 }615616 pub fn set_token_property(617 collection: &RefungibleHandle<T>,618 sender: &T::CrossAccountId,619 token_id: TokenId,620 property: Property,621 nesting_budget: &dyn Budget,622 ) -> DispatchResult {623 let is_token_create = false;624625 Self::set_token_properties(626 collection,627 sender,628 token_id,629 [property].into_iter(),630 is_token_create,631 nesting_budget,632 )633 }634635 pub fn delete_token_properties(636 collection: &RefungibleHandle<T>,637 sender: &T::CrossAccountId,638 token_id: TokenId,639 property_keys: impl Iterator<Item = PropertyKey>,640 nesting_budget: &dyn Budget,641 ) -> DispatchResult {642 let is_token_create = false;643644 Self::modify_token_properties(645 collection,646 sender,647 token_id,648 property_keys.into_iter().map(|key| (key, None)),649 is_token_create,650 nesting_budget,651 )652 }653654 pub fn delete_token_property(655 collection: &RefungibleHandle<T>,656 sender: &T::CrossAccountId,657 token_id: TokenId,658 property_key: PropertyKey,659 nesting_budget: &dyn Budget,660 ) -> DispatchResult {661 Self::delete_token_properties(662 collection,663 sender,664 token_id,665 [property_key].into_iter(),666 nesting_budget,667 )668 }669670 /// Transfer RFT token pieces from one account to another.671 ///672 /// If the sender is no longer owns any pieces after the `transfer` than she stops being an owner of the token.673 ///674 /// - `from`: Owner of token pieces to transfer.675 /// - `to`: Recepient of transfered token pieces.676 /// - `amount`: Amount of token pieces to transfer.677 /// - `token`: Token whos pieces should be transfered678 /// - `collection`: Collection that contains the token679 pub fn transfer(680 collection: &RefungibleHandle<T>,681 from: &T::CrossAccountId,682 to: &T::CrossAccountId,683 token: TokenId,684 amount: u128,685 nesting_budget: &dyn Budget,686 ) -> DispatchResult {687 ensure!(688 collection.limits.transfers_enabled(),689 <CommonError<T>>::TransferNotAllowed690 );691692 if collection.permissions.access() == AccessMode::AllowList {693 collection.check_allowlist(from)?;694 collection.check_allowlist(to)?;695 }696 <PalletCommon<T>>::ensure_correct_receiver(to)?;697698 let balance_from = <Balance<T>>::get((collection.id, token, from))699 .checked_sub(amount)700 .ok_or(<CommonError<T>>::TokenValueTooLow)?;701 let mut create_target = false;702 let from_to_differ = from != to;703 let balance_to = if from != to {704 let old_balance = <Balance<T>>::get((collection.id, token, to));705 if old_balance == 0 {706 create_target = true;707 }708 Some(709 old_balance710 .checked_add(amount)711 .ok_or(ArithmeticError::Overflow)?,712 )713 } else {714 None715 };716717 let account_balance_from = if balance_from == 0 {718 Some(719 <AccountBalance<T>>::get((collection.id, from))720 .checked_sub(1)721 // Should not occur722 .ok_or(ArithmeticError::Underflow)?,723 )724 } else {725 None726 };727 // Account data is created in token, AccountBalance should be increased728 // But only if from != to as we shouldn't check overflow in this case729 let account_balance_to = if create_target && from_to_differ {730 let account_balance_to = <AccountBalance<T>>::get((collection.id, to))731 .checked_add(1)732 .ok_or(ArithmeticError::Overflow)?;733 ensure!(734 account_balance_to < collection.limits.account_token_ownership_limit(),735 <CommonError<T>>::AccountTokenLimitExceeded,736 );737738 Some(account_balance_to)739 } else {740 None741 };742743 // =========744745 <PalletStructure<T>>::nest_if_sent_to_token(746 from.clone(),747 to,748 collection.id,749 token,750 nesting_budget,751 )?;752753 if let Some(balance_to) = balance_to {754 // from != to755 if balance_from == 0 {756 <Balance<T>>::remove((collection.id, token, from));757 <PalletStructure<T>>::unnest_if_nested(from, collection.id, token);758 } else {759 <Balance<T>>::insert((collection.id, token, from), balance_from);760 }761 <Balance<T>>::insert((collection.id, token, to), balance_to);762 if let Some(account_balance_from) = account_balance_from {763 <AccountBalance<T>>::insert((collection.id, from), account_balance_from);764 <Owned<T>>::remove((collection.id, from, token));765 }766 if let Some(account_balance_to) = account_balance_to {767 <AccountBalance<T>>::insert((collection.id, to), account_balance_to);768 <Owned<T>>::insert((collection.id, to, token), true);769 }770 }771772 <PalletEvm<T>>::deposit_log(773 ERC20Events::Transfer {774 from: *from.as_eth(),775 to: *to.as_eth(),776 value: amount.into(),777 }778 .to_log(T::EvmTokenAddressMapping::token_to_address(779 collection.id,780 token,781 )),782 );783 <PalletCommon<T>>::deposit_event(CommonEvent::Transfer(784 collection.id,785 token,786 from.clone(),787 to.clone(),788 amount,789 ));790 Ok(())791 }792793 /// Batched operation to create multiple RFT tokens.794 ///795 /// Same as `create_item` but creates multiple tokens.796 ///797 /// - `data`: Same as 'data` in `create_item` but contains data for multiple tokens.798 pub fn create_multiple_items(799 collection: &RefungibleHandle<T>,800 sender: &T::CrossAccountId,801 data: Vec<CreateRefungibleExData<T::CrossAccountId>>,802 nesting_budget: &dyn Budget,803 ) -> DispatchResult {804 if !collection.is_owner_or_admin(sender) {805 ensure!(806 collection.permissions.mint_mode(),807 <CommonError<T>>::PublicMintingNotAllowed808 );809 collection.check_allowlist(sender)?;810811 for item in data.iter() {812 for user in item.users.keys() {813 collection.check_allowlist(user)?;814 }815 }816 }817818 for item in data.iter() {819 for (owner, _) in item.users.iter() {820 <PalletCommon<T>>::ensure_correct_receiver(owner)?;821 }822 }823824 // Total pieces per tokens825 let totals = data826 .iter()827 .map(|data| {828 Ok(data829 .users830 .iter()831 .map(|u| u.1)832 .try_fold(0u128, |acc, v| acc.checked_add(*v))833 .ok_or(ArithmeticError::Overflow)?)834 })835 .collect::<Result<Vec<_>, DispatchError>>()?;836 for total in &totals {837 ensure!(838 *total <= MAX_REFUNGIBLE_PIECES,839 <Error<T>>::WrongRefungiblePieces840 );841 }842843 let first_token_id = <TokensMinted<T>>::get(collection.id);844 let tokens_minted = first_token_id845 .checked_add(data.len() as u32)846 .ok_or(ArithmeticError::Overflow)?;847 ensure!(848 tokens_minted < collection.limits.token_limit(),849 <CommonError<T>>::CollectionTokenLimitExceeded850 );851852 let mut balances = BTreeMap::new();853 for data in &data {854 for owner in data.users.keys() {855 let balance = balances856 .entry(owner)857 .or_insert_with(|| <AccountBalance<T>>::get((collection.id, owner)));858 *balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;859860 ensure!(861 *balance <= collection.limits.account_token_ownership_limit(),862 <CommonError<T>>::AccountTokenLimitExceeded,863 );864 }865 }866867 for (i, token) in data.iter().enumerate() {868 let token_id = TokenId(first_token_id + i as u32 + 1);869 for (to, _) in token.users.iter() {870 <PalletStructure<T>>::check_nesting(871 sender.clone(),872 to,873 collection.id,874 token_id,875 nesting_budget,876 )?;877 }878 }879880 // =========881882 with_transaction(|| {883 for (i, data) in data.iter().enumerate() {884 let token_id = first_token_id + i as u32 + 1;885 <TotalSupply<T>>::insert((collection.id, token_id), totals[i]);886887 for (user, amount) in data.users.iter() {888 if *amount == 0 {889 continue;890 }891 <Balance<T>>::insert((collection.id, token_id, &user), amount);892 <Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);893 <PalletStructure<T>>::nest_if_sent_to_token_unchecked(894 user,895 collection.id,896 TokenId(token_id),897 );898 }899900 if let Err(e) = Self::set_token_properties(901 collection,902 sender,903 TokenId(token_id),904 data.properties.clone().into_iter(),905 true,906 nesting_budget,907 ) {908 return TransactionOutcome::Rollback(Err(e));909 }910 }911 TransactionOutcome::Commit(Ok(()))912 })?;913914 <TokensMinted<T>>::insert(collection.id, tokens_minted);915916 for (account, balance) in balances {917 <AccountBalance<T>>::insert((collection.id, account), balance);918 }919920 for (i, token) in data.into_iter().enumerate() {921 let token_id = first_token_id + i as u32 + 1;922923 for (user, amount) in token.users.into_iter() {924 if amount == 0 {925 continue;926 }927928 <PalletEvm<T>>::deposit_log(929 ERC20Events::Transfer {930 from: H160::default(),931 to: *user.as_eth(),932 value: amount.into(),933 }934 .to_log(T::EvmTokenAddressMapping::token_to_address(935 collection.id,936 TokenId(token_id),937 )),938 );939 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(940 collection.id,941 TokenId(token_id),942 user,943 amount,944 ));945 }946 }947 Ok(())948 }949950 pub fn set_allowance_unchecked(951 collection: &RefungibleHandle<T>,952 sender: &T::CrossAccountId,953 spender: &T::CrossAccountId,954 token: TokenId,955 amount: u128,956 ) {957 if amount == 0 {958 <Allowance<T>>::remove((collection.id, token, sender, spender));959 } else {960 <Allowance<T>>::insert((collection.id, token, sender, spender), amount);961 }962963 <PalletEvm<T>>::deposit_log(964 ERC20Events::Approval {965 owner: *sender.as_eth(),966 spender: *spender.as_eth(),967 value: amount.into(),968 }969 .to_log(T::EvmTokenAddressMapping::token_to_address(970 collection.id,971 token,972 )),973 );974 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(975 collection.id,976 token,977 sender.clone(),978 spender.clone(),979 amount,980 ))981 }982983 /// Set allowance for the spender to `transfer` or `burn` sender's token pieces.984 ///985 /// - `amount`: Amount of token pieces the spender is allowed to `transfer` or `burn.986 pub fn set_allowance(987 collection: &RefungibleHandle<T>,988 sender: &T::CrossAccountId,989 spender: &T::CrossAccountId,990 token: TokenId,991 amount: u128,992 ) -> DispatchResult {993 if collection.permissions.access() == AccessMode::AllowList {994 collection.check_allowlist(sender)?;995 collection.check_allowlist(spender)?;996 }997998 <PalletCommon<T>>::ensure_correct_receiver(spender)?;9991000 if <Balance<T>>::get((collection.id, token, sender)) < amount {1001 ensure!(1002 collection.ignores_owned_amount(sender) && Self::token_exists(collection, token),1003 <CommonError<T>>::CantApproveMoreThanOwned1004 );1005 }10061007 // =========10081009 Self::set_allowance_unchecked(collection, sender, spender, token, amount);1010 Ok(())1011 }10121013 /// Returns allowance, which should be set after transaction1014 fn check_allowed(1015 collection: &RefungibleHandle<T>,1016 spender: &T::CrossAccountId,1017 from: &T::CrossAccountId,1018 token: TokenId,1019 amount: u128,1020 nesting_budget: &dyn Budget,1021 ) -> Result<Option<u128>, DispatchError> {1022 if spender.conv_eq(from) {1023 return Ok(None);1024 }1025 if collection.permissions.access() == AccessMode::AllowList {1026 // `from`, `to` checked in [`transfer`]1027 collection.check_allowlist(spender)?;1028 }1029 if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {1030 // TODO: should collection owner be allowed to perform this transfer?1031 ensure!(1032 <PalletStructure<T>>::check_indirectly_owned(1033 spender.clone(),1034 source.0,1035 source.1,1036 None,1037 nesting_budget1038 )?,1039 <CommonError<T>>::ApprovedValueTooLow,1040 );1041 return Ok(None);1042 }1043 let allowance =1044 <Allowance<T>>::get((collection.id, token, from, &spender)).checked_sub(amount);1045 if allowance.is_none() {1046 ensure!(1047 collection.ignores_allowance(spender),1048 <CommonError<T>>::ApprovedValueTooLow1049 );1050 }1051 Ok(allowance)1052 }10531054 /// Transfer RFT token pieces from one account to another.1055 ///1056 /// Same as the [`transfer`] but spender doesn't needs to be an owner of the token pieces.1057 /// The owner should set allowance for the spender to transfer pieces.1058 ///1059 /// [`transfer`]: struct.Pallet.html#method.transfer1060 pub fn transfer_from(1061 collection: &RefungibleHandle<T>,1062 spender: &T::CrossAccountId,1063 from: &T::CrossAccountId,1064 to: &T::CrossAccountId,1065 token: TokenId,1066 amount: u128,1067 nesting_budget: &dyn Budget,1068 ) -> DispatchResult {1069 let allowance =1070 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;10711072 // =========10731074 Self::transfer(collection, from, to, token, amount, nesting_budget)?;1075 if let Some(allowance) = allowance {1076 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1077 }1078 Ok(())1079 }10801081 /// Burn RFT token pieces from the account.1082 ///1083 /// Same as the [`burn`] but spender doesn't need to be an owner of the token pieces. The owner should1084 /// set allowance for the spender to burn pieces1085 ///1086 /// [`burn`]: struct.Pallet.html#method.burn1087 pub fn burn_from(1088 collection: &RefungibleHandle<T>,1089 spender: &T::CrossAccountId,1090 from: &T::CrossAccountId,1091 token: TokenId,1092 amount: u128,1093 nesting_budget: &dyn Budget,1094 ) -> DispatchResult {1095 let allowance =1096 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;10971098 // =========10991100 Self::burn(collection, from, token, amount)?;1101 if let Some(allowance) = allowance {1102 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1103 }1104 Ok(())1105 }11061107 /// Create RFT token.1108 ///1109 /// The sender should be the owner/admin of the collection or collection should be configured1110 /// to allow public minting.1111 ///1112 /// - `data`: Contains list of users who will become the owners of the token pieces and amount1113 /// of token pieces they will receive.1114 pub fn create_item(1115 collection: &RefungibleHandle<T>,1116 sender: &T::CrossAccountId,1117 data: CreateRefungibleExData<T::CrossAccountId>,1118 nesting_budget: &dyn Budget,1119 ) -> DispatchResult {1120 Self::create_multiple_items(collection, sender, vec![data], nesting_budget)1121 }11221123 /// Repartition RFT token.1124 ///1125 /// `repartition` will set token balance of the sender and total amount of token pieces.1126 /// Sender should own all of the token pieces. `repartition' could be done even if some1127 /// token pieces were burned before.1128 ///1129 /// - `amount`: Total amount of token pieces that the token will have after `repartition`.1130 pub fn repartition(1131 collection: &RefungibleHandle<T>,1132 owner: &T::CrossAccountId,1133 token: TokenId,1134 amount: u128,1135 ) -> DispatchResult {1136 ensure!(1137 amount <= MAX_REFUNGIBLE_PIECES,1138 <Error<T>>::WrongRefungiblePieces1139 );1140 ensure!(amount > 0, <CommonError<T>>::TokenValueTooLow);1141 // Ensure user owns all pieces1142 let total_pieces = Self::total_pieces(collection.id, token).unwrap_or(u128::MAX);1143 let balance = <Balance<T>>::get((collection.id, token, owner));1144 ensure!(1145 total_pieces == balance,1146 <Error<T>>::RepartitionWhileNotOwningAllPieces1147 );11481149 <Balance<T>>::insert((collection.id, token, owner), amount);1150 <TotalSupply<T>>::insert((collection.id, token), amount);11511152 if amount > total_pieces {1153 let mint_amount = amount - total_pieces;1154 <PalletEvm<T>>::deposit_log(1155 ERC20Events::Transfer {1156 from: H160::default(),1157 to: *owner.as_eth(),1158 value: mint_amount.into(),1159 }1160 .to_log(T::EvmTokenAddressMapping::token_to_address(1161 collection.id,1162 token,1163 )),1164 );1165 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(1166 collection.id,1167 token,1168 owner.clone(),1169 mint_amount,1170 ));1171 } else if total_pieces > amount {1172 let burn_amount = total_pieces - amount;1173 <PalletEvm<T>>::deposit_log(1174 ERC20Events::Transfer {1175 from: *owner.as_eth(),1176 to: H160::default(),1177 value: burn_amount.into(),1178 }1179 .to_log(T::EvmTokenAddressMapping::token_to_address(1180 collection.id,1181 token,1182 )),1183 );1184 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(1185 collection.id,1186 token,1187 owner.clone(),1188 burn_amount,1189 ));1190 }11911192 Ok(())1193 }11941195 fn token_owner(collection_id: CollectionId, token_id: TokenId) -> Option<T::CrossAccountId> {1196 let mut owner = None;1197 let mut count = 0;1198 for key in Balance::<T>::iter_key_prefix((collection_id, token_id)) {1199 count += 1;1200 if count > 1 {1201 return None;1202 }1203 owner = Some(key);1204 }1205 owner1206 }12071208 fn total_pieces(collection_id: CollectionId, token_id: TokenId) -> Option<u128> {1209 <TotalSupply<T>>::try_get((collection_id, token_id)).ok()1210 }12111212 pub fn set_collection_properties(1213 collection: &RefungibleHandle<T>,1214 sender: &T::CrossAccountId,1215 properties: Vec<Property>,1216 ) -> DispatchResult {1217 <PalletCommon<T>>::set_collection_properties(collection, sender, properties)1218 }12191220 pub fn delete_collection_properties(1221 collection: &RefungibleHandle<T>,1222 sender: &T::CrossAccountId,1223 property_keys: Vec<PropertyKey>,1224 ) -> DispatchResult {1225 <PalletCommon<T>>::delete_collection_properties(collection, sender, property_keys)1226 }12271228 pub fn set_token_property_permissions(1229 collection: &RefungibleHandle<T>,1230 sender: &T::CrossAccountId,1231 property_permissions: Vec<PropertyKeyPermission>,1232 ) -> DispatchResult {1233 <PalletCommon<T>>::set_token_property_permissions(collection, sender, property_permissions)1234 }12351236 /// Returns 10 token in no particular order.1237 ///1238 /// There is no direct way to get token holders in ascending order,1239 /// since `iter_prefix` returns values in no particular order.1240 /// Therefore, getting the 10 largest holders with a large value of holders1241 /// can lead to impact memory allocation + sorting with `n * log (n)`.1242 pub fn token_owners(1243 collection_id: CollectionId,1244 token: TokenId,1245 ) -> Option<Vec<T::CrossAccountId>> {1246 let res: Vec<T::CrossAccountId> = <Balance<T>>::iter_prefix((collection_id, token))1247 .map(|(owner, _amount)| owner)1248 .take(10)1249 .collect();12501251 if res.is_empty() {1252 None1253 } else {1254 Some(res)1255 }1256 }1257}1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617//! # Refungible Pallet18//!19//! The Refungible pallet provides functionality for handling refungible collections and tokens.20//!21//! - [`Config`]22//! - [`RefungibleHandle`]23//! - [`Pallet`]24//! - [`CommonWeights`](common::CommonWeights)25//!26//! ## Overview27//!28//! The Refungible pallet provides functions for:29//!30//! - RFT collection creation and removal31//! - Minting and burning of RFT tokens32//! - Partition and repartition of RFT tokens33//! - Retrieving number of pieces of RFT token34//! - Retrieving account balances35//! - Transfering RFT token pieces36//! - Burning RFT token pieces37//! - Setting and checking allowance for RFT tokens38//!39//! ### Terminology40//!41//! - **RFT token:** Non fungible token that was partitioned to pieces. If an account owns all42//! of the RFT token pieces than it owns the RFT token and can repartition it.43//!44//! - **RFT Collection:** A collection of RFT tokens. All RFT tokens are part of a collection.45//! Each collection has its own settings and set of permissions.46//!47//! - **RFT token piece:** A fungible part of an RFT token.48//!49//! - **Balance:** RFT token pieces owned by an account50//!51//! - **Allowance:** Maximum number of RFT token pieces that one account is allowed to52//! transfer from the balance of another account53//!54//! - **Burning:** The process of “deleting” a token from a collection or removing token pieces from55//! an account balance.56//!57//! ### Implementations58//!59//! The Refungible pallet provides implementations for the following traits. If these traits provide60//! the functionality that you need, then you can avoid coupling with the Refungible pallet.61//!62//! - [`CommonWeightInfo`](pallet_common::CommonWeightInfo): Functions for retrieval of transaction weight63//! - [`CommonCollectionOperations`](pallet_common::CommonCollectionOperations): Functions for dealing64//! with collections65//! - [`RefungibleExtensions`](pallet_common::RefungibleExtensions): Functions specific for refungible66//! collection67//!68//! ## Interface69//!70//! ### Dispatchable Functions71//!72//! - `init_collection` - Create RFT collection. RFT collection can be configured to allow or deny access for73//! some accounts.74//! - `destroy_collection` - Destroy exising RFT collection. There should be no tokens in the collection.75//! - `burn` - Burn some amount of RFT token pieces owned by account. Burns the RFT token if no pieces left.76//! - `transfer` - Transfer some amount of RFT token pieces. Transfers should be enabled for RFT collection.77//! Nests the RFT token if RFT token pieces are sent to another token.78//! - `create_item` - Mint RFT token in collection. Sender should have permission to mint tokens.79//! - `set_allowance` - Set allowance for another account to transfer balance from sender's account.80//! - `repartition` - Repartition token to selected number of pieces. Sender should own all existing pieces.81//!82//! ## Assumptions83//!84//! * Total number of pieces for one token shouldn't exceed `up_data_structs::MAX_REFUNGIBLE_PIECES`.85//! * Total number of tokens of all types shouldn't be greater than `up_data_structs::MAX_TOKEN_PREFIX_LENGTH`.86//! * Sender should be in collection's allow list to perform operations on tokens.8788#![cfg_attr(not(feature = "std"), no_std)]8990use crate::erc_token::ERC20Events;91use crate::erc::ERC721Events;9293use codec::{Encode, Decode, MaxEncodedLen};94use core::ops::Deref;95use evm_coder::ToLog;96use frame_support::{BoundedVec, ensure, fail, storage::with_transaction, transactional};97use pallet_evm::{account::CrossAccountId, Pallet as PalletEvm};98use pallet_evm_coder_substrate::WithRecorder;99use pallet_common::{100 CommonCollectionOperations, Error as CommonError, Event as CommonEvent,101 eth::collection_id_to_address, Pallet as PalletCommon,102};103use pallet_structure::Pallet as PalletStructure;104use scale_info::TypeInfo;105use sp_core::H160;106use sp_runtime::{ArithmeticError, DispatchError, DispatchResult, TransactionOutcome};107use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};108use up_data_structs::{109 AccessMode, budget::Budget, CollectionId, CreateCollectionData, CreateRefungibleExData,110 CustomDataLimit, mapping::TokenAddressMapping, MAX_REFUNGIBLE_PIECES, TokenId, Property,111 PropertyKey, PropertyKeyPermission, PropertyPermission, PropertyScope, PropertyValue,112 TrySetProperty,113};114115pub use pallet::*;116#[cfg(feature = "runtime-benchmarks")]117pub mod benchmarking;118pub mod common;119pub mod erc;120pub mod erc_token;121pub mod weights;122123pub type CreateItemData<T> =124 CreateRefungibleExData<<T as pallet_evm::account::Config>::CrossAccountId>;125pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;126127/// Token data, stored independently from other data used to describe it128/// for the convenience of database access. Notably contains the token metadata.129#[struct_versioning::versioned(version = 2, upper)]130#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]131#[deprecated(since = "0.2.0", note = "ItemData is no more contains usefull data")]132pub struct ItemData {133 pub const_data: BoundedVec<u8, CustomDataLimit>,134135 #[version(..2)]136 pub variable_data: BoundedVec<u8, CustomDataLimit>,137}138139#[frame_support::pallet]140pub mod pallet {141 use super::*;142 use frame_support::{143 Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key,144 traits::StorageVersion,145 };146 use frame_system::pallet_prelude::*;147 use up_data_structs::{CollectionId, TokenId};148 use super::weights::WeightInfo;149150 #[pallet::error]151 pub enum Error<T> {152 /// Not Refungible item data used to mint in Refungible collection.153 NotRefungibleDataUsedToMintFungibleCollectionToken,154 /// Maximum refungibility exceeded.155 WrongRefungiblePieces,156 /// Refungible token can't be repartitioned by user who isn't owns all pieces.157 RepartitionWhileNotOwningAllPieces,158 /// Refungible token can't nest other tokens.159 RefungibleDisallowsNesting,160 /// Setting item properties is not allowed.161 SettingPropertiesNotAllowed,162 }163164 #[pallet::config]165 pub trait Config:166 frame_system::Config + pallet_common::Config + pallet_structure::Config167 {168 type WeightInfo: WeightInfo;169 }170171 const STORAGE_VERSION: StorageVersion = StorageVersion::new(2);172173 #[pallet::pallet]174 #[pallet::storage_version(STORAGE_VERSION)]175 #[pallet::generate_store(pub(super) trait Store)]176 pub struct Pallet<T>(_);177178 /// Total amount of minted tokens in a collection.179 #[pallet::storage]180 pub type TokensMinted<T: Config> =181 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;182183 /// Amount of tokens burnt in a collection.184 #[pallet::storage]185 pub type TokensBurnt<T: Config> =186 StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;187188 /// Token data, used to partially describe a token.189 // TODO: remove190 #[pallet::storage]191 #[deprecated(since = "0.2.0", note = "ItemData is no more contains usefull data")]192 pub type TokenData<T: Config> = StorageNMap<193 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),194 Value = ItemData,195 QueryKind = ValueQuery,196 >;197198 /// Amount of pieces a refungible token is split into.199 #[pallet::storage]200 #[pallet::getter(fn token_properties)]201 pub type TokenProperties<T: Config> = StorageNMap<202 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),203 Value = up_data_structs::Properties,204 QueryKind = ValueQuery,205 OnEmpty = up_data_structs::TokenProperties,206 >;207208 /// Total amount of pieces for token209 #[pallet::storage]210 pub type TotalSupply<T: Config> = StorageNMap<211 Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),212 Value = u128,213 QueryKind = ValueQuery,214 >;215216 /// Used to enumerate tokens owned by account.217 #[pallet::storage]218 pub type Owned<T: Config> = StorageNMap<219 Key = (220 Key<Twox64Concat, CollectionId>,221 Key<Blake2_128Concat, T::CrossAccountId>,222 Key<Twox64Concat, TokenId>,223 ),224 Value = bool,225 QueryKind = ValueQuery,226 >;227228 /// Amount of tokens (not pieces) partially owned by an account within a collection.229 #[pallet::storage]230 pub type AccountBalance<T: Config> = StorageNMap<231 Key = (232 Key<Twox64Concat, CollectionId>,233 // Owner234 Key<Blake2_128Concat, T::CrossAccountId>,235 ),236 Value = u32,237 QueryKind = ValueQuery,238 >;239240 /// Amount of token pieces owned by account.241 #[pallet::storage]242 pub type Balance<T: Config> = StorageNMap<243 Key = (244 Key<Twox64Concat, CollectionId>,245 Key<Twox64Concat, TokenId>,246 // Owner247 Key<Blake2_128Concat, T::CrossAccountId>,248 ),249 Value = u128,250 QueryKind = ValueQuery,251 >;252253 /// Allowance set by a token owner for another user to perform one of certain transactions on a number of pieces of a token.254 #[pallet::storage]255 pub type Allowance<T: Config> = StorageNMap<256 Key = (257 Key<Twox64Concat, CollectionId>,258 Key<Twox64Concat, TokenId>,259 // Owner260 Key<Blake2_128, T::CrossAccountId>,261 // Spender262 Key<Blake2_128Concat, T::CrossAccountId>,263 ),264 Value = u128,265 QueryKind = ValueQuery,266 >;267268 #[pallet::hooks]269 impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {270 fn on_runtime_upgrade() -> Weight {271 let storage_version = StorageVersion::get::<Pallet<T>>();272 if storage_version < StorageVersion::new(2) {273 <TokenData<T>>::remove_all(None);274 }275 StorageVersion::new(2).put::<Pallet<T>>();276277 0278 }279 }280}281282pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);283impl<T: Config> RefungibleHandle<T> {284 pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {285 Self(inner)286 }287 pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {288 self.0289 }290 pub fn common_mut(&mut self) -> &mut pallet_common::CollectionHandle<T> {291 &mut self.0292 }293}294295impl<T: Config> Deref for RefungibleHandle<T> {296 type Target = pallet_common::CollectionHandle<T>;297298 fn deref(&self) -> &Self::Target {299 &self.0300 }301}302303impl<T: Config> WithRecorder<T> for RefungibleHandle<T> {304 fn recorder(&self) -> &pallet_evm_coder_substrate::SubstrateRecorder<T> {305 self.0.recorder()306 }307 fn into_recorder(self) -> pallet_evm_coder_substrate::SubstrateRecorder<T> {308 self.0.into_recorder()309 }310}311312impl<T: Config> Pallet<T> {313 /// Get number of RFT tokens in collection314 pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {315 <TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)316 }317318 /// Check that RFT token exists319 ///320 /// - `token`: Token ID.321 pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {322 <TotalSupply<T>>::contains_key((collection.id, token))323 }324325 pub fn set_scoped_token_property(326 collection_id: CollectionId,327 token_id: TokenId,328 scope: PropertyScope,329 property: Property,330 ) -> DispatchResult {331 TokenProperties::<T>::try_mutate((collection_id, token_id), |properties| {332 properties.try_scoped_set(scope, property.key, property.value)333 })334 .map_err(<CommonError<T>>::from)?;335336 Ok(())337 }338339 pub fn set_scoped_token_properties(340 collection_id: CollectionId,341 token_id: TokenId,342 scope: PropertyScope,343 properties: impl Iterator<Item = Property>,344 ) -> DispatchResult {345 TokenProperties::<T>::try_mutate((collection_id, token_id), |stored_properties| {346 stored_properties.try_scoped_set_from_iter(scope, properties)347 })348 .map_err(<CommonError<T>>::from)?;349350 Ok(())351 }352}353354// unchecked calls skips any permission checks355impl<T: Config> Pallet<T> {356 /// Create RFT collection357 ///358 /// `init_collection` will take non-refundable deposit for collection creation.359 ///360 /// - `data`: Contains settings for collection limits and permissions.361 pub fn init_collection(362 owner: T::CrossAccountId,363 data: CreateCollectionData<T::AccountId>,364 ) -> Result<CollectionId, DispatchError> {365 <PalletCommon<T>>::init_collection(owner, data, false)366 }367368 /// Destroy RFT collection369 ///370 /// `destroy_collection` will throw error if collection contains any tokens.371 /// Only owner can destroy collection.372 pub fn destroy_collection(373 collection: RefungibleHandle<T>,374 sender: &T::CrossAccountId,375 ) -> DispatchResult {376 let id = collection.id;377378 if Self::collection_has_tokens(id) {379 return Err(<CommonError<T>>::CantDestroyNotEmptyCollection.into());380 }381382 // =========383384 PalletCommon::destroy_collection(collection.0, sender)?;385386 <TokensMinted<T>>::remove(id);387 <TokensBurnt<T>>::remove(id);388 <TotalSupply<T>>::remove_prefix((id,), None);389 <Balance<T>>::remove_prefix((id,), None);390 <Allowance<T>>::remove_prefix((id,), None);391 <Owned<T>>::remove_prefix((id,), None);392 <AccountBalance<T>>::remove_prefix((id,), None);393 Ok(())394 }395396 fn collection_has_tokens(collection_id: CollectionId) -> bool {397 <TotalSupply<T>>::iter_prefix((collection_id,))398 .next()399 .is_some()400 }401402 pub fn burn_token_unchecked(403 collection: &RefungibleHandle<T>,404 owner: &T::CrossAccountId,405 token_id: TokenId,406 ) -> DispatchResult {407 let burnt = <TokensBurnt<T>>::get(collection.id)408 .checked_add(1)409 .ok_or(ArithmeticError::Overflow)?;410411 <TokensBurnt<T>>::insert(collection.id, burnt);412 <TokenProperties<T>>::remove((collection.id, token_id));413 <TotalSupply<T>>::remove((collection.id, token_id));414 <Balance<T>>::remove_prefix((collection.id, token_id), None);415 <Allowance<T>>::remove_prefix((collection.id, token_id), None);416417 <PalletEvm<T>>::deposit_log(418 ERC721Events::Transfer {419 from: *owner.as_eth(),420 to: H160::default(),421 token_id: token_id.into(),422 }423 .to_log(collection_id_to_address(collection.id)),424 );425 Ok(())426 }427428 /// Burn RFT token pieces429 ///430 /// `burn` will decrease total amount of token pieces and amount owned by sender.431 /// `burn` can be called even if there are multiple owners of the RFT token.432 /// If sender wouldn't have any pieces left after `burn` than she will stop being433 /// one of the owners of the token. If there is no account that owns any pieces of434 /// the token than token will be burned too.435 ///436 /// - `amount`: Amount of token pieces to burn.437 /// - `token`: Token who's pieces should be burned438 /// - `collection`: Collection that contains the token439 pub fn burn(440 collection: &RefungibleHandle<T>,441 owner: &T::CrossAccountId,442 token: TokenId,443 amount: u128,444 ) -> DispatchResult {445 let total_supply = <TotalSupply<T>>::get((collection.id, token))446 .checked_sub(amount)447 .ok_or(<CommonError<T>>::TokenValueTooLow)?;448449 // This was probally last owner of this token?450 if total_supply == 0 {451 // Ensure user actually owns this amount452 ensure!(453 <Balance<T>>::get((collection.id, token, owner)) == amount,454 <CommonError<T>>::TokenValueTooLow455 );456 let account_balance = <AccountBalance<T>>::get((collection.id, owner))457 .checked_sub(1)458 // Should not occur459 .ok_or(ArithmeticError::Underflow)?;460461 // =========462463 <Owned<T>>::remove((collection.id, owner, token));464 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);465 <AccountBalance<T>>::insert((collection.id, owner), account_balance);466 Self::burn_token_unchecked(collection, owner, token)?;467 <PalletEvm<T>>::deposit_log(468 ERC20Events::Transfer {469 from: *owner.as_eth(),470 to: H160::default(),471 value: amount.into(),472 }473 .to_log(collection_id_to_address(collection.id)),474 );475 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(476 collection.id,477 token,478 owner.clone(),479 amount,480 ));481 return Ok(());482 }483484 let balance = <Balance<T>>::get((collection.id, token, owner))485 .checked_sub(amount)486 .ok_or(<CommonError<T>>::TokenValueTooLow)?;487 let account_balance = if balance == 0 {488 <AccountBalance<T>>::get((collection.id, owner))489 .checked_sub(1)490 // Should not occur491 .ok_or(ArithmeticError::Underflow)?492 } else {493 0494 };495496 // =========497498 if balance == 0 {499 <Owned<T>>::remove((collection.id, owner, token));500 <PalletStructure<T>>::unnest_if_nested(owner, collection.id, token);501 <Balance<T>>::remove((collection.id, token, owner));502 <AccountBalance<T>>::insert((collection.id, owner), account_balance);503504 if let Some(user) = Self::token_owner(collection.id, token) {505 <PalletEvm<T>>::deposit_log(506 ERC721Events::Transfer {507 from: erc::ADDRESS_FOR_PARTIALLY_OWNED_TOKENS,508 to: *user.as_eth(),509 token_id: token.into(),510 }511 .to_log(collection_id_to_address(collection.id)),512 );513 }514 } else {515 <Balance<T>>::insert((collection.id, token, owner), balance);516 }517 <TotalSupply<T>>::insert((collection.id, token), total_supply);518519 <PalletEvm<T>>::deposit_log(520 ERC20Events::Transfer {521 from: *owner.as_eth(),522 to: H160::default(),523 value: amount.into(),524 }525 .to_log(T::EvmTokenAddressMapping::token_to_address(526 collection.id,527 token,528 )),529 );530 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(531 collection.id,532 token,533 owner.clone(),534 amount,535 ));536 Ok(())537 }538539 #[transactional]540 fn modify_token_properties(541 collection: &RefungibleHandle<T>,542 sender: &T::CrossAccountId,543 token_id: TokenId,544 properties: impl Iterator<Item = (PropertyKey, Option<PropertyValue>)>,545 is_token_create: bool,546 nesting_budget: &dyn Budget,547 ) -> DispatchResult {548 let is_collection_admin = || collection.is_owner_or_admin(sender);549 let is_token_owner = || -> Result<bool, DispatchError> {550 let balance = collection.balance(sender.clone(), token_id);551 let total_pieces: u128 =552 Self::total_pieces(collection.id, token_id).unwrap_or(u128::MAX);553 if balance != total_pieces {554 return Ok(false);555 }556557 let is_bundle_owner = <PalletStructure<T>>::check_indirectly_owned(558 sender.clone(),559 collection.id,560 token_id,561 None,562 nesting_budget,563 )?;564565 Ok(is_bundle_owner)566 };567568 for (key, value) in properties {569 let permission = <PalletCommon<T>>::property_permissions(collection.id)570 .get(&key)571 .cloned()572 .unwrap_or_else(PropertyPermission::none);573574 let is_property_exists = TokenProperties::<T>::get((collection.id, token_id))575 .get(&key)576 .is_some();577578 match permission {579 PropertyPermission { mutable: false, .. } if is_property_exists => {580 return Err(<CommonError<T>>::NoPermission.into());581 }582583 PropertyPermission {584 collection_admin,585 token_owner,586 ..587 } => {588 //TODO: investigate threats during public minting.589 let is_token_create =590 is_token_create && (collection_admin || token_owner) && value.is_some();591 if !(is_token_create592 || (collection_admin && is_collection_admin())593 || (token_owner && is_token_owner()?))594 {595 fail!(<CommonError<T>>::NoPermission);596 }597 }598 }599600 match value {601 Some(value) => {602 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {603 properties.try_set(key.clone(), value)604 })605 .map_err(<CommonError<T>>::from)?;606607 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertySet(608 collection.id,609 token_id,610 key,611 ));612 }613 None => {614 <TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {615 properties.remove(&key)616 })617 .map_err(<CommonError<T>>::from)?;618619 <PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertyDeleted(620 collection.id,621 token_id,622 key,623 ));624 }625 }626 }627628 Ok(())629 }630631 pub fn set_token_properties(632 collection: &RefungibleHandle<T>,633 sender: &T::CrossAccountId,634 token_id: TokenId,635 properties: impl Iterator<Item = Property>,636 is_token_create: bool,637 nesting_budget: &dyn Budget,638 ) -> DispatchResult {639 Self::modify_token_properties(640 collection,641 sender,642 token_id,643 properties.map(|p| (p.key, Some(p.value))),644 is_token_create,645 nesting_budget,646 )647 }648649 pub fn set_token_property(650 collection: &RefungibleHandle<T>,651 sender: &T::CrossAccountId,652 token_id: TokenId,653 property: Property,654 nesting_budget: &dyn Budget,655 ) -> DispatchResult {656 let is_token_create = false;657658 Self::set_token_properties(659 collection,660 sender,661 token_id,662 [property].into_iter(),663 is_token_create,664 nesting_budget,665 )666 }667668 pub fn delete_token_properties(669 collection: &RefungibleHandle<T>,670 sender: &T::CrossAccountId,671 token_id: TokenId,672 property_keys: impl Iterator<Item = PropertyKey>,673 nesting_budget: &dyn Budget,674 ) -> DispatchResult {675 let is_token_create = false;676677 Self::modify_token_properties(678 collection,679 sender,680 token_id,681 property_keys.into_iter().map(|key| (key, None)),682 is_token_create,683 nesting_budget,684 )685 }686687 pub fn delete_token_property(688 collection: &RefungibleHandle<T>,689 sender: &T::CrossAccountId,690 token_id: TokenId,691 property_key: PropertyKey,692 nesting_budget: &dyn Budget,693 ) -> DispatchResult {694 Self::delete_token_properties(695 collection,696 sender,697 token_id,698 [property_key].into_iter(),699 nesting_budget,700 )701 }702703 /// Transfer RFT token pieces from one account to another.704 ///705 /// If the sender is no longer owns any pieces after the `transfer` than she stops being an owner of the token.706 ///707 /// - `from`: Owner of token pieces to transfer.708 /// - `to`: Recepient of transfered token pieces.709 /// - `amount`: Amount of token pieces to transfer.710 /// - `token`: Token whos pieces should be transfered711 /// - `collection`: Collection that contains the token712 pub fn transfer(713 collection: &RefungibleHandle<T>,714 from: &T::CrossAccountId,715 to: &T::CrossAccountId,716 token: TokenId,717 amount: u128,718 nesting_budget: &dyn Budget,719 ) -> DispatchResult {720 ensure!(721 collection.limits.transfers_enabled(),722 <CommonError<T>>::TransferNotAllowed723 );724725 if collection.permissions.access() == AccessMode::AllowList {726 collection.check_allowlist(from)?;727 collection.check_allowlist(to)?;728 }729 <PalletCommon<T>>::ensure_correct_receiver(to)?;730731 let initial_balance_from = <Balance<T>>::get((collection.id, token, from));732 let updated_balance_from = initial_balance_from733 .checked_sub(amount)734 .ok_or(<CommonError<T>>::TokenValueTooLow)?;735 let mut create_target = false;736 let from_to_differ = from != to;737 let updated_balance_to = if from != to {738 let old_balance = <Balance<T>>::get((collection.id, token, to));739 if old_balance == 0 {740 create_target = true;741 }742 Some(743 old_balance744 .checked_add(amount)745 .ok_or(ArithmeticError::Overflow)?,746 )747 } else {748 None749 };750751 let account_balance_from = if updated_balance_from == 0 {752 Some(753 <AccountBalance<T>>::get((collection.id, from))754 .checked_sub(1)755 // Should not occur756 .ok_or(ArithmeticError::Underflow)?,757 )758 } else {759 None760 };761 // Account data is created in token, AccountBalance should be increased762 // But only if from != to as we shouldn't check overflow in this case763 let account_balance_to = if create_target && from_to_differ {764 let account_balance_to = <AccountBalance<T>>::get((collection.id, to))765 .checked_add(1)766 .ok_or(ArithmeticError::Overflow)?;767 ensure!(768 account_balance_to < collection.limits.account_token_ownership_limit(),769 <CommonError<T>>::AccountTokenLimitExceeded,770 );771772 Some(account_balance_to)773 } else {774 None775 };776777 // =========778779 <PalletStructure<T>>::nest_if_sent_to_token(780 from.clone(),781 to,782 collection.id,783 token,784 nesting_budget,785 )?;786787 if let Some(updated_balance_to) = updated_balance_to {788 // from != to789 if updated_balance_from == 0 {790 <Balance<T>>::remove((collection.id, token, from));791 <PalletStructure<T>>::unnest_if_nested(from, collection.id, token);792 } else {793 <Balance<T>>::insert((collection.id, token, from), updated_balance_from);794 }795 <Balance<T>>::insert((collection.id, token, to), updated_balance_to);796 if let Some(account_balance_from) = account_balance_from {797 <AccountBalance<T>>::insert((collection.id, from), account_balance_from);798 <Owned<T>>::remove((collection.id, from, token));799 }800 if let Some(account_balance_to) = account_balance_to {801 <AccountBalance<T>>::insert((collection.id, to), account_balance_to);802 <Owned<T>>::insert((collection.id, to, token), true);803 }804 }805806 <PalletEvm<T>>::deposit_log(807 ERC20Events::Transfer {808 from: *from.as_eth(),809 to: *to.as_eth(),810 value: amount.into(),811 }812 .to_log(T::EvmTokenAddressMapping::token_to_address(813 collection.id,814 token,815 )),816 );817818 <PalletCommon<T>>::deposit_event(CommonEvent::Transfer(819 collection.id,820 token,821 from.clone(),822 to.clone(),823 amount,824 ));825826 let total_supply = <TotalSupply<T>>::get((collection.id, token));827828 if amount == total_supply {829 // if token was fully owned by `from` and will be fully owned by `to` after transfer830 <PalletEvm<T>>::deposit_log(831 ERC721Events::Transfer {832 from: *from.as_eth(),833 to: *to.as_eth(),834 token_id: token.into(),835 }836 .to_log(collection_id_to_address(collection.id)),837 );838 } else if let Some(updated_balance_to) = updated_balance_to {839 // if `from` not equals `to`. This condition is needed to avoid sending event840 // when `from` fully owns token and sends part of token pieces to itself.841 if initial_balance_from == total_supply {842 // if token was fully owned by `from` and will be only partially owned by `to`843 // and `from` after transfer844 <PalletEvm<T>>::deposit_log(845 ERC721Events::Transfer {846 from: *from.as_eth(),847 to: erc::ADDRESS_FOR_PARTIALLY_OWNED_TOKENS,848 token_id: token.into(),849 }850 .to_log(collection_id_to_address(collection.id)),851 );852 } else if updated_balance_to == total_supply {853 // if token was partially owned by `from` and will be fully owned by `to` after transfer854 <PalletEvm<T>>::deposit_log(855 ERC721Events::Transfer {856 from: erc::ADDRESS_FOR_PARTIALLY_OWNED_TOKENS,857 to: *to.as_eth(),858 token_id: token.into(),859 }860 .to_log(collection_id_to_address(collection.id)),861 );862 }863 }864865 Ok(())866 }867868 /// Batched operation to create multiple RFT tokens.869 ///870 /// Same as `create_item` but creates multiple tokens.871 ///872 /// - `data`: Same as 'data` in `create_item` but contains data for multiple tokens.873 pub fn create_multiple_items(874 collection: &RefungibleHandle<T>,875 sender: &T::CrossAccountId,876 data: Vec<CreateItemData<T>>,877 nesting_budget: &dyn Budget,878 ) -> DispatchResult {879 if !collection.is_owner_or_admin(sender) {880 ensure!(881 collection.permissions.mint_mode(),882 <CommonError<T>>::PublicMintingNotAllowed883 );884 collection.check_allowlist(sender)?;885886 for item in data.iter() {887 for user in item.users.keys() {888 collection.check_allowlist(user)?;889 }890 }891 }892893 for item in data.iter() {894 for (owner, _) in item.users.iter() {895 <PalletCommon<T>>::ensure_correct_receiver(owner)?;896 }897 }898899 // Total pieces per tokens900 let totals = data901 .iter()902 .map(|data| {903 Ok(data904 .users905 .iter()906 .map(|u| u.1)907 .try_fold(0u128, |acc, v| acc.checked_add(*v))908 .ok_or(ArithmeticError::Overflow)?)909 })910 .collect::<Result<Vec<_>, DispatchError>>()?;911 for total in &totals {912 ensure!(913 *total <= MAX_REFUNGIBLE_PIECES,914 <Error<T>>::WrongRefungiblePieces915 );916 }917918 let first_token_id = <TokensMinted<T>>::get(collection.id);919 let tokens_minted = first_token_id920 .checked_add(data.len() as u32)921 .ok_or(ArithmeticError::Overflow)?;922 ensure!(923 tokens_minted < collection.limits.token_limit(),924 <CommonError<T>>::CollectionTokenLimitExceeded925 );926927 let mut balances = BTreeMap::new();928 for data in &data {929 for owner in data.users.keys() {930 let balance = balances931 .entry(owner)932 .or_insert_with(|| <AccountBalance<T>>::get((collection.id, owner)));933 *balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;934935 ensure!(936 *balance <= collection.limits.account_token_ownership_limit(),937 <CommonError<T>>::AccountTokenLimitExceeded,938 );939 }940 }941942 for (i, token) in data.iter().enumerate() {943 let token_id = TokenId(first_token_id + i as u32 + 1);944 for (to, _) in token.users.iter() {945 <PalletStructure<T>>::check_nesting(946 sender.clone(),947 to,948 collection.id,949 token_id,950 nesting_budget,951 )?;952 }953 }954955 // =========956957 with_transaction(|| {958 for (i, data) in data.iter().enumerate() {959 let token_id = first_token_id + i as u32 + 1;960 <TotalSupply<T>>::insert((collection.id, token_id), totals[i]);961962 for (user, amount) in data.users.iter() {963 if *amount == 0 {964 continue;965 }966 <Balance<T>>::insert((collection.id, token_id, &user), amount);967 <Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);968 <PalletStructure<T>>::nest_if_sent_to_token_unchecked(969 user,970 collection.id,971 TokenId(token_id),972 );973 }974975 if let Err(e) = Self::set_token_properties(976 collection,977 sender,978 TokenId(token_id),979 data.properties.clone().into_iter(),980 true,981 nesting_budget,982 ) {983 return TransactionOutcome::Rollback(Err(e));984 }985 }986 TransactionOutcome::Commit(Ok(()))987 })?;988989 <TokensMinted<T>>::insert(collection.id, tokens_minted);990991 for (account, balance) in balances {992 <AccountBalance<T>>::insert((collection.id, account), balance);993 }994995 for (i, token) in data.into_iter().enumerate() {996 let token_id = first_token_id + i as u32 + 1;997998 let receivers = token999 .users1000 .into_iter()1001 .filter(|(_, amount)| *amount > 0)1002 .collect::<Vec<_>>();10031004 if let [(user, _)] = receivers.as_slice() {1005 // if there is exactly one receiver1006 <PalletEvm<T>>::deposit_log(1007 ERC721Events::Transfer {1008 from: H160::default(),1009 to: *user.as_eth(),1010 token_id: token_id.into(),1011 }1012 .to_log(collection_id_to_address(collection.id)),1013 );1014 } else if let [_, ..] = receivers.as_slice() {1015 // if there is more than one receiver1016 <PalletEvm<T>>::deposit_log(1017 ERC721Events::Transfer {1018 from: H160::default(),1019 to: erc::ADDRESS_FOR_PARTIALLY_OWNED_TOKENS,1020 token_id: token_id.into(),1021 }1022 .to_log(collection_id_to_address(collection.id)),1023 );1024 }10251026 for (user, amount) in receivers.into_iter() {1027 <PalletEvm<T>>::deposit_log(1028 ERC20Events::Transfer {1029 from: H160::default(),1030 to: *user.as_eth(),1031 value: amount.into(),1032 }1033 .to_log(T::EvmTokenAddressMapping::token_to_address(1034 collection.id,1035 TokenId(token_id),1036 )),1037 );1038 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(1039 collection.id,1040 TokenId(token_id),1041 user,1042 amount,1043 ));1044 }1045 }1046 Ok(())1047 }10481049 pub fn set_allowance_unchecked(1050 collection: &RefungibleHandle<T>,1051 sender: &T::CrossAccountId,1052 spender: &T::CrossAccountId,1053 token: TokenId,1054 amount: u128,1055 ) {1056 if amount == 0 {1057 <Allowance<T>>::remove((collection.id, token, sender, spender));1058 } else {1059 <Allowance<T>>::insert((collection.id, token, sender, spender), amount);1060 }10611062 <PalletEvm<T>>::deposit_log(1063 ERC20Events::Approval {1064 owner: *sender.as_eth(),1065 spender: *spender.as_eth(),1066 value: amount.into(),1067 }1068 .to_log(T::EvmTokenAddressMapping::token_to_address(1069 collection.id,1070 token,1071 )),1072 );1073 <PalletCommon<T>>::deposit_event(CommonEvent::Approved(1074 collection.id,1075 token,1076 sender.clone(),1077 spender.clone(),1078 amount,1079 ))1080 }10811082 /// Set allowance for the spender to `transfer` or `burn` sender's token pieces.1083 ///1084 /// - `amount`: Amount of token pieces the spender is allowed to `transfer` or `burn.1085 pub fn set_allowance(1086 collection: &RefungibleHandle<T>,1087 sender: &T::CrossAccountId,1088 spender: &T::CrossAccountId,1089 token: TokenId,1090 amount: u128,1091 ) -> DispatchResult {1092 if collection.permissions.access() == AccessMode::AllowList {1093 collection.check_allowlist(sender)?;1094 collection.check_allowlist(spender)?;1095 }10961097 <PalletCommon<T>>::ensure_correct_receiver(spender)?;10981099 if <Balance<T>>::get((collection.id, token, sender)) < amount {1100 ensure!(1101 collection.ignores_owned_amount(sender) && Self::token_exists(collection, token),1102 <CommonError<T>>::CantApproveMoreThanOwned1103 );1104 }11051106 // =========11071108 Self::set_allowance_unchecked(collection, sender, spender, token, amount);1109 Ok(())1110 }11111112 /// Returns allowance, which should be set after transaction1113 fn check_allowed(1114 collection: &RefungibleHandle<T>,1115 spender: &T::CrossAccountId,1116 from: &T::CrossAccountId,1117 token: TokenId,1118 amount: u128,1119 nesting_budget: &dyn Budget,1120 ) -> Result<Option<u128>, DispatchError> {1121 if spender.conv_eq(from) {1122 return Ok(None);1123 }1124 if collection.permissions.access() == AccessMode::AllowList {1125 // `from`, `to` checked in [`transfer`]1126 collection.check_allowlist(spender)?;1127 }1128 if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {1129 // TODO: should collection owner be allowed to perform this transfer?1130 ensure!(1131 <PalletStructure<T>>::check_indirectly_owned(1132 spender.clone(),1133 source.0,1134 source.1,1135 None,1136 nesting_budget1137 )?,1138 <CommonError<T>>::ApprovedValueTooLow,1139 );1140 return Ok(None);1141 }1142 let allowance =1143 <Allowance<T>>::get((collection.id, token, from, &spender)).checked_sub(amount);1144 if allowance.is_none() {1145 ensure!(1146 collection.ignores_allowance(spender),1147 <CommonError<T>>::ApprovedValueTooLow1148 );1149 }1150 Ok(allowance)1151 }11521153 /// Transfer RFT token pieces from one account to another.1154 ///1155 /// Same as the [`transfer`] but spender doesn't needs to be an owner of the token pieces.1156 /// The owner should set allowance for the spender to transfer pieces.1157 ///1158 /// [`transfer`]: struct.Pallet.html#method.transfer1159 pub fn transfer_from(1160 collection: &RefungibleHandle<T>,1161 spender: &T::CrossAccountId,1162 from: &T::CrossAccountId,1163 to: &T::CrossAccountId,1164 token: TokenId,1165 amount: u128,1166 nesting_budget: &dyn Budget,1167 ) -> DispatchResult {1168 let allowance =1169 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;11701171 // =========11721173 Self::transfer(collection, from, to, token, amount, nesting_budget)?;1174 if let Some(allowance) = allowance {1175 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1176 }1177 Ok(())1178 }11791180 /// Burn RFT token pieces from the account.1181 ///1182 /// Same as the [`burn`] but spender doesn't need to be an owner of the token pieces. The owner should1183 /// set allowance for the spender to burn pieces1184 ///1185 /// [`burn`]: struct.Pallet.html#method.burn1186 pub fn burn_from(1187 collection: &RefungibleHandle<T>,1188 spender: &T::CrossAccountId,1189 from: &T::CrossAccountId,1190 token: TokenId,1191 amount: u128,1192 nesting_budget: &dyn Budget,1193 ) -> DispatchResult {1194 let allowance =1195 Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;11961197 // =========11981199 Self::burn(collection, from, token, amount)?;1200 if let Some(allowance) = allowance {1201 Self::set_allowance_unchecked(collection, from, spender, token, allowance);1202 }1203 Ok(())1204 }12051206 /// Create RFT token.1207 ///1208 /// The sender should be the owner/admin of the collection or collection should be configured1209 /// to allow public minting.1210 ///1211 /// - `data`: Contains list of users who will become the owners of the token pieces and amount1212 /// of token pieces they will receive.1213 pub fn create_item(1214 collection: &RefungibleHandle<T>,1215 sender: &T::CrossAccountId,1216 data: CreateItemData<T>,1217 nesting_budget: &dyn Budget,1218 ) -> DispatchResult {1219 Self::create_multiple_items(collection, sender, vec![data], nesting_budget)1220 }12211222 /// Repartition RFT token.1223 ///1224 /// `repartition` will set token balance of the sender and total amount of token pieces.1225 /// Sender should own all of the token pieces. `repartition' could be done even if some1226 /// token pieces were burned before.1227 ///1228 /// - `amount`: Total amount of token pieces that the token will have after `repartition`.1229 pub fn repartition(1230 collection: &RefungibleHandle<T>,1231 owner: &T::CrossAccountId,1232 token: TokenId,1233 amount: u128,1234 ) -> DispatchResult {1235 ensure!(1236 amount <= MAX_REFUNGIBLE_PIECES,1237 <Error<T>>::WrongRefungiblePieces1238 );1239 ensure!(amount > 0, <CommonError<T>>::TokenValueTooLow);1240 // Ensure user owns all pieces1241 let total_pieces = Self::total_pieces(collection.id, token).unwrap_or(u128::MAX);1242 let balance = <Balance<T>>::get((collection.id, token, owner));1243 ensure!(1244 total_pieces == balance,1245 <Error<T>>::RepartitionWhileNotOwningAllPieces1246 );12471248 <Balance<T>>::insert((collection.id, token, owner), amount);1249 <TotalSupply<T>>::insert((collection.id, token), amount);12501251 if amount > total_pieces {1252 let mint_amount = amount - total_pieces;1253 <PalletEvm<T>>::deposit_log(1254 ERC20Events::Transfer {1255 from: H160::default(),1256 to: *owner.as_eth(),1257 value: mint_amount.into(),1258 }1259 .to_log(T::EvmTokenAddressMapping::token_to_address(1260 collection.id,1261 token,1262 )),1263 );1264 <PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(1265 collection.id,1266 token,1267 owner.clone(),1268 mint_amount,1269 ));1270 } else if total_pieces > amount {1271 let burn_amount = total_pieces - amount;1272 <PalletEvm<T>>::deposit_log(1273 ERC20Events::Transfer {1274 from: *owner.as_eth(),1275 to: H160::default(),1276 value: burn_amount.into(),1277 }1278 .to_log(T::EvmTokenAddressMapping::token_to_address(1279 collection.id,1280 token,1281 )),1282 );1283 <PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(1284 collection.id,1285 token,1286 owner.clone(),1287 burn_amount,1288 ));1289 }12901291 Ok(())1292 }12931294 fn token_owner(collection_id: CollectionId, token_id: TokenId) -> Option<T::CrossAccountId> {1295 let mut owner = None;1296 let mut count = 0;1297 for key in Balance::<T>::iter_key_prefix((collection_id, token_id)) {1298 count += 1;1299 if count > 1 {1300 return None;1301 }1302 owner = Some(key);1303 }1304 owner1305 }13061307 fn total_pieces(collection_id: CollectionId, token_id: TokenId) -> Option<u128> {1308 <TotalSupply<T>>::try_get((collection_id, token_id)).ok()1309 }13101311 pub fn set_collection_properties(1312 collection: &RefungibleHandle<T>,1313 sender: &T::CrossAccountId,1314 properties: Vec<Property>,1315 ) -> DispatchResult {1316 <PalletCommon<T>>::set_collection_properties(collection, sender, properties)1317 }13181319 pub fn delete_collection_properties(1320 collection: &RefungibleHandle<T>,1321 sender: &T::CrossAccountId,1322 property_keys: Vec<PropertyKey>,1323 ) -> DispatchResult {1324 <PalletCommon<T>>::delete_collection_properties(collection, sender, property_keys)1325 }13261327 pub fn set_token_property_permissions(1328 collection: &RefungibleHandle<T>,1329 sender: &T::CrossAccountId,1330 property_permissions: Vec<PropertyKeyPermission>,1331 ) -> DispatchResult {1332 <PalletCommon<T>>::set_token_property_permissions(collection, sender, property_permissions)1333 }13341335 /// Returns 10 token in no particular order.1336 ///1337 /// There is no direct way to get token holders in ascending order,1338 /// since `iter_prefix` returns values in no particular order.1339 /// Therefore, getting the 10 largest holders with a large value of holders1340 /// can lead to impact memory allocation + sorting with `n * log (n)`.1341 pub fn token_owners(1342 collection_id: CollectionId,1343 token: TokenId,1344 ) -> Option<Vec<T::CrossAccountId>> {1345 let res: Vec<T::CrossAccountId> = <Balance<T>>::iter_prefix((collection_id, token))1346 .map(|(owner, _amount)| owner)1347 .take(10)1348 .collect();13491350 if res.is_empty() {1351 None1352 } else {1353 Some(res)1354 }1355 }1356}pallets/refungible/src/stubs/UniqueRefungible.rawdiffbeforeafterbothbinary blob — no preview
pallets/refungible/src/stubs/UniqueRefungible.soldiffbeforeafterboth--- a/pallets/refungible/src/stubs/UniqueRefungible.sol
+++ b/pallets/refungible/src/stubs/UniqueRefungible.sol
@@ -3,6 +3,12 @@
pragma solidity >=0.8.0 <0.9.0;
+// Anonymous struct
+struct Tuple0 {
+ uint256 field_0;
+ string field_1;
+}
+
// Common stubs holder
contract Dummy {
uint8 dummy;
@@ -21,6 +27,392 @@
}
}
+// Inline
+contract ERC721Events {
+ event Transfer(
+ address indexed from,
+ address indexed to,
+ uint256 indexed tokenId
+ );
+ event Approval(
+ address indexed owner,
+ address indexed approved,
+ uint256 indexed tokenId
+ );
+ event ApprovalForAll(
+ address indexed owner,
+ address indexed operator,
+ bool approved
+ );
+}
+
+// Inline
+contract ERC721MintableEvents {
+ event MintingFinished();
+}
+
+// Selector: 41369377
+contract TokenProperties is Dummy, ERC165 {
+ // @notice Set permissions for token property.
+ // @dev Throws error if `msg.sender` is not admin or owner of the collection.
+ // @param key Property key.
+ // @param is_mutable Permission to mutate property.
+ // @param collection_admin Permission to mutate property by collection admin if property is mutable.
+ // @param token_owner Permission to mutate property by token owner if property is mutable.
+ //
+ // Selector: setTokenPropertyPermission(string,bool,bool,bool) 222d97fa
+ function setTokenPropertyPermission(
+ string memory key,
+ bool isMutable,
+ bool collectionAdmin,
+ bool tokenOwner
+ ) public {
+ require(false, stub_error);
+ key;
+ isMutable;
+ collectionAdmin;
+ tokenOwner;
+ dummy = 0;
+ }
+
+ // @notice Set token property value.
+ // @dev Throws error if `msg.sender` has no permission to edit the property.
+ // @param tokenId ID of the token.
+ // @param key Property key.
+ // @param value Property value.
+ //
+ // Selector: setProperty(uint256,string,bytes) 1752d67b
+ function setProperty(
+ uint256 tokenId,
+ string memory key,
+ bytes memory value
+ ) public {
+ require(false, stub_error);
+ tokenId;
+ key;
+ value;
+ dummy = 0;
+ }
+
+ // @notice Delete token property value.
+ // @dev Throws error if `msg.sender` has no permission to edit the property.
+ // @param tokenId ID of the token.
+ // @param key Property key.
+ //
+ // Selector: deleteProperty(uint256,string) 066111d1
+ function deleteProperty(uint256 tokenId, string memory key) public {
+ require(false, stub_error);
+ tokenId;
+ key;
+ dummy = 0;
+ }
+
+ // @notice Get token property value.
+ // @dev Throws error if key not found
+ // @param tokenId ID of the token.
+ // @param key Property key.
+ // @return Property value bytes
+ //
+ // Selector: property(uint256,string) 7228c327
+ function property(uint256 tokenId, string memory key)
+ public
+ view
+ returns (bytes memory)
+ {
+ require(false, stub_error);
+ tokenId;
+ key;
+ dummy;
+ return hex"";
+ }
+}
+
+// Selector: 42966c68
+contract ERC721Burnable is Dummy, ERC165 {
+ // @notice Burns a specific ERC721 token.
+ // @dev Throws unless `msg.sender` is the current RFT owner, or an authorized
+ // operator of the current owner.
+ // @param tokenId The RFT to approve
+ //
+ // Selector: burn(uint256) 42966c68
+ function burn(uint256 tokenId) public {
+ require(false, stub_error);
+ tokenId;
+ dummy = 0;
+ }
+}
+
+// Selector: 58800161
+contract ERC721 is Dummy, ERC165, ERC721Events {
+ // @notice Count all RFTs assigned to an owner
+ // @dev RFTs assigned to the zero address are considered invalid, and this
+ // function throws for queries about the zero address.
+ // @param owner An address for whom to query the balance
+ // @return The number of RFTs owned by `owner`, possibly zero
+ //
+ // Selector: balanceOf(address) 70a08231
+ function balanceOf(address owner) public view returns (uint256) {
+ require(false, stub_error);
+ owner;
+ dummy;
+ return 0;
+ }
+
+ // @notice Find the owner of an RFT
+ // @dev RFTs assigned to zero address are considered invalid, and queries
+ // about them do throw.
+ // Returns special 0xffffffffffffffffffffffffffffffffffffffff address for
+ // the tokens that are partially owned.
+ // @param tokenId The identifier for an RFT
+ // @return The address of the owner of the RFT
+ //
+ // Selector: ownerOf(uint256) 6352211e
+ function ownerOf(uint256 tokenId) public view returns (address) {
+ require(false, stub_error);
+ tokenId;
+ dummy;
+ return 0x0000000000000000000000000000000000000000;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: safeTransferFromWithData(address,address,uint256,bytes) 60a11672
+ function safeTransferFromWithData(
+ address from,
+ address to,
+ uint256 tokenId,
+ bytes memory data
+ ) public {
+ require(false, stub_error);
+ from;
+ to;
+ tokenId;
+ data;
+ dummy = 0;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: safeTransferFrom(address,address,uint256) 42842e0e
+ function safeTransferFrom(
+ address from,
+ address to,
+ uint256 tokenId
+ ) public {
+ require(false, stub_error);
+ from;
+ to;
+ tokenId;
+ dummy = 0;
+ }
+
+ // @notice Transfer ownership of an RFT -- THE CALLER IS RESPONSIBLE
+ // TO CONFIRM THAT `to` IS CAPABLE OF RECEIVING NFTS OR ELSE
+ // THEY MAY BE PERMANENTLY LOST
+ // @dev Throws unless `msg.sender` is the current owner or an authorized
+ // operator for this RFT. Throws if `from` is not the current owner. Throws
+ // if `to` is the zero address. Throws if `tokenId` is not a valid RFT.
+ // Throws if RFT pieces have multiple owners.
+ // @param from The current owner of the NFT
+ // @param to The new owner
+ // @param tokenId The NFT to transfer
+ // @param _value Not used for an NFT
+ //
+ // Selector: transferFrom(address,address,uint256) 23b872dd
+ function transferFrom(
+ address from,
+ address to,
+ uint256 tokenId
+ ) public {
+ require(false, stub_error);
+ from;
+ to;
+ tokenId;
+ dummy = 0;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: approve(address,uint256) 095ea7b3
+ function approve(address approved, uint256 tokenId) public {
+ require(false, stub_error);
+ approved;
+ tokenId;
+ dummy = 0;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: setApprovalForAll(address,bool) a22cb465
+ function setApprovalForAll(address operator, bool approved) public {
+ require(false, stub_error);
+ operator;
+ approved;
+ dummy = 0;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: getApproved(uint256) 081812fc
+ function getApproved(uint256 tokenId) public view returns (address) {
+ require(false, stub_error);
+ tokenId;
+ dummy;
+ return 0x0000000000000000000000000000000000000000;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: isApprovedForAll(address,address) e985e9c5
+ function isApprovedForAll(address owner, address operator)
+ public
+ view
+ returns (address)
+ {
+ require(false, stub_error);
+ owner;
+ operator;
+ dummy;
+ return 0x0000000000000000000000000000000000000000;
+ }
+}
+
+// Selector: 5b5e139f
+contract ERC721Metadata is Dummy, ERC165 {
+ // @notice A descriptive name for a collection of RFTs in this contract
+ //
+ // Selector: name() 06fdde03
+ function name() public view returns (string memory) {
+ require(false, stub_error);
+ dummy;
+ return "";
+ }
+
+ // @notice An abbreviated name for RFTs in this contract
+ //
+ // Selector: symbol() 95d89b41
+ function symbol() public view returns (string memory) {
+ require(false, stub_error);
+ dummy;
+ return "";
+ }
+
+ // @notice A distinct Uniform Resource Identifier (URI) for a given asset.
+ //
+ // @dev If the token has a `url` property and it is not empty, it is returned.
+ // Else If the collection does not have a property with key `schemaName` or its value is not equal to `ERC721Metadata`, it return an error `tokenURI not set`.
+ // If the collection property `baseURI` is empty or absent, return "" (empty string)
+ // otherwise, if token property `suffix` present and is non-empty, return concatenation of baseURI and suffix
+ // otherwise, return concatenation of `baseURI` and stringified token id (decimal stringifying, without paddings).
+ //
+ // @return token's const_metadata
+ //
+ // Selector: tokenURI(uint256) c87b56dd
+ function tokenURI(uint256 tokenId) public view returns (string memory) {
+ require(false, stub_error);
+ tokenId;
+ dummy;
+ return "";
+ }
+}
+
+// Selector: 68ccfe89
+contract ERC721Mintable is Dummy, ERC165, ERC721MintableEvents {
+ // Selector: mintingFinished() 05d2035b
+ function mintingFinished() public view returns (bool) {
+ require(false, stub_error);
+ dummy;
+ return false;
+ }
+
+ // @notice Function to mint token.
+ // @dev `tokenId` should be obtained with `nextTokenId` method,
+ // unlike standard, you can't specify it manually
+ // @param to The new owner
+ // @param tokenId ID of the minted RFT
+ //
+ // Selector: mint(address,uint256) 40c10f19
+ function mint(address to, uint256 tokenId) public returns (bool) {
+ require(false, stub_error);
+ to;
+ tokenId;
+ dummy = 0;
+ return false;
+ }
+
+ // @notice Function to mint token with the given tokenUri.
+ // @dev `tokenId` should be obtained with `nextTokenId` method,
+ // unlike standard, you can't specify it manually
+ // @param to The new owner
+ // @param tokenId ID of the minted RFT
+ // @param tokenUri Token URI that would be stored in the RFT properties
+ //
+ // Selector: mintWithTokenURI(address,uint256,string) 50bb4e7f
+ function mintWithTokenURI(
+ address to,
+ uint256 tokenId,
+ string memory tokenUri
+ ) public returns (bool) {
+ require(false, stub_error);
+ to;
+ tokenId;
+ tokenUri;
+ dummy = 0;
+ return false;
+ }
+
+ // @dev Not implemented
+ //
+ // Selector: finishMinting() 7d64bcb4
+ function finishMinting() public returns (bool) {
+ require(false, stub_error);
+ dummy = 0;
+ return false;
+ }
+}
+
+// Selector: 780e9d63
+contract ERC721Enumerable is Dummy, ERC165 {
+ // @notice Enumerate valid RFTs
+ // @param index A counter less than `totalSupply()`
+ // @return The token identifier for the `index`th NFT,
+ // (sort order not specified)
+ //
+ // Selector: tokenByIndex(uint256) 4f6ccce7
+ function tokenByIndex(uint256 index) public view returns (uint256) {
+ require(false, stub_error);
+ index;
+ dummy;
+ return 0;
+ }
+
+ // Not implemented
+ //
+ // Selector: tokenOfOwnerByIndex(address,uint256) 2f745c59
+ function tokenOfOwnerByIndex(address owner, uint256 index)
+ public
+ view
+ returns (uint256)
+ {
+ require(false, stub_error);
+ owner;
+ index;
+ dummy;
+ return 0;
+ }
+
+ // @notice Count RFTs tracked by this contract
+ // @return A count of valid RFTs tracked by this contract, where each one of
+ // them has an assigned and queryable owner not equal to the zero address
+ //
+ // Selector: totalSupply() 18160ddd
+ function totalSupply() public view returns (uint256) {
+ require(false, stub_error);
+ dummy;
+ return 0;
+ }
+}
+
// Selector: 7d9262e6
contract Collection is Dummy, ERC165 {
// Set collection property.
@@ -248,4 +640,96 @@
}
}
-contract UniqueRefungible is Dummy, ERC165, Collection {}
+// Selector: d74d154f
+contract ERC721UniqueExtensions is Dummy, ERC165 {
+ // @notice Transfer ownership of an RFT
+ // @dev Throws unless `msg.sender` is the current owner. Throws if `to`
+ // is the zero address. Throws if `tokenId` is not a valid RFT.
+ // Throws if RFT pieces have multiple owners.
+ // @param to The new owner
+ // @param tokenId The RFT to transfer
+ // @param _value Not used for an RFT
+ //
+ // Selector: transfer(address,uint256) a9059cbb
+ function transfer(address to, uint256 tokenId) public {
+ require(false, stub_error);
+ to;
+ tokenId;
+ dummy = 0;
+ }
+
+ // @notice Burns a specific ERC721 token.
+ // @dev Throws unless `msg.sender` is the current owner or an authorized
+ // operator for this RFT. Throws if `from` is not the current owner. Throws
+ // if `to` is the zero address. Throws if `tokenId` is not a valid RFT.
+ // Throws if RFT pieces have multiple owners.
+ // @param from The current owner of the RFT
+ // @param tokenId The RFT to transfer
+ // @param _value Not used for an RFT
+ //
+ // Selector: burnFrom(address,uint256) 79cc6790
+ function burnFrom(address from, uint256 tokenId) public {
+ require(false, stub_error);
+ from;
+ tokenId;
+ dummy = 0;
+ }
+
+ // @notice Returns next free RFT ID.
+ //
+ // Selector: nextTokenId() 75794a3c
+ function nextTokenId() public view returns (uint256) {
+ require(false, stub_error);
+ dummy;
+ return 0;
+ }
+
+ // @notice Function to mint multiple tokens.
+ // @dev `tokenIds` should be an array of consecutive numbers and first number
+ // should be obtained with `nextTokenId` method
+ // @param to The new owner
+ // @param tokenIds IDs of the minted RFTs
+ //
+ // Selector: mintBulk(address,uint256[]) 44a9945e
+ function mintBulk(address to, uint256[] memory tokenIds)
+ public
+ returns (bool)
+ {
+ require(false, stub_error);
+ to;
+ tokenIds;
+ dummy = 0;
+ return false;
+ }
+
+ // @notice Function to mint multiple tokens with the given tokenUris.
+ // @dev `tokenIds` is array of pairs of token ID and token URI. Token IDs should be consecutive
+ // numbers and first number should be obtained with `nextTokenId` method
+ // @param to The new owner
+ // @param tokens array of pairs of token ID and token URI for minted tokens
+ //
+ // Selector: mintBulkWithTokenURI(address,(uint256,string)[]) 36543006
+ function mintBulkWithTokenURI(address to, Tuple0[] memory tokens)
+ public
+ returns (bool)
+ {
+ require(false, stub_error);
+ to;
+ tokens;
+ dummy = 0;
+ return false;
+ }
+}
+
+contract UniqueRefungible is
+ Dummy,
+ ERC165,
+ ERC721,
+ ERC721Metadata,
+ ERC721Enumerable,
+ ERC721UniqueExtensions,
+ ERC721Mintable,
+ ERC721Burnable,
+ Collection,
+ TokenProperties
+{}
tests/src/eth/api/UniqueRefungible.soldiffbeforeafterboth--- a/tests/src/eth/api/UniqueRefungible.sol
+++ b/tests/src/eth/api/UniqueRefungible.sol
@@ -3,6 +3,12 @@
pragma solidity >=0.8.0 <0.9.0;
+// Anonymous struct
+struct Tuple0 {
+ uint256 field_0;
+ string field_1;
+}
+
// Common stubs holder
interface Dummy {
@@ -12,6 +18,262 @@
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
+// Inline
+interface ERC721Events {
+ event Transfer(
+ address indexed from,
+ address indexed to,
+ uint256 indexed tokenId
+ );
+ event Approval(
+ address indexed owner,
+ address indexed approved,
+ uint256 indexed tokenId
+ );
+ event ApprovalForAll(
+ address indexed owner,
+ address indexed operator,
+ bool approved
+ );
+}
+
+// Inline
+interface ERC721MintableEvents {
+ event MintingFinished();
+}
+
+// Selector: 41369377
+interface TokenProperties is Dummy, ERC165 {
+ // @notice Set permissions for token property.
+ // @dev Throws error if `msg.sender` is not admin or owner of the collection.
+ // @param key Property key.
+ // @param is_mutable Permission to mutate property.
+ // @param collection_admin Permission to mutate property by collection admin if property is mutable.
+ // @param token_owner Permission to mutate property by token owner if property is mutable.
+ //
+ // Selector: setTokenPropertyPermission(string,bool,bool,bool) 222d97fa
+ function setTokenPropertyPermission(
+ string memory key,
+ bool isMutable,
+ bool collectionAdmin,
+ bool tokenOwner
+ ) external;
+
+ // @notice Set token property value.
+ // @dev Throws error if `msg.sender` has no permission to edit the property.
+ // @param tokenId ID of the token.
+ // @param key Property key.
+ // @param value Property value.
+ //
+ // Selector: setProperty(uint256,string,bytes) 1752d67b
+ function setProperty(
+ uint256 tokenId,
+ string memory key,
+ bytes memory value
+ ) external;
+
+ // @notice Delete token property value.
+ // @dev Throws error if `msg.sender` has no permission to edit the property.
+ // @param tokenId ID of the token.
+ // @param key Property key.
+ //
+ // Selector: deleteProperty(uint256,string) 066111d1
+ function deleteProperty(uint256 tokenId, string memory key) external;
+
+ // @notice Get token property value.
+ // @dev Throws error if key not found
+ // @param tokenId ID of the token.
+ // @param key Property key.
+ // @return Property value bytes
+ //
+ // Selector: property(uint256,string) 7228c327
+ function property(uint256 tokenId, string memory key)
+ external
+ view
+ returns (bytes memory);
+}
+
+// Selector: 42966c68
+interface ERC721Burnable is Dummy, ERC165 {
+ // @notice Burns a specific ERC721 token.
+ // @dev Throws unless `msg.sender` is the current RFT owner, or an authorized
+ // operator of the current owner.
+ // @param tokenId The RFT to approve
+ //
+ // Selector: burn(uint256) 42966c68
+ function burn(uint256 tokenId) external;
+}
+
+// Selector: 58800161
+interface ERC721 is Dummy, ERC165, ERC721Events {
+ // @notice Count all RFTs assigned to an owner
+ // @dev RFTs assigned to the zero address are considered invalid, and this
+ // function throws for queries about the zero address.
+ // @param owner An address for whom to query the balance
+ // @return The number of RFTs owned by `owner`, possibly zero
+ //
+ // Selector: balanceOf(address) 70a08231
+ function balanceOf(address owner) external view returns (uint256);
+
+ // @notice Find the owner of an RFT
+ // @dev RFTs assigned to zero address are considered invalid, and queries
+ // about them do throw.
+ // Returns special 0xffffffffffffffffffffffffffffffffffffffff address for
+ // the tokens that are partially owned.
+ // @param tokenId The identifier for an RFT
+ // @return The address of the owner of the RFT
+ //
+ // Selector: ownerOf(uint256) 6352211e
+ function ownerOf(uint256 tokenId) external view returns (address);
+
+ // @dev Not implemented
+ //
+ // Selector: safeTransferFromWithData(address,address,uint256,bytes) 60a11672
+ function safeTransferFromWithData(
+ address from,
+ address to,
+ uint256 tokenId,
+ bytes memory data
+ ) external;
+
+ // @dev Not implemented
+ //
+ // Selector: safeTransferFrom(address,address,uint256) 42842e0e
+ function safeTransferFrom(
+ address from,
+ address to,
+ uint256 tokenId
+ ) external;
+
+ // @notice Transfer ownership of an RFT -- THE CALLER IS RESPONSIBLE
+ // TO CONFIRM THAT `to` IS CAPABLE OF RECEIVING NFTS OR ELSE
+ // THEY MAY BE PERMANENTLY LOST
+ // @dev Throws unless `msg.sender` is the current owner or an authorized
+ // operator for this RFT. Throws if `from` is not the current owner. Throws
+ // if `to` is the zero address. Throws if `tokenId` is not a valid RFT.
+ // Throws if RFT pieces have multiple owners.
+ // @param from The current owner of the NFT
+ // @param to The new owner
+ // @param tokenId The NFT to transfer
+ // @param _value Not used for an NFT
+ //
+ // Selector: transferFrom(address,address,uint256) 23b872dd
+ function transferFrom(
+ address from,
+ address to,
+ uint256 tokenId
+ ) external;
+
+ // @dev Not implemented
+ //
+ // Selector: approve(address,uint256) 095ea7b3
+ function approve(address approved, uint256 tokenId) external;
+
+ // @dev Not implemented
+ //
+ // Selector: setApprovalForAll(address,bool) a22cb465
+ function setApprovalForAll(address operator, bool approved) external;
+
+ // @dev Not implemented
+ //
+ // Selector: getApproved(uint256) 081812fc
+ function getApproved(uint256 tokenId) external view returns (address);
+
+ // @dev Not implemented
+ //
+ // Selector: isApprovedForAll(address,address) e985e9c5
+ function isApprovedForAll(address owner, address operator)
+ external
+ view
+ returns (address);
+}
+
+// Selector: 5b5e139f
+interface ERC721Metadata is Dummy, ERC165 {
+ // @notice A descriptive name for a collection of RFTs in this contract
+ //
+ // Selector: name() 06fdde03
+ function name() external view returns (string memory);
+
+ // @notice An abbreviated name for RFTs in this contract
+ //
+ // Selector: symbol() 95d89b41
+ function symbol() external view returns (string memory);
+
+ // @notice A distinct Uniform Resource Identifier (URI) for a given asset.
+ //
+ // @dev If the token has a `url` property and it is not empty, it is returned.
+ // Else If the collection does not have a property with key `schemaName` or its value is not equal to `ERC721Metadata`, it return an error `tokenURI not set`.
+ // If the collection property `baseURI` is empty or absent, return "" (empty string)
+ // otherwise, if token property `suffix` present and is non-empty, return concatenation of baseURI and suffix
+ // otherwise, return concatenation of `baseURI` and stringified token id (decimal stringifying, without paddings).
+ //
+ // @return token's const_metadata
+ //
+ // Selector: tokenURI(uint256) c87b56dd
+ function tokenURI(uint256 tokenId) external view returns (string memory);
+}
+
+// Selector: 68ccfe89
+interface ERC721Mintable is Dummy, ERC165, ERC721MintableEvents {
+ // Selector: mintingFinished() 05d2035b
+ function mintingFinished() external view returns (bool);
+
+ // @notice Function to mint token.
+ // @dev `tokenId` should be obtained with `nextTokenId` method,
+ // unlike standard, you can't specify it manually
+ // @param to The new owner
+ // @param tokenId ID of the minted RFT
+ //
+ // Selector: mint(address,uint256) 40c10f19
+ function mint(address to, uint256 tokenId) external returns (bool);
+
+ // @notice Function to mint token with the given tokenUri.
+ // @dev `tokenId` should be obtained with `nextTokenId` method,
+ // unlike standard, you can't specify it manually
+ // @param to The new owner
+ // @param tokenId ID of the minted RFT
+ // @param tokenUri Token URI that would be stored in the RFT properties
+ //
+ // Selector: mintWithTokenURI(address,uint256,string) 50bb4e7f
+ function mintWithTokenURI(
+ address to,
+ uint256 tokenId,
+ string memory tokenUri
+ ) external returns (bool);
+
+ // @dev Not implemented
+ //
+ // Selector: finishMinting() 7d64bcb4
+ function finishMinting() external returns (bool);
+}
+
+// Selector: 780e9d63
+interface ERC721Enumerable is Dummy, ERC165 {
+ // @notice Enumerate valid RFTs
+ // @param index A counter less than `totalSupply()`
+ // @return The token identifier for the `index`th NFT,
+ // (sort order not specified)
+ //
+ // Selector: tokenByIndex(uint256) 4f6ccce7
+ function tokenByIndex(uint256 index) external view returns (uint256);
+
+ // Not implemented
+ //
+ // Selector: tokenOfOwnerByIndex(address,uint256) 2f745c59
+ function tokenOfOwnerByIndex(address owner, uint256 index)
+ external
+ view
+ returns (uint256);
+
+ // @notice Count RFTs tracked by this contract
+ // @return A count of valid RFTs tracked by this contract, where each one of
+ // them has an assigned and queryable owner not equal to the zero address
+ //
+ // Selector: totalSupply() 18160ddd
+ function totalSupply() external view returns (uint256);
+}
+
// Selector: 7d9262e6
interface Collection is Dummy, ERC165 {
// Set collection property.
@@ -160,4 +422,68 @@
function setCollectionMintMode(bool mode) external;
}
-interface UniqueRefungible is Dummy, ERC165, Collection {}
+// Selector: d74d154f
+interface ERC721UniqueExtensions is Dummy, ERC165 {
+ // @notice Transfer ownership of an RFT
+ // @dev Throws unless `msg.sender` is the current owner. Throws if `to`
+ // is the zero address. Throws if `tokenId` is not a valid RFT.
+ // Throws if RFT pieces have multiple owners.
+ // @param to The new owner
+ // @param tokenId The RFT to transfer
+ // @param _value Not used for an RFT
+ //
+ // Selector: transfer(address,uint256) a9059cbb
+ function transfer(address to, uint256 tokenId) external;
+
+ // @notice Burns a specific ERC721 token.
+ // @dev Throws unless `msg.sender` is the current owner or an authorized
+ // operator for this RFT. Throws if `from` is not the current owner. Throws
+ // if `to` is the zero address. Throws if `tokenId` is not a valid RFT.
+ // Throws if RFT pieces have multiple owners.
+ // @param from The current owner of the RFT
+ // @param tokenId The RFT to transfer
+ // @param _value Not used for an RFT
+ //
+ // Selector: burnFrom(address,uint256) 79cc6790
+ function burnFrom(address from, uint256 tokenId) external;
+
+ // @notice Returns next free RFT ID.
+ //
+ // Selector: nextTokenId() 75794a3c
+ function nextTokenId() external view returns (uint256);
+
+ // @notice Function to mint multiple tokens.
+ // @dev `tokenIds` should be an array of consecutive numbers and first number
+ // should be obtained with `nextTokenId` method
+ // @param to The new owner
+ // @param tokenIds IDs of the minted RFTs
+ //
+ // Selector: mintBulk(address,uint256[]) 44a9945e
+ function mintBulk(address to, uint256[] memory tokenIds)
+ external
+ returns (bool);
+
+ // @notice Function to mint multiple tokens with the given tokenUris.
+ // @dev `tokenIds` is array of pairs of token ID and token URI. Token IDs should be consecutive
+ // numbers and first number should be obtained with `nextTokenId` method
+ // @param to The new owner
+ // @param tokens array of pairs of token ID and token URI for minted tokens
+ //
+ // Selector: mintBulkWithTokenURI(address,(uint256,string)[]) 36543006
+ function mintBulkWithTokenURI(address to, Tuple0[] memory tokens)
+ external
+ returns (bool);
+}
+
+interface UniqueRefungible is
+ Dummy,
+ ERC165,
+ ERC721,
+ ERC721Metadata,
+ ERC721Enumerable,
+ ERC721UniqueExtensions,
+ ERC721Mintable,
+ ERC721Burnable,
+ Collection,
+ TokenProperties
+{}
tests/src/eth/reFungible.test.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/eth/reFungible.test.ts
@@ -0,0 +1,465 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+
+// Unique Network is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+import {createCollectionExpectSuccess, UNIQUE} from '../util/helpers';
+import {collectionIdToAddress, createEthAccount, createEthAccountWithBalance, evmCollection, evmCollectionHelpers, GAS_ARGS, getCollectionAddressFromResult, itWeb3, normalizeEvents, recordEthFee, recordEvents, tokenIdToAddress} from './util/helpers';
+import reFungibleTokenAbi from './reFungibleTokenAbi.json';
+import {expect} from 'chai';
+
+describe('Refungible: Information getting', () => {
+ itWeb3('totalSupply', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+ const nextTokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, nextTokenId).send();
+ const totalSupply = await contract.methods.totalSupply().call();
+ expect(totalSupply).to.equal('1');
+ });
+
+ itWeb3('balanceOf', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ {
+ const nextTokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, nextTokenId).send();
+ }
+ {
+ const nextTokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, nextTokenId).send();
+ }
+ {
+ const nextTokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, nextTokenId).send();
+ }
+
+ const balance = await contract.methods.balanceOf(caller).call();
+
+ expect(balance).to.equal('3');
+ });
+
+ itWeb3('ownerOf', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const owner = await contract.methods.ownerOf(tokenId).call();
+
+ expect(owner).to.equal(caller);
+ });
+
+ itWeb3('ownerOf after burn', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const receiver = createEthAccount(web3);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const tokenAddress = tokenIdToAddress(collectionId, tokenId);
+ const tokenContract = new web3.eth.Contract(reFungibleTokenAbi as any, tokenAddress, {from: caller, ...GAS_ARGS});
+
+ await tokenContract.methods.repartition(2).send();
+ await tokenContract.methods.transfer(receiver, 1).send();
+
+ await tokenContract.methods.burnFrom(caller, 1).send();
+
+ const owner = await contract.methods.ownerOf(tokenId).call();
+
+ expect(owner).to.equal(receiver);
+ });
+
+ itWeb3('ownerOf for partial ownership', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const receiver = createEthAccount(web3);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const tokenAddress = tokenIdToAddress(collectionId, tokenId);
+ const tokenContract = new web3.eth.Contract(reFungibleTokenAbi as any, tokenAddress, {from: caller, ...GAS_ARGS});
+
+ await tokenContract.methods.repartition(2).send();
+ await tokenContract.methods.transfer(receiver, 1).send();
+
+ const owner = await contract.methods.ownerOf(tokenId).call();
+
+ expect(owner).to.equal('0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF');
+ });
+});
+
+describe('Refungible: Plain calls', () => {
+ itWeb3('Can perform mint()', async ({web3, api, privateKeyWrapper}) => {
+ const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, owner);
+ let result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const receiver = createEthAccount(web3);
+ const contract = evmCollection(web3, owner, collectionIdAddress, {type: 'ReFungible'});
+ const nextTokenId = await contract.methods.nextTokenId().call();
+
+ expect(nextTokenId).to.be.equal('1');
+ result = await contract.methods.mintWithTokenURI(
+ receiver,
+ nextTokenId,
+ 'Test URI',
+ ).send();
+
+ const events = normalizeEvents(result.events);
+
+ expect(events).to.include.deep.members([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: '0x0000000000000000000000000000000000000000',
+ to: receiver,
+ tokenId: nextTokenId,
+ },
+ },
+ ]);
+
+ expect(await contract.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');
+ });
+
+ itWeb3('Can perform mintBulk()', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const receiver = createEthAccount(web3);
+
+ {
+ const nextTokenId = await contract.methods.nextTokenId().call();
+ expect(nextTokenId).to.be.equal('1');
+ const result = await contract.methods.mintBulkWithTokenURI(
+ receiver,
+ [
+ [nextTokenId, 'Test URI 0'],
+ [+nextTokenId + 1, 'Test URI 1'],
+ [+nextTokenId + 2, 'Test URI 2'],
+ ],
+ ).send();
+ const events = normalizeEvents(result.events);
+
+ expect(events).to.include.deep.members([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: '0x0000000000000000000000000000000000000000',
+ to: receiver,
+ tokenId: nextTokenId,
+ },
+ },
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: '0x0000000000000000000000000000000000000000',
+ to: receiver,
+ tokenId: String(+nextTokenId + 1),
+ },
+ },
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: '0x0000000000000000000000000000000000000000',
+ to: receiver,
+ tokenId: String(+nextTokenId + 2),
+ },
+ },
+ ]);
+
+ expect(await contract.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI 0');
+ expect(await contract.methods.tokenURI(+nextTokenId + 1).call()).to.be.equal('Test URI 1');
+ expect(await contract.methods.tokenURI(+nextTokenId + 2).call()).to.be.equal('Test URI 2');
+ }
+ });
+
+ itWeb3('Can perform burn()', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+ {
+ const result = await contract.methods.burn(tokenId).send();
+ const events = normalizeEvents(result.events);
+ expect(events).to.include.deep.members([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: caller,
+ to: '0x0000000000000000000000000000000000000000',
+ tokenId: tokenId.toString(),
+ },
+ },
+ ]);
+ }
+ });
+
+ itWeb3('Can perform transferFrom()', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const receiver = createEthAccount(web3);
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const address = tokenIdToAddress(collectionId, tokenId);
+ const tokenContract = new web3.eth.Contract(reFungibleTokenAbi as any, address, {from: caller, ...GAS_ARGS});
+ await tokenContract.methods.repartition(15).send();
+
+ {
+ const erc20Events = await recordEvents(tokenContract, async () => {
+ const result = await contract.methods.transferFrom(caller, receiver, tokenId).send();
+ const events = normalizeEvents(result.events);
+ expect(events).to.include.deep.members([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: caller,
+ to: receiver,
+ tokenId: tokenId.toString(),
+ },
+ },
+ ]);
+ });
+
+ expect(erc20Events).to.include.deep.members([
+ {
+ address,
+ event: 'Transfer',
+ args: {
+ from: caller,
+ to: receiver,
+ value: '15',
+ },
+ },
+ ]);
+ }
+
+ {
+ const balance = await contract.methods.balanceOf(receiver).call();
+ expect(+balance).to.equal(1);
+ }
+
+ {
+ const balance = await contract.methods.balanceOf(caller).call();
+ expect(+balance).to.equal(0);
+ }
+ });
+
+ itWeb3('Can perform transfer()', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const receiver = createEthAccount(web3);
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ {
+ const result = await contract.methods.transfer(receiver, tokenId).send();
+ const events = normalizeEvents(result.events);
+ expect(events).to.include.deep.members([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: caller,
+ to: receiver,
+ tokenId: tokenId.toString(),
+ },
+ },
+ ]);
+ }
+
+ {
+ const balance = await contract.methods.balanceOf(caller).call();
+ expect(+balance).to.equal(0);
+ }
+
+ {
+ const balance = await contract.methods.balanceOf(receiver).call();
+ expect(+balance).to.equal(1);
+ }
+ });
+
+ itWeb3('transfer event on transfer from partial ownership to full ownership', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const receiver = createEthAccount(web3);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const tokenAddress = tokenIdToAddress(collectionId, tokenId);
+ const tokenContract = new web3.eth.Contract(reFungibleTokenAbi as any, tokenAddress, {from: caller, ...GAS_ARGS});
+
+ await tokenContract.methods.repartition(2).send();
+ await tokenContract.methods.transfer(receiver, 1).send();
+
+ const events = await recordEvents(contract, async () =>
+ await tokenContract.methods.transfer(receiver, 1).send());
+ expect(events).to.deep.equal([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: '0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF',
+ to: receiver,
+ tokenId: tokenId.toString(),
+ },
+ },
+ ]);
+ });
+
+ itWeb3('transfer event on transfer from full ownership to partial ownership', async ({api, web3, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const receiver = createEthAccount(web3);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const tokenAddress = tokenIdToAddress(collectionId, tokenId);
+ const tokenContract = new web3.eth.Contract(reFungibleTokenAbi as any, tokenAddress, {from: caller, ...GAS_ARGS});
+
+ await tokenContract.methods.repartition(2).send();
+
+ const events = await recordEvents(contract, async () =>
+ await tokenContract.methods.transfer(receiver, 1).send());
+
+ expect(events).to.deep.equal([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: caller,
+ to: '0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF',
+ tokenId: tokenId.toString(),
+ },
+ },
+ ]);
+ });
+});
+
+describe('RFT: Fees', () => {
+ itWeb3('transferFrom() call fee is less than 0.2UNQ', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const receiver = createEthAccount(web3);
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const cost = await recordEthFee(api, caller, () => contract.methods.transferFrom(caller, receiver, tokenId).send());
+ expect(cost < BigInt(0.2 * Number(UNIQUE)));
+ expect(cost > 0n);
+ });
+
+ itWeb3('transfer() call fee is less than 0.2UNQ', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const receiver = createEthAccount(web3);
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const cost = await recordEthFee(api, caller, () => contract.methods.transfer(receiver, tokenId).send());
+ expect(cost < BigInt(0.2 * Number(UNIQUE)));
+ expect(cost > 0n);
+ });
+});
+
+describe('Common metadata', () => {
+ itWeb3('Returns collection name', async ({api, web3, privateKeyWrapper}) => {
+ const collection = await createCollectionExpectSuccess({
+ name: 'token name',
+ mode: {type: 'ReFungible'},
+ });
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+
+ const address = collectionIdToAddress(collection);
+ const contract = evmCollection(web3, caller, address, {type: 'ReFungible'});
+ const name = await contract.methods.name().call();
+
+ expect(name).to.equal('token name');
+ });
+
+ itWeb3('Returns symbol name', async ({api, web3, privateKeyWrapper}) => {
+ const collection = await createCollectionExpectSuccess({
+ tokenPrefix: 'TOK',
+ mode: {type: 'ReFungible'},
+ });
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+
+ const address = collectionIdToAddress(collection);
+ const contract = evmCollection(web3, caller, address, {type: 'ReFungible'});
+ const symbol = await contract.methods.symbol().call();
+
+ expect(symbol).to.equal('TOK');
+ });
+});
\ No newline at end of file
tests/src/eth/reFungibleAbi.jsondiffbeforeafterboth--- /dev/null
+++ b/tests/src/eth/reFungibleAbi.json
@@ -0,0 +1,530 @@
+[
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "owner",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "approved",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "uint256",
+ "name": "tokenId",
+ "type": "uint256"
+ }
+ ],
+ "name": "Approval",
+ "type": "event"
+ },
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "owner",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "operator",
+ "type": "address"
+ },
+ {
+ "indexed": false,
+ "internalType": "bool",
+ "name": "approved",
+ "type": "bool"
+ }
+ ],
+ "name": "ApprovalForAll",
+ "type": "event"
+ },
+ {
+ "anonymous": false,
+ "inputs": [],
+ "name": "MintingFinished",
+ "type": "event"
+ },
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "from",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "to",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "uint256",
+ "name": "tokenId",
+ "type": "uint256"
+ }
+ ],
+ "name": "Transfer",
+ "type": "event"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "newAdmin", "type": "address" }
+ ],
+ "name": "addCollectionAdmin",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "newAdmin", "type": "uint256" }
+ ],
+ "name": "addCollectionAdminSubstrate",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "user", "type": "address" }
+ ],
+ "name": "addToCollectionAllowList",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "approved", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "approve",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "owner", "type": "address" }
+ ],
+ "name": "balanceOf",
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "burn",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "from", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "burnFrom",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [{ "internalType": "string", "name": "key", "type": "string" }],
+ "name": "collectionProperty",
+ "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "confirmCollectionSponsorship",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "contractAddress",
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [{ "internalType": "string", "name": "key", "type": "string" }],
+ "name": "deleteCollectionProperty",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" },
+ { "internalType": "string", "name": "key", "type": "string" }
+ ],
+ "name": "deleteProperty",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "finishMinting",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "getApproved",
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "owner", "type": "address" },
+ { "internalType": "address", "name": "operator", "type": "address" }
+ ],
+ "name": "isApprovedForAll",
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "mint",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256[]", "name": "tokenIds", "type": "uint256[]" }
+ ],
+ "name": "mintBulk",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "to", "type": "address" },
+ {
+ "components": [
+ { "internalType": "uint256", "name": "field_0", "type": "uint256" },
+ { "internalType": "string", "name": "field_1", "type": "string" }
+ ],
+ "internalType": "struct Tuple0[]",
+ "name": "tokens",
+ "type": "tuple[]"
+ }
+ ],
+ "name": "mintBulkWithTokenURI",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" },
+ { "internalType": "string", "name": "tokenUri", "type": "string" }
+ ],
+ "name": "mintWithTokenURI",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "mintingFinished",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "name",
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "nextTokenId",
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "ownerOf",
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" },
+ { "internalType": "string", "name": "key", "type": "string" }
+ ],
+ "name": "property",
+ "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "admin", "type": "address" }
+ ],
+ "name": "removeCollectionAdmin",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "admin", "type": "uint256" }
+ ],
+ "name": "removeCollectionAdminSubstrate",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "user", "type": "address" }
+ ],
+ "name": "removeFromCollectionAllowList",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "from", "type": "address" },
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "safeTransferFrom",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "from", "type": "address" },
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" },
+ { "internalType": "bytes", "name": "data", "type": "bytes" }
+ ],
+ "name": "safeTransferFromWithData",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "operator", "type": "address" },
+ { "internalType": "bool", "name": "approved", "type": "bool" }
+ ],
+ "name": "setApprovalForAll",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [{ "internalType": "uint8", "name": "mode", "type": "uint8" }],
+ "name": "setCollectionAccess",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "string", "name": "limit", "type": "string" },
+ { "internalType": "uint32", "name": "value", "type": "uint32" }
+ ],
+ "name": "setCollectionLimit",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "string", "name": "limit", "type": "string" },
+ { "internalType": "bool", "name": "value", "type": "bool" }
+ ],
+ "name": "setCollectionLimit",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [{ "internalType": "bool", "name": "mode", "type": "bool" }],
+ "name": "setCollectionMintMode",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [{ "internalType": "bool", "name": "enable", "type": "bool" }],
+ "name": "setCollectionNesting",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "bool", "name": "enable", "type": "bool" },
+ {
+ "internalType": "address[]",
+ "name": "collections",
+ "type": "address[]"
+ }
+ ],
+ "name": "setCollectionNesting",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "string", "name": "key", "type": "string" },
+ { "internalType": "bytes", "name": "value", "type": "bytes" }
+ ],
+ "name": "setCollectionProperty",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "sponsor", "type": "address" }
+ ],
+ "name": "setCollectionSponsor",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" },
+ { "internalType": "string", "name": "key", "type": "string" },
+ { "internalType": "bytes", "name": "value", "type": "bytes" }
+ ],
+ "name": "setProperty",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "string", "name": "key", "type": "string" },
+ { "internalType": "bool", "name": "isMutable", "type": "bool" },
+ { "internalType": "bool", "name": "collectionAdmin", "type": "bool" },
+ { "internalType": "bool", "name": "tokenOwner", "type": "bool" }
+ ],
+ "name": "setTokenPropertyPermission",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "bytes4", "name": "interfaceID", "type": "bytes4" }
+ ],
+ "name": "supportsInterface",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "symbol",
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "index", "type": "uint256" }
+ ],
+ "name": "tokenByIndex",
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "owner", "type": "address" },
+ { "internalType": "uint256", "name": "index", "type": "uint256" }
+ ],
+ "name": "tokenOfOwnerByIndex",
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "tokenURI",
+ "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "totalSupply",
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "transfer",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [
+ { "internalType": "address", "name": "from", "type": "address" },
+ { "internalType": "address", "name": "to", "type": "address" },
+ { "internalType": "uint256", "name": "tokenId", "type": "uint256" }
+ ],
+ "name": "transferFrom",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ }
+]
tests/src/eth/reFungibleToken.test.tsdiffbeforeafterboth--- a/tests/src/eth/reFungibleToken.test.ts
+++ b/tests/src/eth/reFungibleToken.test.ts
@@ -74,7 +74,7 @@
});
// FIXME: Need erc721 for ReFubgible.
-describe.skip('Check ERC721 token URI for ReFungible', () => {
+describe('Check ERC721 token URI for ReFungible', () => {
itWeb3('Empty tokenURI', async ({web3, api, privateKeyWrapper}) => {
const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
const helper = evmCollectionHelpers(web3, owner);
@@ -277,7 +277,7 @@
{
const result = await contract.methods.transferFrom(owner, receiver, 49).send({from: spender});
const events = normalizeEvents(result.events);
- expect(events).to.be.deep.equal([
+ expect(events).to.include.deep.members([
{
address,
event: 'Transfer',
@@ -329,7 +329,7 @@
{
const result = await contract.methods.transfer(receiver, 50).send({from: owner});
const events = normalizeEvents(result.events);
- expect(events).to.be.deep.equal([
+ expect(events).to.include.deep.members([
{
address,
event: 'Transfer',
@@ -442,6 +442,38 @@
},
]);
});
+
+ itWeb3('Receiving Transfer event on burning into full ownership', async ({web3, api, privateKeyWrapper}) => {
+ const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const receiver = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+ const helper = evmCollectionHelpers(web3, caller);
+ const result = await helper.methods.createRefungibleCollection('Mint collection', '6', '6').send();
+ const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+ const contract = evmCollection(web3, caller, collectionIdAddress, {type: 'ReFungible'});
+
+ const tokenId = await contract.methods.nextTokenId().call();
+ await contract.methods.mint(caller, tokenId).send();
+
+ const address = tokenIdToAddress(collectionId, tokenId);
+
+ const tokenContract = new web3.eth.Contract(reFungibleTokenAbi as any, address, {from: caller, ...GAS_ARGS});
+ await tokenContract.methods.repartition(2).send();
+ await tokenContract.methods.transfer(receiver, 1).send();
+
+ const events = await recordEvents(contract, async () =>
+ await tokenContract.methods.burnFrom(caller, 1).send());
+ expect(events).to.deep.equal([
+ {
+ address: collectionIdAddress,
+ event: 'Transfer',
+ args: {
+ from: '0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF',
+ to: receiver,
+ tokenId,
+ },
+ },
+ ]);
+ });
});
describe('Refungible: Fees', () => {
tests/src/eth/util/helpers.tsdiffbeforeafterboth--- a/tests/src/eth/util/helpers.ts
+++ b/tests/src/eth/util/helpers.ts
@@ -31,7 +31,7 @@
import collectionHelpersAbi from '../collectionHelpersAbi.json';
import fungibleAbi from '../fungibleAbi.json';
import nonFungibleAbi from '../nonFungibleAbi.json';
-import refungibleAbi from '../refungibleAbi.json';
+import refungibleAbi from '../reFungibleAbi.json';
import contractHelpersAbi from './contractHelpersAbi.json';
export const GAS_ARGS = {gas: 2500000};