1234567891011121314151617import {itEth, usingEthPlaygrounds, expect, EthUniqueHelper} from './util';18import {Pallets} from '../util';19import {IProperty, ITokenPropertyPermission, TCollectionMode} from '../util/playgrounds/types';20import {IKeyringPair} from '@polkadot/types/types';2122describe('EVM collection properties', () => {23 let donor: IKeyringPair;24 let alice: IKeyringPair;2526 before(async function() {27 await usingEthPlaygrounds(async (_helper, privateKey) => {28 donor = await privateKey({filename: __filename});29 [alice] = await _helper.arrange.createAccounts([10n], donor);30 });31 });3233 itEth('Can be set', async({helper}) => {34 const caller = await helper.eth.createAccountWithBalance(donor);35 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'test', tokenPrefix: 'test', properties: []});36 await collection.addAdmin(alice, {Ethereum: caller});3738 const address = helper.ethAddress.fromCollectionId(collection.collectionId);39 const contract = helper.ethNativeContract.collection(address, 'nft', caller);4041 await contract.methods.setCollectionProperty('testKey', Buffer.from('testValue')).send({from: caller});4243 const raw = (await collection.getData())?.raw;4445 expect(raw.properties[0].value).to.equal('testValue');46 });4748 itEth('Can be deleted', async({helper}) => {49 const caller = await helper.eth.createAccountWithBalance(donor);50 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'test', tokenPrefix: 'test', properties: [{key: 'testKey', value: 'testValue'}]});5152 await collection.addAdmin(alice, {Ethereum: caller});5354 const address = helper.ethAddress.fromCollectionId(collection.collectionId);55 const contract = helper.ethNativeContract.collection(address, 'nft', caller);5657 await contract.methods.deleteCollectionProperty('testKey').send({from: caller});5859 const raw = (await collection.getData())?.raw;6061 expect(raw.properties.length).to.equal(0);62 });6364 itEth('Can be read', async({helper}) => {65 const caller = helper.eth.createAccount();66 const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'test', tokenPrefix: 'test', properties: [{key: 'testKey', value: 'testValue'}]});6768 const address = helper.ethAddress.fromCollectionId(collection.collectionId);69 const contract = helper.ethNativeContract.collection(address, 'nft', caller);7071 const value = await contract.methods.collectionProperty('testKey').call();72 expect(value).to.equal(helper.getWeb3().utils.toHex('testValue'));73 });74});7576describe('Supports ERC721Metadata', () => {77 let donor: IKeyringPair;7879 before(async function() {80 await usingEthPlaygrounds(async (_helper, privateKey) => {81 donor = await privateKey({filename: __filename});82 });83 });8485 const checkERC721Metadata = async (helper: EthUniqueHelper, mode: 'nft' | 'rft') => {86 const caller = await helper.eth.createAccountWithBalance(donor);87 const bruh = await helper.eth.createAccountWithBalance(donor);8889 const BASE_URI = 'base/';90 const SUFFIX = 'suffix1';91 const URI = 'uri1';9293 const collectionHelpers = helper.ethNativeContract.collectionHelpers(caller);94 const creatorMethod = mode === 'rft' ? 'createRFTCollection' : 'createNFTCollection';9596 const {collectionId, collectionAddress} = await helper.eth[creatorMethod](caller, 'n', 'd', 'p');9798 const contract = helper.ethNativeContract.collectionById(collectionId, mode, caller);99 await contract.methods.addCollectionAdmin(bruh).send(); 100101 const collection1 = helper.nft.getCollectionObject(collectionId);102 const data1 = await collection1.getData();103 expect(data1?.raw.flags.erc721metadata).to.be.false;104 expect(await contract.methods.supportsInterface('0x5b5e139f').call()).to.be.false;105106 await collectionHelpers.methods.makeCollectionERC721MetadataCompatible(collectionAddress, BASE_URI)107 .send({from: bruh});108109 expect(await contract.methods.supportsInterface('0x5b5e139f').call()).to.be.true;110111 const collection2 = helper.nft.getCollectionObject(collectionId);112 const data2 = await collection2.getData();113 expect(data2?.raw.flags.erc721metadata).to.be.true;114115 const propertyPermissions = data2?.raw.tokenPropertyPermissions;116 expect(propertyPermissions?.length).to.equal(2);117118 expect(propertyPermissions.find((tpp: ITokenPropertyPermission) => {119 return tpp.key === 'URI' && tpp.permission.mutable && tpp.permission.collectionAdmin && !tpp.permission.tokenOwner;120 })).to.be.not.null;121122 expect(propertyPermissions.find((tpp: ITokenPropertyPermission) => {123 return tpp.key === 'URISuffix' && tpp.permission.mutable && tpp.permission.collectionAdmin && !tpp.permission.tokenOwner;124 })).to.be.not.null;125126 expect(data2?.raw.properties?.find((property: IProperty) => {127 return property.key === 'baseURI' && property.value === BASE_URI;128 })).to.be.not.null;129130 const token1Result = await contract.methods.mint(bruh).send();131 const tokenId1 = token1Result.events.Transfer.returnValues.tokenId;132133 expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(BASE_URI);134135 await contract.methods.setProperty(tokenId1, 'URISuffix', Buffer.from(SUFFIX)).send();136 expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(BASE_URI + SUFFIX);137138 await contract.methods.setProperty(tokenId1, 'URI', Buffer.from(URI)).send();139 expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(URI);140141 await contract.methods.deleteProperty(tokenId1, 'URI').send();142 expect(await contract.methods.tokenURI(tokenId1).call()).to.equal(BASE_URI + SUFFIX);143144 const token2Result = await contract.methods.mintWithTokenURI(bruh, URI).send();145 const tokenId2 = token2Result.events.Transfer.returnValues.tokenId;146147 expect(await contract.methods.tokenURI(tokenId2).call()).to.equal(URI);148149 await contract.methods.deleteProperty(tokenId2, 'URI').send();150 expect(await contract.methods.tokenURI(tokenId2).call()).to.equal(BASE_URI);151152 await contract.methods.setProperty(tokenId2, 'URISuffix', Buffer.from(SUFFIX)).send();153 expect(await contract.methods.tokenURI(tokenId2).call()).to.equal(BASE_URI + SUFFIX);154 };155156 itEth('ERC721Metadata property can be set for NFT collection', async({helper}) => {157 await checkERC721Metadata(helper, 'nft');158 });159160 itEth.ifWithPallets('ERC721Metadata property can be set for RFT collection', [Pallets.ReFungible], async({helper}) => {161 await checkERC721Metadata(helper, 'rft');162 });163});164165describe('EVM collection property', () => {166 let alice: IKeyringPair;167168 before(() => {169 usingEthPlaygrounds(async (_helper, privateKey) => {170 alice = await privateKey('//Alice');171 });172 });173174 async function testSetReadProperties(helper: EthUniqueHelper, mode: TCollectionMode) {175 const collection = await helper[mode].mintCollection(alice, {name: 'A', description: 'B', tokenPrefix: 'C'});176177 const sender = await helper.eth.createAccountWithBalance(alice, 100n);178 await collection.addAdmin(alice, {Ethereum: sender});179180 const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);181 const contract = helper.ethNativeContract.collection(collectionAddress, mode, sender);182183 const keys = ['key0', 'key1'];184185 const writeProperties = [186 helper.ethProperty.property(keys[0], 'value0'),187 helper.ethProperty.property(keys[1], 'value1'),188 ];189190 await contract.methods.setCollectionProperties(writeProperties).send();191 const readProperties = await contract.methods.collectionProperties([keys[0], keys[1]]).call();192 expect(readProperties).to.be.like(writeProperties);193 }194195 itEth('Set/read properties ft', async ({helper}) => {196 await testSetReadProperties(helper, 'ft');197 });198 itEth('Set/read properties rft', async ({helper}) => {199 await testSetReadProperties(helper, 'rft');200 });201 itEth('Set/read properties nft', async ({helper}) => {202 await testSetReadProperties(helper, 'nft');203 });204205 async function testDeleteProperties(helper: EthUniqueHelper, mode: TCollectionMode) {206 const collection = await helper[mode].mintCollection(alice, {name: 'A', description: 'B', tokenPrefix: 'C'});207208 const sender = await helper.eth.createAccountWithBalance(alice, 100n);209 await collection.addAdmin(alice, {Ethereum: sender});210211 const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);212 const contract = helper.ethNativeContract.collection(collectionAddress, mode, sender);213214 const keys = ['key0', 'key1', 'key2', 'key3'];215216 {217 const writeProperties = [218 helper.ethProperty.property(keys[0], 'value0'),219 helper.ethProperty.property(keys[1], 'value1'),220 helper.ethProperty.property(keys[2], 'value2'),221 helper.ethProperty.property(keys[3], 'value3'),222 ];223224 await contract.methods.setCollectionProperties(writeProperties).send();225 const readProperties = await contract.methods.collectionProperties([keys[0], keys[1], keys[2], keys[3]]).call();226 expect(readProperties).to.be.like(writeProperties);227 }228229 {230 const expectProperties = [231 helper.ethProperty.property(keys[0], 'value0'),232 helper.ethProperty.property(keys[1], 'value1'),233 ];234235 await contract.methods.deleteCollectionProperties([keys[2], keys[3]]).send();236 const readProperties = await contract.methods.collectionProperties([]).call();237 expect(readProperties).to.be.like(expectProperties);238 }239 }240 241 itEth('Delete properties ft', async ({helper}) => {242 await testDeleteProperties(helper, 'ft');243 });244 itEth('Delete properties rft', async ({helper}) => {245 await testDeleteProperties(helper, 'rft');246 });247 itEth('Delete properties nft', async ({helper}) => {248 await testDeleteProperties(helper, 'nft');249 });250 251});