git.delta.rocks / unique-network / refs/commits / 12fbdbdcf4df

difftreelog

tests(playgrounds): updates and revisions for older tests on playgrounds

Fahrrader2022-09-30parent: #e106ad4.patch.diff
in: master

9 files changed

modifiedtests/src/change-collection-owner.test.tsdiffbeforeafterboth
--- a/tests/src/change-collection-owner.test.ts
+++ b/tests/src/change-collection-owner.test.ts
@@ -31,11 +31,11 @@
   itSub('Changing owner changes owner address', async ({helper}) => {
     const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
     const beforeChanging = await helper.collection.getData(collection.collectionId);
-    expect(beforeChanging?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(alice.address));
+    expect(beforeChanging?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(alice.address));
 
     await collection.changeOwner(alice, bob.address);
     const afterChanging = await helper.collection.getData(collection.collectionId);
-    expect(afterChanging?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(bob.address));
+    expect(afterChanging?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(bob.address));
   });
 });
 
@@ -60,7 +60,7 @@
     await expect(changeOwnerTx()).to.be.rejectedWith(/common\.NoPermission/);
 
     const afterChanging = await helper.collection.getData(collection.collectionId);
-    expect(afterChanging?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(bob.address));
+    expect(afterChanging?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(bob.address));
   });
 
   itSub('New collectionOwner has access to sponsorship management operations in the collection', async ({helper}) => {
@@ -68,7 +68,7 @@
     await collection.changeOwner(alice, bob.address);
 
     const afterChanging = await helper.collection.getData(collection.collectionId);
-    expect(afterChanging?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(bob.address));
+    expect(afterChanging?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(bob.address));
 
     await collection.setSponsor(bob, charlie.address);
     await collection.confirmSponsorship(charlie);
@@ -97,7 +97,7 @@
     await collection.changeOwner(alice, bob.address);
     await collection.changeOwner(bob, charlie.address);
     const collectionData = await collection.getData();
-    expect(collectionData?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(charlie.address));
+    expect(collectionData?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(charlie.address));
   });
 });
 
@@ -140,7 +140,7 @@
     await expect(changeOwnerTx()).to.be.rejectedWith(/common\.NoPermission/);
 
     const afterChanging = await helper.collection.getData(collection.collectionId);
-    expect(afterChanging?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(bob.address));
+    expect(afterChanging?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(bob.address));
 
     const setSponsorTx = async () => collection.setSponsor(alice, charlie.address);
     const confirmSponsorshipTx = async () => collection.confirmSponsorship(alice);
modifiedtests/src/createCollection.test.tsdiffbeforeafterboth
--- a/tests/src/createCollection.test.ts
+++ b/tests/src/createCollection.test.ts
@@ -14,12 +14,12 @@
 // 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 {IKeyringPair} from '@polkadot/types/types';
 import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
-import {IKeyringPair} from '@polkadot/types/types';
 import {ICollectionCreationOptions, IProperty} from './util/playgrounds/types';
-import {DevUniqueHelper} from './util/playgrounds/unique.dev';
+import {UniqueHelper} from './util/playgrounds/unique';
 
-async function mintCollectionHelper(helper: DevUniqueHelper, signer: IKeyringPair, options: ICollectionCreationOptions, type?: 'nft' | 'fungible' | 'refungible') {
+async function mintCollectionHelper(helper: UniqueHelper, signer: IKeyringPair, options: ICollectionCreationOptions, type?: 'nft' | 'fungible' | 'refungible') {
   let collection;
   if (type === 'nft') {
     collection = await helper.nft.mintCollection(signer, options);
@@ -29,7 +29,7 @@
     collection = await helper.rft.mintCollection(signer, options);
   }
   const data = await collection.getData();
-  expect(data?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(signer.address));
+  expect(data?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(signer.address));
   expect(data?.name).to.be.equal(options.name);
   expect(data?.description).to.be.equal(options.description);
   expect(data?.raw.tokenPrefix).to.be.equal(options.tokenPrefix);
@@ -54,32 +54,27 @@
     });
   });
   itSub('Create new NFT collection', async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 'nft');
   });
   itSub('Create new NFT collection whith collection_name of maximum length (64 bytes)', async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {name: 'A'.repeat(64), description: 'descr', tokenPrefix: 'COL'}, 'nft');
   });
   itSub('Create new NFT collection whith collection_description of maximum length (256 bytes)', async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {name: 'name', description: 'A'.repeat(256), tokenPrefix: 'COL'}, 'nft');
   });
   itSub('Create new NFT collection whith token_prefix of maximum length (16 bytes)', async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(16)}, 'nft');
   });
+
   itSub('Create new Fungible collection', async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 'fungible');
   });
+
   itSub.ifWithPallets('Create new ReFungible collection', [Pallets.ReFungible], async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 'refungible');
   });
 
   itSub('create new collection with properties', async ({helper}) => {
-
     await mintCollectionHelper(helper, alice, {
       name: 'name', description: 'descr', tokenPrefix: 'COL',
       properties: [{key: 'key1', value: 'val1'}],
@@ -88,7 +83,6 @@
   });
 
   itSub('Create new collection with extra fields', async ({helper}) => {
-
     const collection = await mintCollectionHelper(helper, alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'}, 'fungible');
     await collection.setPermissions(alice, {access: 'AllowList'});
     await collection.setLimits(alice, {accountTokenOwnershipLimit: 3});
@@ -96,7 +90,7 @@
     const limits = await collection.getEffectiveLimits();
     const raw = data?.raw;
 
-    expect(data?.normalizedOwner).to.be.equal(helper.util.normalizeSubstrateAddress(alice.address));
+    expect(data?.normalizedOwner).to.be.equal(helper.address.normalizeSubstrate(alice.address));
     expect(data?.name).to.be.equal('name');
     expect(data?.description).to.be.equal('descr');
     expect(raw.permissions.access).to.be.equal('AllowList');
@@ -105,7 +99,6 @@
   });
 
   itSub('New collection is not external', async ({helper}) => {
-
     const collection = await helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL'});
     const data = await collection.getData();
     expect(data?.raw.readOnly).to.be.false;
@@ -131,12 +124,11 @@
     await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
   });
   itSub('(!negative test!) create new NFT collection whith incorrect data (token_prefix)', async ({helper}) => {
-
     const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'A'.repeat(17)});
     await expect(mintCollectionTx()).to.be.rejectedWith('Verification Error');
   });
+  
   itSub('(!negative test!) fails when bad limits are set', async ({helper}) => {
-
     const mintCollectionTx = async () => helper.nft.mintCollection(alice, {name: 'name', description: 'descr', tokenPrefix: 'COL', limits: {tokenLimit: 0}});
     await expect(mintCollectionTx()).to.be.rejectedWith(/common\.CollectionTokenLimitExceeded/);
   });
modifiedtests/src/createItem.test.tsdiffbeforeafterboth
--- a/tests/src/createItem.test.ts
+++ b/tests/src/createItem.test.ts
@@ -15,24 +15,14 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {IKeyringPair} from '@polkadot/types/types';
-
-import {
-  createCollection,
-  itApi,
-  normalizeAccountId,
-  getCreateItemResult,
-  CrossAccountId,
-} from './util/helpers';
-
 import {usingPlaygrounds, expect, itSub, Pallets} from './util/playgrounds';
-import {IProperty} from './util/playgrounds/types';
-import {executeTransaction} from './substrate/substrate-api';
-import {DevUniqueHelper} from './util/playgrounds/unique.dev';
+import {IProperty, ICrossAccountId} from './util/playgrounds/types';
+import {UniqueHelper} from './util/playgrounds/unique';
 
-async function mintTokenHelper(helper: DevUniqueHelper, collection: any, signer: IKeyringPair, owner: CrossAccountId, type: 'nft' | 'fungible' | 'refungible'='nft', properties?: IProperty[]) {
+async function mintTokenHelper(helper: UniqueHelper, collection: any, signer: IKeyringPair, owner: ICrossAccountId, type: 'nft' | 'fungible' | 'refungible'='nft', properties?: IProperty[]) {
   let token;
   const itemCountBefore = await helper.collection.getLastTokenId(collection.collectionId);
-  const itemBalanceBefore = (await helper.api!.rpc.unique.balance(collection.collectionId, owner, 0)).toBigInt();
+  const itemBalanceBefore = (await helper.callRpc('api.rpc.unique.balance', [collection.collectionId, owner, 0])).toBigInt();
   if (type === 'nft') {
     token = await collection.mintToken(signer, owner, properties);
   } else if (type === 'fungible') {
@@ -42,7 +32,7 @@
   }
 
   const itemCountAfter = await helper.collection.getLastTokenId(collection.collectionId);
-  const itemBalanceAfter = (await helper.api!.rpc.unique.balance(collection.collectionId, owner, 0)).toBigInt();
+  const itemBalanceAfter = (await helper.callRpc('api.rpc.unique.balance', [collection.collectionId, owner, 0])).toBigInt();
 
   if (type === 'fungible') {
     expect(itemBalanceAfter - itemBalanceBefore).to.be.equal(10n);
@@ -75,27 +65,22 @@
   });
   itSub('Check events on create new item in Fungible collection', async ({helper}) => {
     const {collectionId} = await helper.ft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'}, 0);
-    const api = helper.api!;
-
-
-    const to = normalizeAccountId(alice);
+    const to = {Substrate: alice.address};
     {
       const createData = {fungible: {value: 100}};
-      const tx = api.tx.unique.createItem(collectionId, to, createData as any);
-      const events = await executeTransaction(api, alice, tx);
-      const result = getCreateItemResult(events);
-      expect(result.amount).to.be.equal(100);
-      expect(result.collectionId).to.be.equal(collectionId);
-      expect(result.recipient).to.be.deep.equal(to);
+      const events = await helper.executeExtrinsic(alice, 'api.tx.unique.createItem', [collectionId, to, createData as any]);
+      const result = helper.util.extractTokensFromCreationResult(events);
+      expect(result.tokens[0].amount).to.be.equal(100n);
+      expect(result.tokens[0].collectionId).to.be.equal(collectionId);
+      expect(result.tokens[0].owner).to.be.deep.equal(to);
     }
     {
       const createData = {fungible: {value: 50}};
-      const tx = api.tx.unique.createItem(collectionId, to, createData as any);
-      const events = await executeTransaction(api, alice, tx);
-      const result = getCreateItemResult(events);
-      expect(result.amount).to.be.equal(50);
-      expect(result.collectionId).to.be.equal(collectionId);
-      expect(result.recipient).to.be.deep.equal(to);
+      const events = await helper.executeExtrinsic(alice, 'api.tx.unique.createItem', [collectionId, to, createData as any]);
+      const result = helper.util.extractTokensFromCreationResult(events);
+      expect(result.tokens[0].amount).to.be.equal(50n);
+      expect(result.tokens[0].collectionId).to.be.equal(collectionId);
+      expect(result.tokens[0].owner).to.be.deep.equal(to);
     }
   });
   itSub.ifWithPallets('Create new item in ReFungible collection', [Pallets.ReFungible], async ({helper}) =>  {
@@ -162,12 +147,12 @@
     const amount = 1n;
     const token = await mintTokenHelper(helper, collection, alice, {Substrate: bob.address});
     {
-      const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
+      const totalPieces = await helper.callRpc('api.rpc.unique.totalPieces', [collection.collectionId, token.tokenId]);
       expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
     }
     await token.transfer(bob, {Substrate: alice.address});
     {
-      const totalPieces = await helper.api?.rpc.unique.totalPieces(collection.collectionId, token.tokenId);
+      const totalPieces = await helper.callRpc('api.rpc.unique.totalPieces', [collection.collectionId, token.tokenId]);
       expect(totalPieces?.unwrap().toBigInt()).to.be.equal(amount);
     }
   });
@@ -267,21 +252,21 @@
   itSub('Check total pieces for invalid Fungible token', async ({helper}) => {
     const collection = await helper.ft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'}, 0);
     const invalidTokenId = 1_000_000;
-    expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
-    expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
+    expect((await helper.callRpc('api.rpc.unique.totalPieces', [collection.collectionId, invalidTokenId]))?.isNone).to.be.true;
+    expect((await helper.callRpc('api.rpc.unique.tokenData', [collection.collectionId, invalidTokenId]))?.pieces.toBigInt()).to.be.equal(0n);
   });
 
   itSub('Check total pieces for invalid NFT token', async ({helper}) => {
     const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
     const invalidTokenId = 1_000_000;
-    expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
-    expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
+    expect((await helper.callRpc('api.rpc.unique.totalPieces', [collection.collectionId, invalidTokenId]))?.isNone).to.be.true;
+    expect((await helper.callRpc('api.rpc.unique.tokenData', [collection.collectionId, invalidTokenId]))?.pieces.toBigInt()).to.be.equal(0n);
   });
 
   itSub.ifWithPallets('Check total pieces for invalid Refungible token', [Pallets.ReFungible], async ({helper}) => {
     const collection = await helper.rft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
     const invalidTokenId = 1_000_000;
-    expect((await helper.api?.rpc.unique.totalPieces(collection.collectionId, invalidTokenId))?.isNone).to.be.true;
-    expect((await helper.api?.rpc.unique.tokenData(collection.collectionId, invalidTokenId))?.pieces.toBigInt()).to.be.equal(0n);
+    expect((await helper.callRpc('api.rpc.unique.totalPieces', [collection.collectionId, invalidTokenId]))?.isNone).to.be.true;
+    expect((await helper.callRpc('api.rpc.unique.tokenData', [collection.collectionId, invalidTokenId]))?.pieces.toBigInt()).to.be.equal(0n);
   });
 });
modifiedtests/src/createMultipleItems.test.tsdiffbeforeafterboth
before · tests/src/createMultipleItems.test.ts
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/>.1617import {IKeyringPair} from '@polkadot/types/types';18import {19  normalizeAccountId,20} from './util/helpers';21import {usingPlaygrounds, expect, Pallets, itSub} from './util/playgrounds';222324describe('Integration Test createMultipleItems(collection_id, owner, items_data):', () => {25  let alice: IKeyringPair;2627  before(async () => {28    await usingPlaygrounds(async (helper, privateKey) => {29      const donor = privateKey('//Alice');30      [alice] = await helper.arrange.createAccounts([100n], donor);31    });32  });3334  itSub('Create 0x31, 0x32, 0x33 items in active NFT collection and verify tokens data in chain', async ({helper}) => {35    const collection = await helper.nft.mintCollection(alice, {36      name: 'name',37      description: 'descr',38      tokenPrefix: 'COL',39      tokenPropertyPermissions: [40        {key: 'data', permission: {tokenOwner: true, mutable: false, collectionAdmin: false}},41      ],42    });43    const args = [44      {properties: [{key: 'data', value: '1'}]},45      {properties: [{key: 'data', value: '2'}]},46      {properties: [{key: 'data', value: '3'}]},47    ];48    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);49    for (const [i, token] of tokens.entries()) {50      const tokenData = await token.getData();51      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: helper.util.normalizeSubstrateAddress(alice.address)});52      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);53    }54  });5556  itSub('Create 0x01, 0x02, 0x03 items in active Fungible collection and verify tokens data in chain', async ({helper}) => {57    const collection = await helper.ft.mintCollection(alice, {58      name: 'name',59      description: 'descr',60      tokenPrefix: 'COL',61    });62    const args = [63      {value: 1n},64      {value: 2n},65      {value: 3n},66    ];67    await helper.ft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, args, {Substrate: alice.address});68    expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(6n);69  });7071  itSub.ifWithPallets('Create 0x31, 0x32, 0x33 items in active ReFungible collection and verify tokens data in chain', [Pallets.ReFungible], async ({helper}) => {72    const collection = await helper.rft.mintCollection(alice, {73      name: 'name',74      description: 'descr',75      tokenPrefix: 'COL',76    });77    const args = [78      {pieces: 1n},79      {pieces: 2n},80      {pieces: 3n},81    ];82    const tokens = await helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);8384    for (const [i, token] of tokens.entries()) {85      expect(await token.getBalance({Substrate: alice.address})).to.be.equal(BigInt(i + 1));86    }87  });8889  itSub('Can mint amount of items equals to collection limits', async ({helper}) => {90    const collection = await helper.nft.mintCollection(alice, {91      name: 'name',92      description: 'descr',93      tokenPrefix: 'COL',94      limits: {95        tokenLimit: 2,96      },97    });98    const args = [{}, {}];99    await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);100  });101102  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property Admin', async ({helper}) => {103    const collection = await helper.nft.mintCollection(alice, {104      name: 'name',105      description: 'descr',106      tokenPrefix: 'COL',107      tokenPropertyPermissions: [108        {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}},109      ],110    });111    const args = [112      {properties: [{key: 'data', value: '1'}]},113      {properties: [{key: 'data', value: '2'}]},114      {properties: [{key: 'data', value: '3'}]},115    ];116    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);117    for (const [i, token] of tokens.entries()) {118      const tokenData = await token.getData();119      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: helper.util.normalizeSubstrateAddress(alice.address)});120      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);121    }122  });123124  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property AdminConst', async ({helper}) => {125    const collection = await helper.nft.mintCollection(alice, {126      name: 'name',127      description: 'descr',128      tokenPrefix: 'COL',129      tokenPropertyPermissions: [130        {key: 'data', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}},131      ],132    });133    const args = [134      {properties: [{key: 'data', value: '1'}]},135      {properties: [{key: 'data', value: '2'}]},136      {properties: [{key: 'data', value: '3'}]},137    ];138    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);139    for (const [i, token] of tokens.entries()) {140      const tokenData = await token.getData();141      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: helper.util.normalizeSubstrateAddress(alice.address)});142      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);143    }144  });145146  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property itemOwnerOrAdmin', async ({helper}) => {147    const collection = await helper.nft.mintCollection(alice, {148      name: 'name',149      description: 'descr',150      tokenPrefix: 'COL',151      tokenPropertyPermissions: [152        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},153      ],154    });155    const args = [156      {properties: [{key: 'data', value: '1'}]},157      {properties: [{key: 'data', value: '2'}]},158      {properties: [{key: 'data', value: '3'}]},159    ];160    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);161    for (const [i, token] of tokens.entries()) {162      const tokenData = await token.getData();163      expect(tokenData?.normalizedOwner).to.be.deep.equal({Substrate: helper.util.normalizeSubstrateAddress(alice.address)});164      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);165    }166  });167});168169describe('Negative Integration Test createMultipleItems(collection_id, owner, items_data):', () => {170  let alice: IKeyringPair;171  let bob: IKeyringPair;172173  before(async () => {174    await usingPlaygrounds(async (helper, privateKey) => {175      const donor = privateKey('//Alice');176      [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);177    });178  });179180  itSub('Regular user cannot create items in active NFT collection', async ({helper}) => {181    const collection = await helper.nft.mintCollection(alice, {182      name: 'name',183      description: 'descr',184      tokenPrefix: 'COL',185    });186    const args = [187      {},188      {},189    ];190    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);191    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);192  });193194  itSub('Regular user cannot create items in active Fungible collection', async ({helper}) => {195    const collection = await helper.ft.mintCollection(alice, {196      name: 'name',197      description: 'descr',198      tokenPrefix: 'COL',199    });200    const args = [201      {value: 1n},202      {value: 2n},203      {value: 3n},204    ];205    const mintTx = async () => helper.ft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, args, {Substrate: alice.address});206    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);207  });208209  itSub.ifWithPallets('Regular user cannot create items in active ReFungible collection', [Pallets.ReFungible], async ({helper}) => {210    const collection = await helper.rft.mintCollection(alice, {211      name: 'name',212      description: 'descr',213      tokenPrefix: 'COL',214    });215    const args = [216      {pieces: 1n},217      {pieces: 1n},218      {pieces: 1n},219    ];220    const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);221    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);222  });223224  itSub('Create token in not existing collection', async ({helper}) => {225    const collectionId = 1_000_000;226    const args = [227      {},228      {},229    ];230    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collectionId, {Substrate: alice.address}, args);231    await expect(mintTx()).to.be.rejectedWith(/common\.CollectionNotFound/);232  });233234  itSub('Create NFTs that has reached the maximum data limit', async ({helper}) => {235    const collection = await helper.nft.mintCollection(alice, {236      name: 'name',237      description: 'descr',238      tokenPrefix: 'COL',239      tokenPropertyPermissions: [240        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},241      ],242    });243    const args = [244      {properties: [{key: 'data', value: 'A'.repeat(32769)}]},245      {properties: [{key: 'data', value: 'B'.repeat(32769)}]},246      {properties: [{key: 'data', value: 'C'.repeat(32769)}]},247    ];248    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);249    await expect(mintTx()).to.be.rejectedWith('Verification Error');250  });251252  itSub.ifWithPallets('Create Refungible tokens that has reached the maximum data limit', [Pallets.ReFungible], async ({helper}) => {253    const collection = await helper.rft.mintCollection(alice, {254      name: 'name',255      description: 'descr',256      tokenPrefix: 'COL',257      tokenPropertyPermissions: [258        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},259      ],260    });261    const args = [262      {pieces: 10n, properties: [{key: 'data', value: 'A'.repeat(32769)}]},263      {pieces: 10n, properties: [{key: 'data', value: 'B'.repeat(32769)}]},264      {pieces: 10n, properties: [{key: 'data', value: 'C'.repeat(32769)}]},265    ];266    const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);267    await expect(mintTx()).to.be.rejectedWith('Verification Error');268  });269270  itSub.ifWithPallets('Create tokens with different types', [Pallets.ReFungible], async ({helper}) => {271    const {collectionId} = await helper.nft.mintCollection(alice, {272      name: 'name',273      description: 'descr',274      tokenPrefix: 'COL',275    });276277    const types = ['NFT', 'Fungible', 'ReFungible'];278    const mintTx = helper.api?.tx.unique.createMultipleItems(collectionId, normalizeAccountId(alice.address), types);279    await expect(helper.signTransaction(alice, mintTx)).to.be.rejected;280  });281282  itSub('Create tokens with different data limits <> maximum data limit', async ({helper}) => {283    const collection = await helper.nft.mintCollection(alice, {284      name: 'name',285      description: 'descr',286      tokenPrefix: 'COL',287      tokenPropertyPermissions: [288        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},289      ],290    });291    const args = [292      {properties: [{key: 'data', value: 'A'}]},293      {properties: [{key: 'data', value: 'B'.repeat(32769)}]},294    ];295    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);296    await expect(mintTx()).to.be.rejectedWith('Verification Error');297  });298299  itSub('Fails when minting tokens exceeds collectionLimits amount', async ({helper}) => {300    const collection = await helper.nft.mintCollection(alice, {301      name: 'name',302      description: 'descr',303      tokenPrefix: 'COL',304      tokenPropertyPermissions: [305        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},306      ],307      limits: {308        tokenLimit: 1,309      },310    });311    const args = [312      {},313      {},314    ];315    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);316    await expect(mintTx()).to.be.rejectedWith(/common\.CollectionTokenLimitExceeded/);317  });318319  itSub('User doesnt have editing rights', async ({helper}) => {320    const collection = await helper.nft.mintCollection(alice, {321      name: 'name',322      description: 'descr',323      tokenPrefix: 'COL',324      tokenPropertyPermissions: [325        {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: false}},326      ],327    });328    const args = [329      {properties: [{key: 'data', value: 'A'}]},330    ];331    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);332    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);333  });334335  itSub('Adding property without access rights', async ({helper}) => {336    const collection = await helper.nft.mintCollection(alice, {337      name: 'name',338      description: 'descr',339      tokenPrefix: 'COL',340      properties: [341        {342          key: 'data',343          value: 'v',344        },345      ],346    });347    const args = [348      {properties: [{key: 'data', value: 'A'}]},349    ];350    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);351    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);352  });353354  itSub('Adding more than 64 prps', async ({helper}) => {355    const collection = await helper.nft.mintCollection(alice, {356      name: 'name',357      description: 'descr',358      tokenPrefix: 'COL',359    });360    const prps = [];361362    for (let i = 0; i < 65; i++) {363      prps.push({key: `key${i}`, value: `value${i}`});364    }365366    const args = [367      {properties: prps},368      {properties: prps},369      {properties: prps},370    ];371372    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);373    await expect(mintTx()).to.be.rejectedWith('Verification Error');374  });375});
after · tests/src/createMultipleItems.test.ts
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/>.1617import {IKeyringPair} from '@polkadot/types/types';18import {usingPlaygrounds, expect, Pallets, itSub} from './util/playgrounds';1920describe('Integration Test createMultipleItems(collection_id, owner, items_data):', () => {21  let alice: IKeyringPair;2223  before(async () => {24    await usingPlaygrounds(async (helper, privateKey) => {25      const donor = privateKey('//Alice');26      [alice] = await helper.arrange.createAccounts([100n], donor);27    });28  });2930  itSub('Create 0x31, 0x32, 0x33 items in active NFT collection and verify tokens data in chain', async ({helper}) => {31    const collection = await helper.nft.mintCollection(alice, {32      name: 'name',33      description: 'descr',34      tokenPrefix: 'COL',35      tokenPropertyPermissions: [36        {key: 'data', permission: {tokenOwner: true, mutable: false, collectionAdmin: false}},37      ],38    });39    const args = [40      {properties: [{key: 'data', value: '1'}]},41      {properties: [{key: 'data', value: '2'}]},42      {properties: [{key: 'data', value: '3'}]},43    ];44    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);45    for (const [i, token] of tokens.entries()) {46      const tokenData = await token.getData();47      expect(tokenData?.normalizedOwner.Substrate).to.be.deep.equal(helper.address.normalizeSubstrate(alice.address));48      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);49    }50  });5152  itSub('Create 0x01, 0x02, 0x03 items in active Fungible collection and verify tokens data in chain', async ({helper}) => {53    const collection = await helper.ft.mintCollection(alice, {54      name: 'name',55      description: 'descr',56      tokenPrefix: 'COL',57    });58    const args = [59      {value: 1n},60      {value: 2n},61      {value: 3n},62    ];63    await helper.ft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, args, {Substrate: alice.address});64    expect(await collection.getBalance({Substrate: alice.address})).to.be.equal(6n);65  });6667  itSub.ifWithPallets('Create 0x31, 0x32, 0x33 items in active ReFungible collection and verify tokens data in chain', [Pallets.ReFungible], async ({helper}) => {68    const collection = await helper.rft.mintCollection(alice, {69      name: 'name',70      description: 'descr',71      tokenPrefix: 'COL',72    });73    const args = [74      {pieces: 1n},75      {pieces: 2n},76      {pieces: 3n},77    ];78    const tokens = await helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);7980    for (const [i, token] of tokens.entries()) {81      expect(await token.getBalance({Substrate: alice.address})).to.be.equal(BigInt(i + 1));82    }83  });8485  itSub('Can mint amount of items equals to collection limits', async ({helper}) => {86    const collection = await helper.nft.mintCollection(alice, {87      name: 'name',88      description: 'descr',89      tokenPrefix: 'COL',90      limits: {91        tokenLimit: 2,92      },93    });94    const args = [{}, {}];95    await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);96  });9798  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property Admin', async ({helper}) => {99    const collection = await helper.nft.mintCollection(alice, {100      name: 'name',101      description: 'descr',102      tokenPrefix: 'COL',103      tokenPropertyPermissions: [104        {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: true}},105      ],106    });107    const args = [108      {properties: [{key: 'data', value: '1'}]},109      {properties: [{key: 'data', value: '2'}]},110      {properties: [{key: 'data', value: '3'}]},111    ];112    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);113    for (const [i, token] of tokens.entries()) {114      const tokenData = await token.getData();115      expect(tokenData?.normalizedOwner.Substrate).to.be.deep.equal(helper.address.normalizeSubstrate(alice.address));116      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);117    }118  });119120  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property AdminConst', async ({helper}) => {121    const collection = await helper.nft.mintCollection(alice, {122      name: 'name',123      description: 'descr',124      tokenPrefix: 'COL',125      tokenPropertyPermissions: [126        {key: 'data', permission: {tokenOwner: false, mutable: false, collectionAdmin: true}},127      ],128    });129    const args = [130      {properties: [{key: 'data', value: '1'}]},131      {properties: [{key: 'data', value: '2'}]},132      {properties: [{key: 'data', value: '3'}]},133    ];134    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);135    for (const [i, token] of tokens.entries()) {136      const tokenData = await token.getData();137      expect(tokenData?.normalizedOwner.Substrate).to.be.deep.equal(helper.address.normalizeSubstrate(alice.address));138      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);139    }140  });141142  itSub('Create 0x31, 0x32, 0x33 items in active NFT with property itemOwnerOrAdmin', async ({helper}) => {143    const collection = await helper.nft.mintCollection(alice, {144      name: 'name',145      description: 'descr',146      tokenPrefix: 'COL',147      tokenPropertyPermissions: [148        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},149      ],150    });151    const args = [152      {properties: [{key: 'data', value: '1'}]},153      {properties: [{key: 'data', value: '2'}]},154      {properties: [{key: 'data', value: '3'}]},155    ];156    const tokens = await helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);157    for (const [i, token] of tokens.entries()) {158      const tokenData = await token.getData();159      expect(tokenData?.normalizedOwner.Substrate).to.be.equal(helper.address.normalizeSubstrate(alice.address));160      expect(tokenData?.properties[0].value).to.be.equal(args[i].properties[0].value);161    }162  });163});164165describe('Negative Integration Test createMultipleItems(collection_id, owner, items_data):', () => {166  let alice: IKeyringPair;167  let bob: IKeyringPair;168169  before(async () => {170    await usingPlaygrounds(async (helper, privateKey) => {171      const donor = privateKey('//Alice');172      [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);173    });174  });175176  itSub('Regular user cannot create items in active NFT collection', async ({helper}) => {177    const collection = await helper.nft.mintCollection(alice, {178      name: 'name',179      description: 'descr',180      tokenPrefix: 'COL',181    });182    const args = [183      {},184      {},185    ];186    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);187    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);188  });189190  itSub('Regular user cannot create items in active Fungible collection', async ({helper}) => {191    const collection = await helper.ft.mintCollection(alice, {192      name: 'name',193      description: 'descr',194      tokenPrefix: 'COL',195    });196    const args = [197      {value: 1n},198      {value: 2n},199      {value: 3n},200    ];201    const mintTx = async () => helper.ft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, args, {Substrate: alice.address});202    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);203  });204205  itSub.ifWithPallets('Regular user cannot create items in active ReFungible collection', [Pallets.ReFungible], async ({helper}) => {206    const collection = await helper.rft.mintCollection(alice, {207      name: 'name',208      description: 'descr',209      tokenPrefix: 'COL',210    });211    const args = [212      {pieces: 1n},213      {pieces: 1n},214      {pieces: 1n},215    ];216    const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(bob, collection.collectionId, {Substrate: alice.address}, args);217    await expect(mintTx()).to.be.rejectedWith(/common\.PublicMintingNotAllowed/);218  });219220  itSub('Create token in not existing collection', async ({helper}) => {221    const collectionId = 1_000_000;222    const args = [223      {},224      {},225    ];226    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(bob, collectionId, {Substrate: alice.address}, args);227    await expect(mintTx()).to.be.rejectedWith(/common\.CollectionNotFound/);228  });229230  itSub('Create NFTs that has reached the maximum data limit', async ({helper}) => {231    const collection = await helper.nft.mintCollection(alice, {232      name: 'name',233      description: 'descr',234      tokenPrefix: 'COL',235      tokenPropertyPermissions: [236        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},237      ],238    });239    const args = [240      {properties: [{key: 'data', value: 'A'.repeat(32769)}]},241      {properties: [{key: 'data', value: 'B'.repeat(32769)}]},242      {properties: [{key: 'data', value: 'C'.repeat(32769)}]},243    ];244    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);245    await expect(mintTx()).to.be.rejectedWith('Verification Error');246  });247248  itSub.ifWithPallets('Create Refungible tokens that has reached the maximum data limit', [Pallets.ReFungible], async ({helper}) => {249    const collection = await helper.rft.mintCollection(alice, {250      name: 'name',251      description: 'descr',252      tokenPrefix: 'COL',253      tokenPropertyPermissions: [254        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},255      ],256    });257    const args = [258      {pieces: 10n, properties: [{key: 'data', value: 'A'.repeat(32769)}]},259      {pieces: 10n, properties: [{key: 'data', value: 'B'.repeat(32769)}]},260      {pieces: 10n, properties: [{key: 'data', value: 'C'.repeat(32769)}]},261    ];262    const mintTx = async () => helper.rft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);263    await expect(mintTx()).to.be.rejectedWith('Verification Error');264  });265266  itSub.ifWithPallets('Create tokens with different types', [Pallets.ReFungible], async ({helper}) => {267    const {collectionId} = await helper.nft.mintCollection(alice, {268      name: 'name',269      description: 'descr',270      tokenPrefix: 'COL',271    });272273    const types = ['NFT', 'Fungible', 'ReFungible'];274    await expect(helper.executeExtrinsic(275      alice, 276      'api.tx.unique.createMultipleItems', 277      [collectionId, {Substrate: alice.address}, types],278    )).to.be.rejectedWith(/nonfungible\.NotNonfungibleDataUsedToMintFungibleCollectionToken/);279  });280281  itSub('Create tokens with different data limits <> maximum data limit', async ({helper}) => {282    const collection = await helper.nft.mintCollection(alice, {283      name: 'name',284      description: 'descr',285      tokenPrefix: 'COL',286      tokenPropertyPermissions: [287        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},288      ],289    });290    const args = [291      {properties: [{key: 'data', value: 'A'}]},292      {properties: [{key: 'data', value: 'B'.repeat(32769)}]},293    ];294    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);295    await expect(mintTx()).to.be.rejectedWith('Verification Error');296  });297298  itSub('Fails when minting tokens exceeds collectionLimits amount', async ({helper}) => {299    const collection = await helper.nft.mintCollection(alice, {300      name: 'name',301      description: 'descr',302      tokenPrefix: 'COL',303      tokenPropertyPermissions: [304        {key: 'data', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},305      ],306      limits: {307        tokenLimit: 1,308      },309    });310    const args = [311      {},312      {},313    ];314    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);315    await expect(mintTx()).to.be.rejectedWith(/common\.CollectionTokenLimitExceeded/);316  });317318  itSub('User doesnt have editing rights', async ({helper}) => {319    const collection = await helper.nft.mintCollection(alice, {320      name: 'name',321      description: 'descr',322      tokenPrefix: 'COL',323      tokenPropertyPermissions: [324        {key: 'data', permission: {tokenOwner: false, mutable: true, collectionAdmin: false}},325      ],326    });327    const args = [328      {properties: [{key: 'data', value: 'A'}]},329    ];330    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);331    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);332  });333334  itSub('Adding property without access rights', async ({helper}) => {335    const collection = await helper.nft.mintCollection(alice, {336      name: 'name',337      description: 'descr',338      tokenPrefix: 'COL',339      properties: [340        {341          key: 'data',342          value: 'v',343        },344      ],345    });346    const args = [347      {properties: [{key: 'data', value: 'A'}]},348    ];349    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);350    await expect(mintTx()).to.be.rejectedWith(/common\.NoPermission/);351  });352353  itSub('Adding more than 64 prps', async ({helper}) => {354    const collection = await helper.nft.mintCollection(alice, {355      name: 'name',356      description: 'descr',357      tokenPrefix: 'COL',358    });359    const prps = [];360361    for (let i = 0; i < 65; i++) {362      prps.push({key: `key${i}`, value: `value${i}`});363    }364365    const args = [366      {properties: prps},367      {properties: prps},368      {properties: prps},369    ];370371    const mintTx = async () => helper.nft.mintMultipleTokensWithOneOwner(alice, collection.collectionId, {Substrate: alice.address}, args);372    await expect(mintTx()).to.be.rejectedWith('Verification Error');373  });374});
modifiedtests/src/creditFeesToTreasury.test.tsdiffbeforeafterboth
--- a/tests/src/creditFeesToTreasury.test.ts
+++ b/tests/src/creditFeesToTreasury.test.ts
@@ -16,11 +16,6 @@
 
 import './interfaces/augment-api-consts';
 import {IKeyringPair} from '@polkadot/types/types';
-import {
-  UNIQUE,
-} from './util/helpers';
-
-import {default as waitNewBlocks} from './substrate/wait-new-blocks';
 import {ApiPromise} from '@polkadot/api';
 import {usingPlaygrounds, expect, itSub} from './util/playgrounds';
 
@@ -63,7 +58,7 @@
   itSub('Total issuance does not change', async ({helper}) => {
     const api = helper.api!;
     await skipInflationBlock(api);
-    await waitNewBlocks(api, 1);
+    await helper.wait.newBlocks(1);
 
     const totalBefore = (await api.query.balances.totalIssuance()).toBigInt();
 
@@ -75,9 +70,8 @@
   });
 
   itSub('Sender balance decreased by fee+sent amount, Treasury balance increased by fee', async ({helper}) => {
-    const api = helper.api!;
-    await skipInflationBlock(api);
-    await waitNewBlocks(api, 1);
+    await skipInflationBlock(helper.api!);
+    await helper.wait.newBlocks(1);
 
     const treasuryBalanceBefore = await helper.balance.getSubstrate(TREASURY);
     const aliceBalanceBefore = await helper.balance.getSubstrate(alice.address);
@@ -96,7 +90,7 @@
 
   itSub('Treasury balance increased by failed tx fee', async ({helper}) => {
     const api = helper.api!;
-    await waitNewBlocks(api, 1);
+    await helper.wait.newBlocks(1);
 
     const treasuryBalanceBefore = await helper.balance.getSubstrate(TREASURY);
     const bobBalanceBefore = await helper.balance.getSubstrate(bob.address);
@@ -113,9 +107,8 @@
   });
 
   itSub('NFT Transactions also send fees to Treasury', async ({helper}) => {
-    const api = helper.api!;
-    await skipInflationBlock(api);
-    await waitNewBlocks(api, 1);
+    await skipInflationBlock(helper.api!);
+    await helper.wait.newBlocks(1);
 
     const treasuryBalanceBefore = await helper.balance.getSubstrate(TREASURY);
     const aliceBalanceBefore = await helper.balance.getSubstrate(alice.address);
@@ -131,9 +124,9 @@
   });
 
   itSub('Fees are sane', async ({helper}) => {
-    const api = helper.api!;
-    await skipInflationBlock(api);
-    await waitNewBlocks(api, 1);
+    const unique = helper.balance.getOneTokenNominal();
+    await skipInflationBlock(helper.api!);
+    await helper.wait.newBlocks(1);
 
     const aliceBalanceBefore = await helper.balance.getSubstrate(alice.address);
 
@@ -142,14 +135,13 @@
     const aliceBalanceAfter = await helper.balance.getSubstrate(alice.address);
     const fee = aliceBalanceBefore - aliceBalanceAfter;
 
-    expect(fee / UNIQUE < BigInt(Math.ceil(saneMaximumFee + createCollectionDeposit))).to.be.true;
-    expect(fee / UNIQUE < BigInt(Math.ceil(saneMinimumFee  + createCollectionDeposit))).to.be.true;
+    expect(fee / unique < BigInt(Math.ceil(saneMaximumFee + createCollectionDeposit))).to.be.true;
+    expect(fee / unique < BigInt(Math.ceil(saneMinimumFee  + createCollectionDeposit))).to.be.true;
   });
 
   itSub('NFT Transfer fee is close to 0.1 Unique', async ({helper}) => {
-    const api = helper.api!;
-    await skipInflationBlock(api);
-    await waitNewBlocks(api, 1);
+    await skipInflationBlock(helper.api!);
+    await helper.wait.newBlocks(1);
 
     const collection = await helper.nft.mintCollection(alice, {
       name: 'test',
@@ -163,7 +155,7 @@
     await token.transfer(alice, {Substrate: bob.address});
     const aliceBalanceAfter = await helper.balance.getSubstrate(alice.address);
 
-    const fee = Number(aliceBalanceBefore - aliceBalanceAfter) / Number(UNIQUE);
+    const fee = Number(aliceBalanceBefore - aliceBalanceAfter) / Number(helper.balance.getOneTokenNominal());
     const expectedTransferFee = 0.1;
     // fee drifts because of NextFeeMultiplier
     const tolerance = 0.001;
modifiedtests/src/destroyCollection.test.tsdiffbeforeafterboth
--- a/tests/src/destroyCollection.test.ts
+++ b/tests/src/destroyCollection.test.ts
@@ -15,10 +15,7 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {IKeyringPair} from '@polkadot/types/types';
-import {
-  Pallets,
-} from './util/helpers';
-import {itSub, expect, usingPlaygrounds} from './util/playgrounds';
+import {itSub, expect, usingPlaygrounds, Pallets} from './util/playgrounds';
 
 describe('integration test: ext. destroyCollection():', () => {
   let alice: IKeyringPair;
modifiedtests/src/nesting/properties.test.tsdiffbeforeafterboth
--- a/tests/src/nesting/properties.test.ts
+++ b/tests/src/nesting/properties.test.ts
@@ -666,7 +666,6 @@
           `on adding property #${i} by signer #${j}`,
         ).to.be.fulfilled;
       }
-
     }
 
     const properties = await nestedToken.getProperties(propertyKeys);
modifiedtests/src/refungible.test.tsdiffbeforeafterboth
--- a/tests/src/refungible.test.ts
+++ b/tests/src/refungible.test.ts
@@ -124,7 +124,7 @@
     const token = await collection.mintToken(alice, 100n);
     expect(await collection.isTokenExists(token.tokenId)).to.be.true;
     expect(await token.getBalance({Substrate: alice.address})).to.be.equal(100n);
-    expect((await token.burn(alice, 99n)).success).to.be.true;
+    expect(await token.burn(alice, 99n)).to.be.true;
     expect(await collection.isTokenExists(token.tokenId)).to.be.true;
     expect(await token.getBalance({Substrate: alice.address})).to.be.equal(1n);
   });
@@ -136,7 +136,7 @@
     expect(await collection.isTokenExists(token.tokenId)).to.be.true;
     expect(await token.getBalance({Substrate: alice.address})).to.be.equal(100n);
 
-    expect((await token.burn(alice, 100n)).success).to.be.true;
+    expect(await token.burn(alice, 100n)).to.be.true;
     expect(await collection.isTokenExists(token.tokenId)).to.be.false;
   });
 
@@ -152,17 +152,17 @@
     expect(await token.getBalance({Substrate: alice.address})).to.be.equal(40n);
     expect(await token.getBalance({Substrate: bob.address})).to.be.equal(60n);
 
-    expect((await token.burn(alice, 40n)).success).to.be.true;
+    expect(await token.burn(alice, 40n)).to.be.true;
 
     expect(await collection.isTokenExists(token.tokenId)).to.be.true;
     expect(await token.getBalance({Substrate: alice.address})).to.be.equal(0n);
 
-    expect((await token.burn(bob, 59n)).success).to.be.true;
+    expect(await token.burn(bob, 59n)).to.be.true;
 
     expect(await token.getBalance({Substrate: bob.address})).to.be.equal(1n);
     expect(await collection.isTokenExists(token.tokenId)).to.be.true;
 
-    expect((await token.burn(bob, 1n)).success).to.be.true;
+    expect(await token.burn(bob, 1n)).to.be.true;
 
     expect(await collection.isTokenExists(token.tokenId)).to.be.false;
   });
modifiedtests/src/util/playgrounds/unique.tsdiffbeforeafterboth
--- a/tests/src/util/playgrounds/unique.ts
+++ b/tests/src/util/playgrounds/unique.ts
@@ -120,7 +120,7 @@
     return keyring.addFromUri(seed);
   }
 
-  static extractCollectionIdFromCreationResult(creationResult: ITransactionResult) {
+  static extractCollectionIdFromCreationResult(creationResult: ITransactionResult): number {
     if (creationResult.status !== this.transactionStatus.SUCCESS) {
       throw Error('Unable to create collection!');
     }
@@ -139,12 +139,15 @@
     return collectionId;
   }
 
-  static extractTokensFromCreationResult(creationResult: ITransactionResult) {
+  static extractTokensFromCreationResult(creationResult: ITransactionResult): {
+    success: boolean, 
+    tokens: {collectionId: number, tokenId: number, owner: CrossAccountId, amount: bigint}[],
+  } {
     if (creationResult.status !== this.transactionStatus.SUCCESS) {
       throw Error('Unable to create tokens!');
     }
     let success = false;
-    const tokens = [] as any;
+    const tokens = [] as {collectionId: number, tokenId: number, owner: CrossAccountId, amount: bigint}[];
     creationResult.result.events.forEach(({event: {data, method, section}}) => {
       if (method === 'ExtrinsicSuccess') {
         success = true;
@@ -152,19 +155,23 @@
         tokens.push({
           collectionId: parseInt(data[0].toString(), 10),
           tokenId: parseInt(data[1].toString(), 10),
-          owner: data[2].toJSON(),
+          owner: data[2].toHuman(),
+          amount: data[3].toBigInt(),
         });
       }
     });
     return {success, tokens};
   }
 
-  static extractTokensFromBurnResult(burnResult: ITransactionResult) {
+  static extractTokensFromBurnResult(burnResult: ITransactionResult): {
+    success: boolean, 
+    tokens: {collectionId: number, tokenId: number, owner: CrossAccountId, amount: bigint}[],
+  } {
     if (burnResult.status !== this.transactionStatus.SUCCESS) {
       throw Error('Unable to burn tokens!');
     }
     let success = false;
-    const tokens = [] as any;
+    const tokens = [] as {collectionId: number, tokenId: number, owner: CrossAccountId, amount: bigint}[];
     burnResult.result.events.forEach(({event: {data, method, section}}) => {
       if (method === 'ExtrinsicSuccess') {
         success = true;
@@ -172,14 +179,15 @@
         tokens.push({
           collectionId: parseInt(data[0].toString(), 10),
           tokenId: parseInt(data[1].toString(), 10),
-          owner: data[2].toJSON(),
+          owner: data[2].toHuman(),
+          amount: data[3].toBigInt(),
         });
       }
     });
     return {success, tokens};
   }
 
-  static findCollectionInEvents(events: {event: IEvent}[], collectionId: number, expectedSection: string, expectedMethod: string) {
+  static findCollectionInEvents(events: {event: IEvent}[], collectionId: number, expectedSection: string, expectedMethod: string): boolean {
     let eventId = null;
     events.forEach(({event: {data, method, section}}) => {
       if ((section === expectedSection) && (method === expectedMethod)) {
@@ -1001,12 +1009,9 @@
    * @param tokenId ID of token
    * @param amount amount of tokens to be burned. For NFT must be set to 1n
    * @example burnToken(aliceKeyring, 10, 5);
-   * @returns ```true``` and burnt token number is extrinsic success. Otherwise ```false``` and ```null```
+   * @returns ```true``` if the extrinsic is successful, otherwise ```false```
    */
-  async burnToken(signer: TSigner, collectionId: number, tokenId: number, amount=1n): Promise<{
-    success: boolean,
-    token: number | null
-  }> {
+  async burnToken(signer: TSigner, collectionId: number, tokenId: number, amount=1n): Promise<boolean> {
     const burnResult = await this.helper.executeExtrinsic(
       signer,
       'api.tx.unique.burnItem', [collectionId, tokenId, amount],
@@ -1014,7 +1019,7 @@
     );
     const burnedTokens = this.helper.util.extractTokensFromBurnResult(burnResult);
     if (burnedTokens.tokens.length > 1) throw Error('Burned multiple tokens');
-    return {success: burnedTokens.success, token: burnedTokens.tokens.length > 0 ? burnedTokens.tokens[0] : null};
+    return burnedTokens.success;
   }
 
   /**
@@ -1140,7 +1145,9 @@
     if (tokenData === null || tokenData.owner === null) return null;
     const owner = {} as any;
     for (const key of Object.keys(tokenData.owner)) {
-      owner[key.toLocaleLowerCase()] = new CrossAccountId(tokenData.owner[key]).withNormalizedSubstrate();
+      owner[key.toLocaleLowerCase()] = key.toLocaleLowerCase() == 'substrate' 
+        ? CrossAccountId.normalizeSubstrateAddress(tokenData.owner[key]) 
+        : tokenData.owner[key];
     }
     tokenData.normalizedOwner = CrossAccountId.fromLowerCaseKeys(owner);
     return tokenData;
@@ -1690,9 +1697,9 @@
    * @param tokenId ID of token
    * @param amount number of pieces to be burnt
    * @example burnToken(aliceKeyring, 10, 5);
-   * @returns ```true``` and burnt token number, if extrinsic is successful. Otherwise ```false``` and ```null```
+   * @returns ```true``` if the extrinsic is successful, otherwise ```false```
    */
-  async burnToken(signer: IKeyringPair, collectionId: number, tokenId: number, amount=1n): Promise<{ success: boolean; token: number | null; }> {
+  async burnToken(signer: IKeyringPair, collectionId: number, tokenId: number, amount=1n): Promise<boolean> {
     return await super.burnToken(signer, collectionId, tokenId, amount);
   }
 
@@ -1898,7 +1905,7 @@
    * @returns ```true``` if extrinsic success, otherwise ```false```
    */
   async burnTokens(signer: IKeyringPair, collectionId: number, amount=1n): Promise<boolean> {
-    return (await super.burnToken(signer, collectionId, 0, amount)).success;
+    return await super.burnToken(signer, collectionId, 0, amount);
   }
 
   /**