difftreelog
misk: fix after rebase
in: master
14 files changed
Makefilediffbeforeafterboth--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,6 @@
NONFUNGIBLE_EVM_STUBS=./pallets/nonfungible/src/stubs
NONFUNGIBLE_EVM_ABI=./tests/src/eth/nonFungibleAbi.json
-REFUNGIBLE_EVM_STUBS=./pallets/refungible/src/stubs
RENFUNGIBLE_EVM_ABI=./tests/src/eth/reFungibleAbi.json
RENFUNGIBLE_TOKEN_EVM_ABI=./tests/src/eth/reFungibleTokenAbi.json
@@ -28,7 +27,7 @@
TESTS_API=./tests/src/eth/api/
.PHONY: regenerate_solidity
-regenerate_solidity: UniqueFungible.sol UniqueNFT.sol UniqueRefungibleToken.sol ContractHelpers.sol CollectionHelpers.sol
+regenerate_solidity: UniqueFungible.sol UniqueNFT.sol UniqueRefungible.sol UniqueRefungibleToken.sol ContractHelpers.sol CollectionHelpers.sol
UniqueFungible.sol:
PACKAGE=pallet-fungible NAME=erc::gen_iface OUTPUT=$(TESTS_API)/$@ ./.maintain/scripts/generate_sol.sh
@@ -38,9 +37,9 @@
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
-UniqueRefungibleToken.sol:
- PACKAGE=pallet-refungible NAME=erc_token::gen_iface OUTPUT=$(TESTS_API)/$@ ./.maintain/scripts/generate_sol.sh
- PACKAGE=pallet-refungible NAME=erc_token::gen_impl OUTPUT=$(REFUNGIBLE_EVM_STUBS)/$@ ./.maintain/scripts/generate_sol.sh
+UniqueRFT.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
UniqueRefungibleToken.sol:
PACKAGE=pallet-refungible NAME=erc_token::gen_iface OUTPUT=$(TESTS_API)/$@ ./.maintain/scripts/generate_sol.sh
@@ -66,6 +65,10 @@
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: UniqueRFT.sol
+ INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_EVM_STUBS)/UniqueRFT.raw ./.maintain/scripts/compile_stub.sh
+ INPUT=$(REFUNGIBLE_EVM_STUBS)/$< OUTPUT=$(REFUNGIBLE_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
@@ -74,7 +77,7 @@
INPUT=$(COLLECTION_HELPER_STUBS)/$< OUTPUT=$(COLLECTION_HELPER_STUBS)/CollectionHelpers.raw ./.maintain/scripts/compile_stub.sh
INPUT=$(COLLECTION_HELPER_STUBS)/$< OUTPUT=$(COLLECTION_HELPER_ABI) ./.maintain/scripts/generate_abi.sh
-evm_stubs: UniqueFungible UniqueNFT UniqueRefungibleToken ContractHelpers CollectionHelpers
+evm_stubs: UniqueFungible UniqueNFT UniqueRefungible UniqueRefungibleToken ContractHelpers CollectionHelpers
.PHONY: _bench
_bench:
pallets/nonfungible/src/erc.rsdiffbeforeafterboth--- a/pallets/nonfungible/src/erc.rs
+++ b/pallets/nonfungible/src/erc.rs
@@ -238,8 +238,6 @@
}
} else if !is_erc721() {
return Err("tokenURI not set".into());
- } else if !is_erc721() {
- return Err("tokenURI not set".into());
}
if let Some(base_uri) =
@@ -499,7 +497,7 @@
token_id: uint256,
token_uri: string,
) -> Result<bool> {
- let key = u_key();
+ let key = url_key();
let permission = get_token_permission::<T>(self.id, &key)?;
if !permission.collection_admin {
return Err("Operation is not allowed".into());
pallets/nonfungible/src/stubs/UniqueNFT.rawdiffbeforeafterbothbinary blob — no preview
pallets/refungible/src/erc.rsdiffbeforeafterboth--- a/pallets/refungible/src/erc.rs
+++ b/pallets/refungible/src/erc.rs
@@ -38,7 +38,7 @@
where
T::AccountId: From<[u8; 32]>,
{
- const CODE: &'static [u8] = include_bytes!("./stubs/UniqueRefungible.raw");
+ const CODE: &'static [u8] = include_bytes!("./stubs/UniqueRFT.raw");
fn call(
self,
handle: &mut impl PrecompileHandle,
pallets/refungible/src/stubs/UniqueRFT.rawdiffbeforeafterbothbinary blob — no preview
pallets/refungible/src/stubs/UniqueRFT.soldiffbeforeafterboth--- /dev/null
+++ b/pallets/refungible/src/stubs/UniqueRFT.sol
@@ -0,0 +1,251 @@
+// SPDX-License-Identifier: OTHER
+// This code is automatically generated
+
+pragma solidity >=0.8.0 <0.9.0;
+
+// Common stubs holder
+contract Dummy {
+ uint8 dummy;
+ string stub_error = "this contract is implemented in native";
+}
+
+contract ERC165 is Dummy {
+ function supportsInterface(bytes4 interfaceID)
+ external
+ view
+ returns (bool)
+ {
+ require(false, stub_error);
+ interfaceID;
+ return true;
+ }
+}
+
+// Selector: 7d9262e6
+contract Collection is Dummy, ERC165 {
+ // Set collection property.
+ //
+ // @param key Property key.
+ // @param value Propery value.
+ //
+ // Selector: setCollectionProperty(string,bytes) 2f073f66
+ function setCollectionProperty(string memory key, bytes memory value)
+ public
+ {
+ require(false, stub_error);
+ key;
+ value;
+ dummy = 0;
+ }
+
+ // Delete collection property.
+ //
+ // @param key Property key.
+ //
+ // Selector: deleteCollectionProperty(string) 7b7debce
+ function deleteCollectionProperty(string memory key) public {
+ require(false, stub_error);
+ key;
+ dummy = 0;
+ }
+
+ // Get collection property.
+ //
+ // @dev Throws error if key not found.
+ //
+ // @param key Property key.
+ // @return bytes The property corresponding to the key.
+ //
+ // Selector: collectionProperty(string) cf24fd6d
+ function collectionProperty(string memory key)
+ public
+ view
+ returns (bytes memory)
+ {
+ require(false, stub_error);
+ key;
+ dummy;
+ return hex"";
+ }
+
+ // Set the sponsor of the collection.
+ //
+ // @dev In order for sponsorship to work, it must be confirmed on behalf of the sponsor.
+ //
+ // @param sponsor Address of the sponsor from whose account funds will be debited for operations with the contract.
+ //
+ // Selector: setCollectionSponsor(address) 7623402e
+ function setCollectionSponsor(address sponsor) public {
+ require(false, stub_error);
+ sponsor;
+ dummy = 0;
+ }
+
+ // Collection sponsorship confirmation.
+ //
+ // @dev After setting the sponsor for the collection, it must be confirmed with this function.
+ //
+ // Selector: confirmCollectionSponsorship() 3c50e97a
+ function confirmCollectionSponsorship() public {
+ require(false, stub_error);
+ dummy = 0;
+ }
+
+ // Set limits for the collection.
+ // @dev Throws error if limit not found.
+ // @param limit Name of the limit. Valid names:
+ // "accountTokenOwnershipLimit",
+ // "sponsoredDataSize",
+ // "sponsoredDataRateLimit",
+ // "tokenLimit",
+ // "sponsorTransferTimeout",
+ // "sponsorApproveTimeout"
+ // @param value Value of the limit.
+ //
+ // Selector: setCollectionLimit(string,uint32) 6a3841db
+ function setCollectionLimit(string memory limit, uint32 value) public {
+ require(false, stub_error);
+ limit;
+ value;
+ dummy = 0;
+ }
+
+ // Set limits for the collection.
+ // @dev Throws error if limit not found.
+ // @param limit Name of the limit. Valid names:
+ // "ownerCanTransfer",
+ // "ownerCanDestroy",
+ // "transfersEnabled"
+ // @param value Value of the limit.
+ //
+ // Selector: setCollectionLimit(string,bool) 993b7fba
+ function setCollectionLimit(string memory limit, bool value) public {
+ require(false, stub_error);
+ limit;
+ value;
+ dummy = 0;
+ }
+
+ // Get contract address.
+ //
+ // Selector: contractAddress() f6b4dfb4
+ function contractAddress() public view returns (address) {
+ require(false, stub_error);
+ dummy;
+ return 0x0000000000000000000000000000000000000000;
+ }
+
+ // Add collection admin by substrate address.
+ // @param new_admin Substrate administrator address.
+ //
+ // Selector: addCollectionAdminSubstrate(uint256) 5730062b
+ function addCollectionAdminSubstrate(uint256 newAdmin) public {
+ require(false, stub_error);
+ newAdmin;
+ dummy = 0;
+ }
+
+ // Remove collection admin by substrate address.
+ // @param admin Substrate administrator address.
+ //
+ // Selector: removeCollectionAdminSubstrate(uint256) 4048fcf9
+ function removeCollectionAdminSubstrate(uint256 admin) public {
+ require(false, stub_error);
+ admin;
+ dummy = 0;
+ }
+
+ // Add collection admin.
+ // @param new_admin Address of the added administrator.
+ //
+ // Selector: addCollectionAdmin(address) 92e462c7
+ function addCollectionAdmin(address newAdmin) public {
+ require(false, stub_error);
+ newAdmin;
+ dummy = 0;
+ }
+
+ // Remove collection admin.
+ //
+ // @param new_admin Address of the removed administrator.
+ //
+ // Selector: removeCollectionAdmin(address) fafd7b42
+ function removeCollectionAdmin(address admin) public {
+ require(false, stub_error);
+ admin;
+ dummy = 0;
+ }
+
+ // Toggle accessibility of collection nesting.
+ //
+ // @param enable If "true" degenerates to nesting: 'Owner' else to nesting: 'Disabled'
+ //
+ // Selector: setCollectionNesting(bool) 112d4586
+ function setCollectionNesting(bool enable) public {
+ require(false, stub_error);
+ enable;
+ dummy = 0;
+ }
+
+ // Toggle accessibility of collection nesting.
+ //
+ // @param enable If "true" degenerates to nesting: {OwnerRestricted: [1, 2, 3]} else to nesting: 'Disabled'
+ // @param collections Addresses of collections that will be available for nesting.
+ //
+ // Selector: setCollectionNesting(bool,address[]) 64872396
+ function setCollectionNesting(bool enable, address[] memory collections)
+ public
+ {
+ require(false, stub_error);
+ enable;
+ collections;
+ dummy = 0;
+ }
+
+ // Set the collection access method.
+ // @param mode Access mode
+ // 0 for Normal
+ // 1 for AllowList
+ //
+ // Selector: setCollectionAccess(uint8) 41835d4c
+ function setCollectionAccess(uint8 mode) public {
+ require(false, stub_error);
+ mode;
+ dummy = 0;
+ }
+
+ // Add the user to the allowed list.
+ //
+ // @param user Address of a trusted user.
+ //
+ // Selector: addToCollectionAllowList(address) 67844fe6
+ function addToCollectionAllowList(address user) public {
+ require(false, stub_error);
+ user;
+ dummy = 0;
+ }
+
+ // Remove the user from the allowed list.
+ //
+ // @param user Address of a removed user.
+ //
+ // Selector: removeFromCollectionAllowList(address) 85c51acb
+ function removeFromCollectionAllowList(address user) public {
+ require(false, stub_error);
+ user;
+ dummy = 0;
+ }
+
+ // Switch permission for minting.
+ //
+ // @param mode Enable if "true".
+ //
+ // Selector: setCollectionMintMode(bool) 00018e84
+ function setCollectionMintMode(bool mode) public {
+ require(false, stub_error);
+ mode;
+ dummy = 0;
+ }
+}
+
+contract UniqueRFT is Dummy, ERC165, Collection {}
pallets/refungible/src/stubs/UniqueRefungible.rawdiffbeforeafterboth--- a/pallets/refungible/src/stubs/UniqueRefungible.raw
+++ /dev/null
@@ -1 +0,0 @@
-TODO
pallets/refungible/src/stubs/UniqueRefungibleToken.rawdiffbeforeafterbothbinary blob — no preview
pallets/refungible/src/stubs/UniqueRefungibleToken.soldiffbeforeafterboth--- a/pallets/refungible/src/stubs/UniqueRefungibleToken.sol
+++ b/pallets/refungible/src/stubs/UniqueRefungibleToken.sol
@@ -33,6 +33,8 @@
// Selector: 942e8b22
contract ERC20 is Dummy, ERC165, ERC20Events {
+ // @return the name of the token.
+ //
// Selector: name() 06fdde03
function name() public view returns (string memory) {
require(false, stub_error);
@@ -40,6 +42,8 @@
return "";
}
+ // @return the symbol of the token.
+ //
// Selector: symbol() 95d89b41
function symbol() public view returns (string memory) {
require(false, stub_error);
@@ -47,6 +51,8 @@
return "";
}
+ // @dev Total number of tokens in existence
+ //
// Selector: totalSupply() 18160ddd
function totalSupply() public view returns (uint256) {
require(false, stub_error);
@@ -54,6 +60,8 @@
return 0;
}
+ // @dev Not supported
+ //
// Selector: decimals() 313ce567
function decimals() public view returns (uint8) {
require(false, stub_error);
@@ -61,6 +69,10 @@
return 0;
}
+ // @dev Gets the balance of the specified address.
+ // @param owner The address to query the balance of.
+ // @return An uint256 representing the amount owned by the passed address.
+ //
// Selector: balanceOf(address) 70a08231
function balanceOf(address owner) public view returns (uint256) {
require(false, stub_error);
@@ -69,6 +81,10 @@
return 0;
}
+ // @dev Transfer token for a specified address
+ // @param to The address to transfer to.
+ // @param amount The amount to be transferred.
+ //
// Selector: transfer(address,uint256) a9059cbb
function transfer(address to, uint256 amount) public returns (bool) {
require(false, stub_error);
@@ -78,6 +94,11 @@
return false;
}
+ // @dev Transfer tokens from one address to another
+ // @param from address The address which you want to send tokens from
+ // @param to address The address which you want to transfer to
+ // @param amount uint256 the amount of tokens to be transferred
+ //
// Selector: transferFrom(address,address,uint256) 23b872dd
function transferFrom(
address from,
@@ -92,6 +113,14 @@
return false;
}
+ // @dev Approve the passed address to spend the specified amount of tokens on behalf of `msg.sender`.
+ // Beware that changing an allowance with this method brings the risk that someone may use both the old
+ // and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
+ // race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
+ // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
+ // @param spender The address which will spend the funds.
+ // @param amount The amount of tokens to be spent.
+ //
// Selector: approve(address,uint256) 095ea7b3
function approve(address spender, uint256 amount) public returns (bool) {
require(false, stub_error);
@@ -101,6 +130,11 @@
return false;
}
+ // @dev Function to check the amount of tokens that an owner allowed to a spender.
+ // @param owner address The address which owns the funds.
+ // @param spender address The address which will spend the funds.
+ // @return A uint256 specifying the amount of tokens still available for the spender.
+ //
// Selector: allowance(address,address) dd62ed3e
function allowance(address owner, address spender)
public
@@ -117,6 +151,11 @@
// Selector: ab8deb37
contract ERC20UniqueExtensions is Dummy, ERC165 {
+ // @dev Function that burns an amount of the token of a given account,
+ // deducting from the sender's allowance for said account.
+ // @param from The account whose tokens will be burnt.
+ // @param amount The amount that will be burnt.
+ //
// Selector: burnFrom(address,uint256) 79cc6790
function burnFrom(address from, uint256 amount) public returns (bool) {
require(false, stub_error);
@@ -126,6 +165,10 @@
return false;
}
+ // @dev Function that changes total amount of the tokens.
+ // Throws if `msg.sender` doesn't owns all of the tokens.
+ // @param amount New total amount of the tokens.
+ //
// Selector: repartition(uint256) d2418ca7
function repartition(uint256 amount) public returns (bool) {
require(false, stub_error);
tests/src/eth/api/UniqueRFT.soldiffbeforeafterboth--- /dev/null
+++ b/tests/src/eth/api/UniqueRFT.sol
@@ -0,0 +1,163 @@
+// SPDX-License-Identifier: OTHER
+// This code is automatically generated
+
+pragma solidity >=0.8.0 <0.9.0;
+
+// Common stubs holder
+interface Dummy {
+
+}
+
+interface ERC165 is Dummy {
+ function supportsInterface(bytes4 interfaceID) external view returns (bool);
+}
+
+// Selector: 7d9262e6
+interface Collection is Dummy, ERC165 {
+ // Set collection property.
+ //
+ // @param key Property key.
+ // @param value Propery value.
+ //
+ // Selector: setCollectionProperty(string,bytes) 2f073f66
+ function setCollectionProperty(string memory key, bytes memory value)
+ external;
+
+ // Delete collection property.
+ //
+ // @param key Property key.
+ //
+ // Selector: deleteCollectionProperty(string) 7b7debce
+ function deleteCollectionProperty(string memory key) external;
+
+ // Get collection property.
+ //
+ // @dev Throws error if key not found.
+ //
+ // @param key Property key.
+ // @return bytes The property corresponding to the key.
+ //
+ // Selector: collectionProperty(string) cf24fd6d
+ function collectionProperty(string memory key)
+ external
+ view
+ returns (bytes memory);
+
+ // Set the sponsor of the collection.
+ //
+ // @dev In order for sponsorship to work, it must be confirmed on behalf of the sponsor.
+ //
+ // @param sponsor Address of the sponsor from whose account funds will be debited for operations with the contract.
+ //
+ // Selector: setCollectionSponsor(address) 7623402e
+ function setCollectionSponsor(address sponsor) external;
+
+ // Collection sponsorship confirmation.
+ //
+ // @dev After setting the sponsor for the collection, it must be confirmed with this function.
+ //
+ // Selector: confirmCollectionSponsorship() 3c50e97a
+ function confirmCollectionSponsorship() external;
+
+ // Set limits for the collection.
+ // @dev Throws error if limit not found.
+ // @param limit Name of the limit. Valid names:
+ // "accountTokenOwnershipLimit",
+ // "sponsoredDataSize",
+ // "sponsoredDataRateLimit",
+ // "tokenLimit",
+ // "sponsorTransferTimeout",
+ // "sponsorApproveTimeout"
+ // @param value Value of the limit.
+ //
+ // Selector: setCollectionLimit(string,uint32) 6a3841db
+ function setCollectionLimit(string memory limit, uint32 value) external;
+
+ // Set limits for the collection.
+ // @dev Throws error if limit not found.
+ // @param limit Name of the limit. Valid names:
+ // "ownerCanTransfer",
+ // "ownerCanDestroy",
+ // "transfersEnabled"
+ // @param value Value of the limit.
+ //
+ // Selector: setCollectionLimit(string,bool) 993b7fba
+ function setCollectionLimit(string memory limit, bool value) external;
+
+ // Get contract address.
+ //
+ // Selector: contractAddress() f6b4dfb4
+ function contractAddress() external view returns (address);
+
+ // Add collection admin by substrate address.
+ // @param new_admin Substrate administrator address.
+ //
+ // Selector: addCollectionAdminSubstrate(uint256) 5730062b
+ function addCollectionAdminSubstrate(uint256 newAdmin) external;
+
+ // Remove collection admin by substrate address.
+ // @param admin Substrate administrator address.
+ //
+ // Selector: removeCollectionAdminSubstrate(uint256) 4048fcf9
+ function removeCollectionAdminSubstrate(uint256 admin) external;
+
+ // Add collection admin.
+ // @param new_admin Address of the added administrator.
+ //
+ // Selector: addCollectionAdmin(address) 92e462c7
+ function addCollectionAdmin(address newAdmin) external;
+
+ // Remove collection admin.
+ //
+ // @param new_admin Address of the removed administrator.
+ //
+ // Selector: removeCollectionAdmin(address) fafd7b42
+ function removeCollectionAdmin(address admin) external;
+
+ // Toggle accessibility of collection nesting.
+ //
+ // @param enable If "true" degenerates to nesting: 'Owner' else to nesting: 'Disabled'
+ //
+ // Selector: setCollectionNesting(bool) 112d4586
+ function setCollectionNesting(bool enable) external;
+
+ // Toggle accessibility of collection nesting.
+ //
+ // @param enable If "true" degenerates to nesting: {OwnerRestricted: [1, 2, 3]} else to nesting: 'Disabled'
+ // @param collections Addresses of collections that will be available for nesting.
+ //
+ // Selector: setCollectionNesting(bool,address[]) 64872396
+ function setCollectionNesting(bool enable, address[] memory collections)
+ external;
+
+ // Set the collection access method.
+ // @param mode Access mode
+ // 0 for Normal
+ // 1 for AllowList
+ //
+ // Selector: setCollectionAccess(uint8) 41835d4c
+ function setCollectionAccess(uint8 mode) external;
+
+ // Add the user to the allowed list.
+ //
+ // @param user Address of a trusted user.
+ //
+ // Selector: addToCollectionAllowList(address) 67844fe6
+ function addToCollectionAllowList(address user) external;
+
+ // Remove the user from the allowed list.
+ //
+ // @param user Address of a removed user.
+ //
+ // Selector: removeFromCollectionAllowList(address) 85c51acb
+ function removeFromCollectionAllowList(address user) external;
+
+ // Switch permission for minting.
+ //
+ // @param mode Enable if "true".
+ //
+ // Selector: setCollectionMintMode(bool) 00018e84
+ function setCollectionMintMode(bool mode) external;
+}
+
+interface UniqueRFT is Dummy, ERC165, Collection {}
tests/src/eth/api/UniqueRefungibleToken.soldiffbeforeafterboth--- a/tests/src/eth/api/UniqueRefungibleToken.sol
+++ b/tests/src/eth/api/UniqueRefungibleToken.sol
@@ -24,24 +24,45 @@
// Selector: 942e8b22
interface ERC20 is Dummy, ERC165, ERC20Events {
+ // @return the name of the token.
+ //
// Selector: name() 06fdde03
function name() external view returns (string memory);
+ // @return the symbol of the token.
+ //
// Selector: symbol() 95d89b41
function symbol() external view returns (string memory);
+ // @dev Total number of tokens in existence
+ //
// Selector: totalSupply() 18160ddd
function totalSupply() external view returns (uint256);
+ // @dev Not supported
+ //
// Selector: decimals() 313ce567
function decimals() external view returns (uint8);
+ // @dev Gets the balance of the specified address.
+ // @param owner The address to query the balance of.
+ // @return An uint256 representing the amount owned by the passed address.
+ //
// Selector: balanceOf(address) 70a08231
function balanceOf(address owner) external view returns (uint256);
+ // @dev Transfer token for a specified address
+ // @param to The address to transfer to.
+ // @param amount The amount to be transferred.
+ //
// Selector: transfer(address,uint256) a9059cbb
function transfer(address to, uint256 amount) external returns (bool);
+ // @dev Transfer tokens from one address to another
+ // @param from address The address which you want to send tokens from
+ // @param to address The address which you want to transfer to
+ // @param amount uint256 the amount of tokens to be transferred
+ //
// Selector: transferFrom(address,address,uint256) 23b872dd
function transferFrom(
address from,
@@ -49,9 +70,22 @@
uint256 amount
) external returns (bool);
+ // @dev Approve the passed address to spend the specified amount of tokens on behalf of `msg.sender`.
+ // Beware that changing an allowance with this method brings the risk that someone may use both the old
+ // and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
+ // race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
+ // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
+ // @param spender The address which will spend the funds.
+ // @param amount The amount of tokens to be spent.
+ //
// Selector: approve(address,uint256) 095ea7b3
function approve(address spender, uint256 amount) external returns (bool);
+ // @dev Function to check the amount of tokens that an owner allowed to a spender.
+ // @param owner address The address which owns the funds.
+ // @param spender address The address which will spend the funds.
+ // @return A uint256 specifying the amount of tokens still available for the spender.
+ //
// Selector: allowance(address,address) dd62ed3e
function allowance(address owner, address spender)
external
@@ -61,9 +95,18 @@
// Selector: ab8deb37
interface ERC20UniqueExtensions is Dummy, ERC165 {
+ // @dev Function that burns an amount of the token of a given account,
+ // deducting from the sender's allowance for said account.
+ // @param from The account whose tokens will be burnt.
+ // @param amount The amount that will be burnt.
+ //
// Selector: burnFrom(address,uint256) 79cc6790
function burnFrom(address from, uint256 amount) external returns (bool);
+ // @dev Function that changes total amount of the tokens.
+ // Throws if `msg.sender` doesn't owns all of the tokens.
+ // @param amount New total amount of the tokens.
+ //
// Selector: repartition(uint256) d2418ca7
function repartition(uint256 amount) external returns (bool);
}
tests/src/eth/createRFTCollection.test.tsdiffbeforeafterboth--- a/tests/src/eth/createRFTCollection.test.ts
+++ b/tests/src/eth/createRFTCollection.test.ts
@@ -69,27 +69,26 @@
.call()).to.be.true;
});
- itWeb3.only('Set sponsorship', async ({api, web3, privateKeyWrapper}) => {
+ itWeb3('Set sponsorship', async ({api, web3, privateKeyWrapper}) => {
const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
const collectionHelpers = evmCollectionHelpers(web3, owner);
let result = await collectionHelpers.methods.createRefungibleCollection('Sponsor collection', '1', '1').send();
const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
const sponsor = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
- const collectionEvm = evmCollection(web3, owner, collectionIdAddress);
- result = await collectionEvm.methods.setCollectionSponsor(sponsor).call();
- // let collectionSub = (await getDetailedCollectionInfo(api, collectionId))!;
- // expect(collectionSub.sponsorship.isUnconfirmed).to.be.true;
- // const ss58Format = (api.registry.getChainProperties())!.toJSON().ss58Format;
- // expect(collectionSub.sponsorship.asUnconfirmed.toHuman()).to.be.eq(evmToAddress(sponsor, Number(ss58Format)));
- // await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('caller is not set as sponsor');
- // const sponsorCollection = evmCollection(web3, sponsor, collectionIdAddress);
- // await sponsorCollection.methods.confirmCollectionSponsorship().send();
- // collectionSub = (await getDetailedCollectionInfo(api, collectionId))!;
- // expect(collectionSub.sponsorship.isConfirmed).to.be.true;
- // expect(collectionSub.sponsorship.asConfirmed.toHuman()).to.be.eq(evmToAddress(sponsor, Number(ss58Format)));
+ const collectionEvm = evmCollection(web3, owner, collectionIdAddress, {type: 'ReFungible'});
+ result = await collectionEvm.methods.setCollectionSponsor(sponsor).send();
+ let collectionSub = (await getDetailedCollectionInfo(api, collectionId))!;
+ expect(collectionSub.sponsorship.isUnconfirmed).to.be.true;
+ const ss58Format = (api.registry.getChainProperties())!.toJSON().ss58Format;
+ expect(collectionSub.sponsorship.asUnconfirmed.toHuman()).to.be.eq(evmToAddress(sponsor, Number(ss58Format)));
+ await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('caller is not set as sponsor');
+ const sponsorCollection = evmCollection(web3, sponsor, collectionIdAddress);
+ await sponsorCollection.methods.confirmCollectionSponsorship().send();
+ collectionSub = (await getDetailedCollectionInfo(api, collectionId))!;
+ expect(collectionSub.sponsorship.isConfirmed).to.be.true;
+ expect(collectionSub.sponsorship.asConfirmed.toHuman()).to.be.eq(evmToAddress(sponsor, Number(ss58Format)));
});
- // fixtest
itWeb3('Set limits', async ({api, web3, privateKeyWrapper}) => {
const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
const collectionHelpers = evmCollectionHelpers(web3, owner);
@@ -107,7 +106,7 @@
transfersEnabled: false,
};
- const collectionEvm = evmCollection(web3, owner, collectionIdAddress);
+ const collectionEvm = evmCollection(web3, owner, collectionIdAddress, {type: 'ReFungible'});
await collectionEvm.methods['setCollectionLimit(string,uint32)']('accountTokenOwnershipLimit', limits.accountTokenOwnershipLimit).send();
await collectionEvm.methods['setCollectionLimit(string,uint32)']('sponsoredDataSize', limits.sponsoredDataSize).send();
await collectionEvm.methods['setCollectionLimit(string,uint32)']('sponsoredDataRateLimit', limits.sponsoredDataRateLimit).send();
@@ -193,14 +192,13 @@
.call()).to.be.rejectedWith('NotSufficientFounds');
});
- // fixtest
itWeb3('(!negative test!) Check owner', async ({api, web3, privateKeyWrapper}) => {
const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
const notOwner = await createEthAccount(web3);
const collectionHelpers = evmCollectionHelpers(web3, owner);
const result = await collectionHelpers.methods.createRefungibleCollection('A', 'A', 'A').send();
const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
- const contractEvmFromNotOwner = evmCollection(web3, notOwner, collectionIdAddress);
+ const contractEvmFromNotOwner = evmCollection(web3, notOwner, collectionIdAddress, {type: 'ReFungible'});
const EXPECTED_ERROR = 'NoPermission';
{
const sponsor = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
@@ -220,13 +218,12 @@
}
});
- // fixtest
itWeb3('(!negative test!) Set limits', async ({api, web3, privateKeyWrapper}) => {
const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
const collectionHelpers = evmCollectionHelpers(web3, owner);
const result = await collectionHelpers.methods.createRefungibleCollection('Schema collection', 'A', 'A').send();
const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
- const collectionEvm = evmCollection(web3, owner, collectionIdAddress);
+ const collectionEvm = evmCollection(web3, owner, collectionIdAddress, {type: 'ReFungible'});
await expect(collectionEvm.methods
.setCollectionLimit('badLimit', 'true')
.call()).to.be.rejectedWith('unknown boolean limit "badLimit"');
tests/src/eth/refungibleAbi.jsondiffbeforeafterboth--- /dev/null
+++ b/tests/src/eth/refungibleAbi.json
@@ -0,0 +1,167 @@
+[
+ {
+ "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": "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": "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": "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": "bytes4", "name": "interfaceID", "type": "bytes4" }
+ ],
+ "name": "supportsInterface",
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+ "stateMutability": "view",
+ "type": "function"
+ }
+]
tests/src/eth/util/helpers.tsdiffbeforeafterboth1// 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// eslint-disable-next-line @typescript-eslint/triple-slash-reference18/// <reference path="helpers.d.ts" />1920import {ApiPromise} from '@polkadot/api';21import {IKeyringPair} from '@polkadot/types/types';22import {addressToEvm, evmToAddress} from '@polkadot/util-crypto';23import {expect} from 'chai';24import * as solc from 'solc';25import Web3 from 'web3';26import config from '../../config';27import getBalance from '../../substrate/get-balance';28import privateKey from '../../substrate/privateKey';29import usingApi, {submitTransactionAsync} from '../../substrate/substrate-api';30import waitNewBlocks from '../../substrate/wait-new-blocks';31import {CrossAccountId, getDetailedCollectionInfo, getGenericResult, UNIQUE} from '../../util/helpers';32import collectionHelpersAbi from '../collectionHelpersAbi.json';33import nonFungibleAbi from '../nonFungibleAbi.json';34import contractHelpersAbi from './contractHelpersAbi.json';3536export const GAS_ARGS = {gas: 2500000};3738export enum SponsoringMode {39 Disabled = 0,40 Allowlisted = 1,41 Generous = 2,42}4344let web3Connected = false;45export async function usingWeb3<T>(cb: (web3: Web3) => Promise<T> | T): Promise<T> {46 if (web3Connected) throw new Error('do not nest usingWeb3 calls');47 web3Connected = true;4849 const provider = new Web3.providers.WebsocketProvider(config.substrateUrl);50 const web3 = new Web3(provider);5152 try {53 return await cb(web3);54 } finally {55 // provider.disconnect(3000, 'normal disconnect');56 provider.connection.close();57 web3Connected = false;58 }59}6061function encodeIntBE(v: number): number[] {62 if (v >= 0xffffffff || v < 0) throw new Error('id overflow');63 return [64 v >> 24,65 (v >> 16) & 0xff,66 (v >> 8) & 0xff,67 v & 0xff,68 ];69}7071export async function getCollectionAddressFromResult(api: ApiPromise, result: any) {72 const collectionIdAddress = normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);73 const collectionId = collectionIdFromAddress(collectionIdAddress); 74 const collection = (await getDetailedCollectionInfo(api, collectionId))!;75 return {collectionIdAddress, collectionId, collection};76}7778export function collectionIdToAddress(collection: number): string {79 const buf = Buffer.from([0x17, 0xc4, 0xe6, 0x45, 0x3c, 0xc4, 0x9a, 0xaa, 0xae, 0xac, 0xa8, 0x94, 0xe6, 0xd9, 0x68, 0x3e,80 ...encodeIntBE(collection),81 ]);82 return Web3.utils.toChecksumAddress('0x' + buf.toString('hex'));83}84export function collectionIdFromAddress(address: string): number {85 if (!address.startsWith('0x'))86 throw 'address not starts with "0x"';87 if (address.length > 42)88 throw 'address length is more than 20 bytes';89 return Number('0x' + address.substring(address.length - 8));90}91 92export function normalizeAddress(address: string): string {93 return '0x' + address.substring(address.length - 40);94}9596export function tokenIdToAddress(collection: number, token: number): string {97 const buf = Buffer.from([0xf8, 0x23, 0x8c, 0xcf, 0xff, 0x8e, 0xd8, 0x87, 0x46, 0x3f, 0xd5, 0xe0,98 ...encodeIntBE(collection),99 ...encodeIntBE(token),100 ]);101 return Web3.utils.toChecksumAddress('0x' + buf.toString('hex'));102}103export function tokenIdToCross(collection: number, token: number): CrossAccountId {104 return {105 Ethereum: tokenIdToAddress(collection, token),106 };107}108109export function createEthAccount(web3: Web3) {110 const account = web3.eth.accounts.create();111 web3.eth.accounts.wallet.add(account.privateKey);112 return account.address;113}114115export async function createEthAccountWithBalance(api: ApiPromise, web3: Web3, privateKeyWrapper: (account: string) => IKeyringPair) {116 const alice = privateKeyWrapper('//Alice');117 const account = createEthAccount(web3);118 await transferBalanceToEth(api, alice, account);119120 return account;121}122123export async function transferBalanceToEth(api: ApiPromise, source: IKeyringPair, target: string, amount = 1000n * UNIQUE) {124 const tx = api.tx.balances.transfer(evmToAddress(target), amount);125 const events = await submitTransactionAsync(source, tx);126 const result = getGenericResult(events);127 expect(result.success).to.be.true;128}129130export async function itWeb3(name: string, cb: (apis: { web3: Web3, api: ApiPromise, privateKeyWrapper: (account: string) => IKeyringPair }) => any, opts: { only?: boolean, skip?: boolean } = {}) {131 let i: any = it;132 if (opts.only) i = i.only;133 else if (opts.skip) i = i.skip;134 i(name, async () => {135 await usingApi(async (api, privateKeyWrapper) => {136 await usingWeb3(async web3 => {137 await cb({api, web3, privateKeyWrapper});138 });139 });140 });141}142itWeb3.only = (name: string, cb: (apis: { web3: Web3, api: ApiPromise, privateKeyWrapper: (account: string) => IKeyringPair }) => any) => itWeb3(name, cb, {only: true});143itWeb3.skip = (name: string, cb: (apis: { web3: Web3, api: ApiPromise, privateKeyWrapper: (account: string) => IKeyringPair }) => any) => itWeb3(name, cb, {skip: true});144145export async function generateSubstrateEthPair(web3: Web3) {146 const account = web3.eth.accounts.create();147 evmToAddress(account.address);148}149150type NormalizedEvent = {151 address: string,152 event: string,153 args: { [key: string]: string }154};155156export function normalizeEvents(events: any): NormalizedEvent[] {157 const output = [];158 for (const key of Object.keys(events)) {159 if (key.match(/^[0-9]+$/)) {160 output.push(events[key]);161 } else if (Array.isArray(events[key])) {162 output.push(...events[key]);163 } else {164 output.push(events[key]);165 }166 }167 output.sort((a, b) => a.logIndex - b.logIndex);168 return output.map(({address, event, returnValues}) => {169 const args: { [key: string]: string } = {};170 for (const key of Object.keys(returnValues)) {171 if (!key.match(/^[0-9]+$/)) {172 args[key] = returnValues[key];173 }174 }175 return {176 address,177 event,178 args,179 };180 });181}182183export async function recordEvents(contract: any, action: () => Promise<void>): Promise<NormalizedEvent[]> {184 const out: any = [];185 contract.events.allEvents((_: any, event: any) => {186 out.push(event);187 });188 await action();189 return normalizeEvents(out);190}191192export function subToEthLowercase(eth: string): string {193 const bytes = addressToEvm(eth);194 return '0x' + Buffer.from(bytes).toString('hex');195}196197export function subToEth(eth: string): string {198 return Web3.utils.toChecksumAddress(subToEthLowercase(eth));199}200201export function compileContract(name: string, src: string) {202 const out = JSON.parse(solc.compile(JSON.stringify({203 language: 'Solidity',204 sources: {205 [`${name}.sol`]: {206 content: `207 // SPDX-License-Identifier: UNLICENSED208 pragma solidity ^0.8.6;209210 ${src}211 `,212 },213 },214 settings: {215 outputSelection: {216 '*': {217 '*': ['*'],218 },219 },220 },221 }))).contracts[`${name}.sol`][name];222223 return {224 abi: out.abi,225 object: '0x' + out.evm.bytecode.object,226 };227}228229export async function deployFlipper(web3: Web3, deployer: string) {230 const compiled = compileContract('Flipper', `231 contract Flipper {232 bool value = false;233 function flip() public {234 value = !value;235 }236 function getValue() public view returns (bool) {237 return value;238 }239 }240 `);241 const flipperContract = new web3.eth.Contract(compiled.abi, undefined, {242 data: compiled.object,243 from: deployer,244 ...GAS_ARGS,245 });246 const flipper = await flipperContract.deploy({data: compiled.object}).send({from: deployer});247248 return flipper;249}250251export async function deployCollector(web3: Web3, deployer: string) {252 const compiled = compileContract('Collector', `253 contract Collector {254 uint256 collected;255 fallback() external payable {256 giveMoney();257 }258 function giveMoney() public payable {259 collected += msg.value;260 }261 function getCollected() public view returns (uint256) {262 return collected;263 }264 function getUnaccounted() public view returns (uint256) {265 return address(this).balance - collected;266 }267268 function withdraw(address payable target) public {269 target.transfer(collected);270 collected = 0;271 }272 }273 `);274 const collectorContract = new web3.eth.Contract(compiled.abi, undefined, {275 data: compiled.object,276 from: deployer,277 ...GAS_ARGS,278 });279 const collector = await collectorContract.deploy({data: compiled.object}).send({from: deployer});280281 return collector;282}283284/** 285 * pallet evm_contract_helpers286 * @param web3 287 * @param caller - eth address288 * @returns 289 */290export function contractHelpers(web3: Web3, caller: string) {291 return new web3.eth.Contract(contractHelpersAbi as any, '0x842899ECF380553E8a4de75bF534cdf6fBF64049', {from: caller, ...GAS_ARGS});292}293294/** 295 * evm collection helper296 * @param web3 297 * @param caller - eth address298 * @returns 299 */300export function evmCollectionHelpers(web3: Web3, caller: string) {301 return new web3.eth.Contract(collectionHelpersAbi as any, '0x6c4e9fe1ae37a41e93cee429e8e1881abdcbb54f', {from: caller, ...GAS_ARGS});302}303304/** 305 * evm collection306 * @param web3 307 * @param caller - eth address308 * @returns 309 */310export function evmCollection(web3: Web3, caller: string, collection: string) {311 return new web3.eth.Contract(nonFungibleAbi as any, collection, {from: caller, ...GAS_ARGS});312}313314/**315 * Execute ethereum method call using substrate account316 * @param to target contract317 * @param mkTx - closure, receiving `contract.methods`, and returning method call,318 * to be used as following (assuming `to` = erc20 contract):319 * `m => m.transfer(to, amount)`320 *321 * # Example322 * ```ts323 * executeEthTxOnSub(api, alice, erc20Contract, m => m.transfer(target, amount));324 * ```325 */326export async function executeEthTxOnSub(web3: Web3, api: ApiPromise, from: IKeyringPair, to: any, mkTx: (methods: any) => any, {value = 0}: {value?: bigint | number} = { }) {327 const tx = api.tx.evm.call(328 subToEth(from.address),329 to.options.address,330 mkTx(to.methods).encodeABI(),331 value,332 GAS_ARGS.gas,333 await web3.eth.getGasPrice(),334 null,335 null,336 [],337 );338 const events = await submitTransactionAsync(from, tx);339 expect(events.some(({event: {section, method}}) => section == 'evm' && method == 'Executed')).to.be.true;340}341342export async function ethBalanceViaSub(api: ApiPromise, address: string): Promise<bigint> {343 return (await getBalance(api, [evmToAddress(address)]))[0];344}345346/**347 * Measure how much gas given closure consumes348 *349 * @param user which user balance will be checked350 */351export async function recordEthFee(api: ApiPromise, user: string, call: () => Promise<any>): Promise<bigint> {352 const before = await ethBalanceViaSub(api, user);353354 await call();355356 // In dev mode, the transaction might not finish processing in time357 await waitNewBlocks(api, 1);358 const after = await ethBalanceViaSub(api, user);359360 // Can't use .to.be.less, because chai doesn't supports bigint361 expect(after < before).to.be.true;362363 return before - after;364}365366type ElementOf<A> = A extends readonly (infer T)[] ? T : never;367// I want a fancier api, not a memory efficiency368export function* cartesian<T extends Array<Array<any>>, R extends Array<any>>(internalRest: [...R], ...args: [...T]): Generator<[...R, ...{[K in keyof T]: ElementOf<T[K]>}]> {369 if(args.length === 0) {370 yield internalRest as any;371 return;372 }373 for(const value of args[0]) {374 yield* cartesian([...internalRest, value], ...args.slice(1)) as any;375 }376}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// eslint-disable-next-line @typescript-eslint/triple-slash-reference18/// <reference path="helpers.d.ts" />1920import {ApiPromise} from '@polkadot/api';21import {IKeyringPair} from '@polkadot/types/types';22import {addressToEvm, evmToAddress} from '@polkadot/util-crypto';23import {expect} from 'chai';24import * as solc from 'solc';25import Web3 from 'web3';26import config from '../../config';27import getBalance from '../../substrate/get-balance';28import usingApi, {submitTransactionAsync} from '../../substrate/substrate-api';29import waitNewBlocks from '../../substrate/wait-new-blocks';30import {CollectionMode, CrossAccountId, getDetailedCollectionInfo, getGenericResult, UNIQUE} from '../../util/helpers';31import collectionHelpersAbi from '../collectionHelpersAbi.json';32import fungibleAbi from '../fungibleAbi.json';33import nonFungibleAbi from '../nonFungibleAbi.json';34import refungibleAbi from '../refungibleAbi.json';35import contractHelpersAbi from './contractHelpersAbi.json';3637export const GAS_ARGS = {gas: 2500000};3839export enum SponsoringMode {40 Disabled = 0,41 Allowlisted = 1,42 Generous = 2,43}4445let web3Connected = false;46export async function usingWeb3<T>(cb: (web3: Web3) => Promise<T> | T): Promise<T> {47 if (web3Connected) throw new Error('do not nest usingWeb3 calls');48 web3Connected = true;4950 const provider = new Web3.providers.WebsocketProvider(config.substrateUrl);51 const web3 = new Web3(provider);5253 try {54 return await cb(web3);55 } finally {56 // provider.disconnect(3000, 'normal disconnect');57 provider.connection.close();58 web3Connected = false;59 }60}6162function encodeIntBE(v: number): number[] {63 if (v >= 0xffffffff || v < 0) throw new Error('id overflow');64 return [65 v >> 24,66 (v >> 16) & 0xff,67 (v >> 8) & 0xff,68 v & 0xff,69 ];70}7172export async function getCollectionAddressFromResult(api: ApiPromise, result: any) {73 const collectionIdAddress = normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);74 const collectionId = collectionIdFromAddress(collectionIdAddress); 75 const collection = (await getDetailedCollectionInfo(api, collectionId))!;76 return {collectionIdAddress, collectionId, collection};77}7879export function collectionIdToAddress(collection: number): string {80 const buf = Buffer.from([0x17, 0xc4, 0xe6, 0x45, 0x3c, 0xc4, 0x9a, 0xaa, 0xae, 0xac, 0xa8, 0x94, 0xe6, 0xd9, 0x68, 0x3e,81 ...encodeIntBE(collection),82 ]);83 return Web3.utils.toChecksumAddress('0x' + buf.toString('hex'));84}85export function collectionIdFromAddress(address: string): number {86 if (!address.startsWith('0x'))87 throw 'address not starts with "0x"';88 if (address.length > 42)89 throw 'address length is more than 20 bytes';90 return Number('0x' + address.substring(address.length - 8));91}92 93export function normalizeAddress(address: string): string {94 return '0x' + address.substring(address.length - 40);95}9697export function tokenIdToAddress(collection: number, token: number): string {98 const buf = Buffer.from([0xf8, 0x23, 0x8c, 0xcf, 0xff, 0x8e, 0xd8, 0x87, 0x46, 0x3f, 0xd5, 0xe0,99 ...encodeIntBE(collection),100 ...encodeIntBE(token),101 ]);102 return Web3.utils.toChecksumAddress('0x' + buf.toString('hex'));103}104export function tokenIdToCross(collection: number, token: number): CrossAccountId {105 return {106 Ethereum: tokenIdToAddress(collection, token),107 };108}109110export function createEthAccount(web3: Web3) {111 const account = web3.eth.accounts.create();112 web3.eth.accounts.wallet.add(account.privateKey);113 return account.address;114}115116export async function createEthAccountWithBalance(api: ApiPromise, web3: Web3, privateKeyWrapper: (account: string) => IKeyringPair) {117 const alice = privateKeyWrapper('//Alice');118 const account = createEthAccount(web3);119 await transferBalanceToEth(api, alice, account);120121 return account;122}123124export async function transferBalanceToEth(api: ApiPromise, source: IKeyringPair, target: string, amount = 1000n * UNIQUE) {125 const tx = api.tx.balances.transfer(evmToAddress(target), amount);126 const events = await submitTransactionAsync(source, tx);127 const result = getGenericResult(events);128 expect(result.success).to.be.true;129}130131export async function itWeb3(name: string, cb: (apis: { web3: Web3, api: ApiPromise, privateKeyWrapper: (account: string) => IKeyringPair }) => any, opts: { only?: boolean, skip?: boolean } = {}) {132 let i: any = it;133 if (opts.only) i = i.only;134 else if (opts.skip) i = i.skip;135 i(name, async () => {136 await usingApi(async (api, privateKeyWrapper) => {137 await usingWeb3(async web3 => {138 await cb({api, web3, privateKeyWrapper});139 });140 });141 });142}143itWeb3.only = (name: string, cb: (apis: { web3: Web3, api: ApiPromise, privateKeyWrapper: (account: string) => IKeyringPair }) => any) => itWeb3(name, cb, {only: true});144itWeb3.skip = (name: string, cb: (apis: { web3: Web3, api: ApiPromise, privateKeyWrapper: (account: string) => IKeyringPair }) => any) => itWeb3(name, cb, {skip: true});145146export async function generateSubstrateEthPair(web3: Web3) {147 const account = web3.eth.accounts.create();148 evmToAddress(account.address);149}150151type NormalizedEvent = {152 address: string,153 event: string,154 args: { [key: string]: string }155};156157export function normalizeEvents(events: any): NormalizedEvent[] {158 const output = [];159 for (const key of Object.keys(events)) {160 if (key.match(/^[0-9]+$/)) {161 output.push(events[key]);162 } else if (Array.isArray(events[key])) {163 output.push(...events[key]);164 } else {165 output.push(events[key]);166 }167 }168 output.sort((a, b) => a.logIndex - b.logIndex);169 return output.map(({address, event, returnValues}) => {170 const args: { [key: string]: string } = {};171 for (const key of Object.keys(returnValues)) {172 if (!key.match(/^[0-9]+$/)) {173 args[key] = returnValues[key];174 }175 }176 return {177 address,178 event,179 args,180 };181 });182}183184export async function recordEvents(contract: any, action: () => Promise<void>): Promise<NormalizedEvent[]> {185 const out: any = [];186 contract.events.allEvents((_: any, event: any) => {187 out.push(event);188 });189 await action();190 return normalizeEvents(out);191}192193export function subToEthLowercase(eth: string): string {194 const bytes = addressToEvm(eth);195 return '0x' + Buffer.from(bytes).toString('hex');196}197198export function subToEth(eth: string): string {199 return Web3.utils.toChecksumAddress(subToEthLowercase(eth));200}201202export function compileContract(name: string, src: string) {203 const out = JSON.parse(solc.compile(JSON.stringify({204 language: 'Solidity',205 sources: {206 [`${name}.sol`]: {207 content: `208 // SPDX-License-Identifier: UNLICENSED209 pragma solidity ^0.8.6;210211 ${src}212 `,213 },214 },215 settings: {216 outputSelection: {217 '*': {218 '*': ['*'],219 },220 },221 },222 }))).contracts[`${name}.sol`][name];223224 return {225 abi: out.abi,226 object: '0x' + out.evm.bytecode.object,227 };228}229230export async function deployFlipper(web3: Web3, deployer: string) {231 const compiled = compileContract('Flipper', `232 contract Flipper {233 bool value = false;234 function flip() public {235 value = !value;236 }237 function getValue() public view returns (bool) {238 return value;239 }240 }241 `);242 const flipperContract = new web3.eth.Contract(compiled.abi, undefined, {243 data: compiled.object,244 from: deployer,245 ...GAS_ARGS,246 });247 const flipper = await flipperContract.deploy({data: compiled.object}).send({from: deployer});248249 return flipper;250}251252export async function deployCollector(web3: Web3, deployer: string) {253 const compiled = compileContract('Collector', `254 contract Collector {255 uint256 collected;256 fallback() external payable {257 giveMoney();258 }259 function giveMoney() public payable {260 collected += msg.value;261 }262 function getCollected() public view returns (uint256) {263 return collected;264 }265 function getUnaccounted() public view returns (uint256) {266 return address(this).balance - collected;267 }268269 function withdraw(address payable target) public {270 target.transfer(collected);271 collected = 0;272 }273 }274 `);275 const collectorContract = new web3.eth.Contract(compiled.abi, undefined, {276 data: compiled.object,277 from: deployer,278 ...GAS_ARGS,279 });280 const collector = await collectorContract.deploy({data: compiled.object}).send({from: deployer});281282 return collector;283}284285/** 286 * pallet evm_contract_helpers287 * @param web3 288 * @param caller - eth address289 * @returns 290 */291export function contractHelpers(web3: Web3, caller: string) {292 return new web3.eth.Contract(contractHelpersAbi as any, '0x842899ECF380553E8a4de75bF534cdf6fBF64049', {from: caller, ...GAS_ARGS});293}294295/** 296 * evm collection helper297 * @param web3 298 * @param caller - eth address299 * @returns 300 */301export function evmCollectionHelpers(web3: Web3, caller: string) {302 return new web3.eth.Contract(collectionHelpersAbi as any, '0x6c4e9fe1ae37a41e93cee429e8e1881abdcbb54f', {from: caller, ...GAS_ARGS});303}304305/** 306 * evm collection307 * @param web3 308 * @param caller - eth address309 * @returns 310 */311export function evmCollection(web3: Web3, caller: string, collection: string, mode: CollectionMode = {type: 'NFT'}) {312 let abi;313 switch (mode.type) {314 case 'Fungible':315 abi = fungibleAbi;316 break;317 318 case 'NFT':319 abi = nonFungibleAbi;320 break;321 322 case 'ReFungible':323 abi = refungibleAbi;324 break;325326 default:327 throw 'Bad collection mode';328 }329 const contract = new web3.eth.Contract(abi as any, collection, {from: caller, ...GAS_ARGS});330 return contract;331}332333/**334 * Execute ethereum method call using substrate account335 * @param to target contract336 * @param mkTx - closure, receiving `contract.methods`, and returning method call,337 * to be used as following (assuming `to` = erc20 contract):338 * `m => m.transfer(to, amount)`339 *340 * # Example341 * ```ts342 * executeEthTxOnSub(api, alice, erc20Contract, m => m.transfer(target, amount));343 * ```344 */345export async function executeEthTxOnSub(web3: Web3, api: ApiPromise, from: IKeyringPair, to: any, mkTx: (methods: any) => any, {value = 0}: {value?: bigint | number} = { }) {346 const tx = api.tx.evm.call(347 subToEth(from.address),348 to.options.address,349 mkTx(to.methods).encodeABI(),350 value,351 GAS_ARGS.gas,352 await web3.eth.getGasPrice(),353 null,354 null,355 [],356 );357 const events = await submitTransactionAsync(from, tx);358 expect(events.some(({event: {section, method}}) => section == 'evm' && method == 'Executed')).to.be.true;359}360361export async function ethBalanceViaSub(api: ApiPromise, address: string): Promise<bigint> {362 return (await getBalance(api, [evmToAddress(address)]))[0];363}364365/**366 * Measure how much gas given closure consumes367 *368 * @param user which user balance will be checked369 */370export async function recordEthFee(api: ApiPromise, user: string, call: () => Promise<any>): Promise<bigint> {371 const before = await ethBalanceViaSub(api, user);372373 await call();374375 // In dev mode, the transaction might not finish processing in time376 await waitNewBlocks(api, 1);377 const after = await ethBalanceViaSub(api, user);378379 // Can't use .to.be.less, because chai doesn't supports bigint380 expect(after < before).to.be.true;381382 return before - after;383}384385type ElementOf<A> = A extends readonly (infer T)[] ? T : never;386// I want a fancier api, not a memory efficiency387export function* cartesian<T extends Array<Array<any>>, R extends Array<any>>(internalRest: [...R], ...args: [...T]): Generator<[...R, ...{[K in keyof T]: ElementOf<T[K]>}]> {388 if(args.length === 0) {389 yield internalRest as any;390 return;391 }392 for(const value of args[0]) {393 yield* cartesian([...internalRest, value], ...args.slice(1)) as any;394 }395}