From 088ceb16caa8921bed201461bb0ad46fa681e503 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 14 Oct 2022 08:44:52 +0000 Subject: [PATCH] chore: regenerate stubs --- --- a/pallets/unique/src/eth/stubs/CollectionHelpers.sol +++ b/pallets/unique/src/eth/stubs/CollectionHelpers.sol @@ -23,7 +23,7 @@ } /// @title Contract, which allows users to operate with collections -/// @dev the ERC-165 identifier for this interface is 0x542f5079 +/// @dev the ERC-165 identifier for this interface is 0x58918631 contract CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents { /// Create an NFT collection /// @param name Name of the collection @@ -56,28 +56,11 @@ string memory name, string memory description, string memory tokenPrefix - ) public payable returns (address) { - require(false, stub_error); - name; - description; - tokenPrefix; - dummy = 0; - return 0x0000000000000000000000000000000000000000; - } - - /// @dev EVM selector for this function is: 0xa9e7b5c0, - /// or in textual repr: createERC721MetadataCompatibleNFTCollection(string,string,string,string) - function createERC721MetadataCompatibleNFTCollection( - string memory name, - string memory description, - string memory tokenPrefix, - string memory baseUri ) public payable returns (address) { require(false, stub_error); name; description; tokenPrefix; - baseUri; dummy = 0; return 0x0000000000000000000000000000000000000000; } @@ -88,28 +71,11 @@ string memory name, string memory description, string memory tokenPrefix - ) public payable returns (address) { - require(false, stub_error); - name; - description; - tokenPrefix; - dummy = 0; - return 0x0000000000000000000000000000000000000000; - } - - /// @dev EVM selector for this function is: 0xa5596388, - /// or in textual repr: createERC721MetadataCompatibleRFTCollection(string,string,string,string) - function createERC721MetadataCompatibleRFTCollection( - string memory name, - string memory description, - string memory tokenPrefix, - string memory baseUri ) public payable returns (address) { require(false, stub_error); name; description; tokenPrefix; - baseUri; dummy = 0; return 0x0000000000000000000000000000000000000000; } --- a/tests/src/eth/api/CollectionHelpers.sol +++ b/tests/src/eth/api/CollectionHelpers.sol @@ -18,7 +18,7 @@ } /// @title Contract, which allows users to operate with collections -/// @dev the ERC-165 identifier for this interface is 0x542f5079 +/// @dev the ERC-165 identifier for this interface is 0x58918631 interface CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents { /// Create an NFT collection /// @param name Name of the collection @@ -44,15 +44,6 @@ string memory name, string memory description, string memory tokenPrefix - ) external payable returns (address); - - /// @dev EVM selector for this function is: 0xa9e7b5c0, - /// or in textual repr: createERC721MetadataCompatibleNFTCollection(string,string,string,string) - function createERC721MetadataCompatibleNFTCollection( - string memory name, - string memory description, - string memory tokenPrefix, - string memory baseUri ) external payable returns (address); /// @dev EVM selector for this function is: 0xab173450, @@ -61,15 +52,6 @@ string memory name, string memory description, string memory tokenPrefix - ) external payable returns (address); - - /// @dev EVM selector for this function is: 0xa5596388, - /// or in textual repr: createERC721MetadataCompatibleRFTCollection(string,string,string,string) - function createERC721MetadataCompatibleRFTCollection( - string memory name, - string memory description, - string memory tokenPrefix, - string memory baseUri ) external payable returns (address); /// @dev EVM selector for this function is: 0x85624258, --- a/tests/src/eth/collectionHelpersAbi.json +++ b/tests/src/eth/collectionHelpersAbi.json @@ -29,30 +29,6 @@ "inputs": [ { "internalType": "string", "name": "name", "type": "string" }, { "internalType": "string", "name": "description", "type": "string" }, - { "internalType": "string", "name": "tokenPrefix", "type": "string" }, - { "internalType": "string", "name": "baseUri", "type": "string" } - ], - "name": "createERC721MetadataCompatibleNFTCollection", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "string", "name": "name", "type": "string" }, - { "internalType": "string", "name": "description", "type": "string" }, - { "internalType": "string", "name": "tokenPrefix", "type": "string" }, - { "internalType": "string", "name": "baseUri", "type": "string" } - ], - "name": "createERC721MetadataCompatibleRFTCollection", - "outputs": [{ "internalType": "address", "name": "", "type": "address" }], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { "internalType": "string", "name": "name", "type": "string" }, - { "internalType": "string", "name": "description", "type": "string" }, { "internalType": "string", "name": "tokenPrefix", "type": "string" } ], "name": "createNFTCollection", -- gitstuff