git.delta.rocks / unique-network / refs/commits / d4443286d44f

difftreelog

tests(eth): more small tests refactored to playgrounds

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

8 files changed

modifiedtests/src/eth/createNFTCollection.test.tsdiffbeforeafterboth
--- a/tests/src/eth/createNFTCollection.test.ts
+++ b/tests/src/eth/createNFTCollection.test.ts
@@ -15,47 +15,49 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {evmToAddress} from '@polkadot/util-crypto';
-import {expect} from 'chai';
-import {getCreatedCollectionCount, getDetailedCollectionInfo} from '../util/helpers';
-import {
-  evmCollectionHelpers,
-  collectionIdToAddress,
-  createEthAccount,
-  createEthAccountWithBalance,
-  evmCollection,
-  itWeb3,
-  getCollectionAddressFromResult,
-} from './util/helpers';
+import {IKeyringPair} from '@polkadot/types/types';
+import {expect, itEth, usingEthPlaygrounds} from './util/playgrounds';
 
 describe('Create NFT collection from EVM', () => {
-  itWeb3('Create collection', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelper = evmCollectionHelpers(web3, owner);
-    const collectionName = 'CollectionEVM';
+  let donor: IKeyringPair;
+
+  before(async function() {
+    await usingEthPlaygrounds(async (_helper, privateKey) => {
+      donor = privateKey('//Alice');
+    });
+  });
+
+  itEth('Create collection', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+
+    const name = 'CollectionEVM';
     const description = 'Some description';
-    const tokenPrefix = 'token prefix';
-  
-    const collectionCountBefore = await getCreatedCollectionCount(api);
-    const result = await collectionHelper.methods
-      .createNonfungibleCollection(collectionName, description, tokenPrefix)
-      .send();
-    const collectionCountAfter = await getCreatedCollectionCount(api);
-  
-    const {collectionId, collection} = await getCollectionAddressFromResult(api, result);
+    const prefix = 'token prefix';
+
+    // todo:playgrounds this might fail when in async environment.
+    const collectionCountBefore = +(await helper.callRpc('api.rpc.unique.collectionStats')).created;
+    const {collectionId} = await helper.eth.createNonfungibleCollection(owner, name, description, prefix);
+    const collectionCountAfter = +(await helper.callRpc('api.rpc.unique.collectionStats')).created;
+
+    const collection = helper.nft.getCollectionObject(collectionId);
+    const data = (await collection.getData())!;
+    
     expect(collectionCountAfter - collectionCountBefore).to.be.eq(1);
     expect(collectionId).to.be.eq(collectionCountAfter);
-    expect(collection.name.map(v => String.fromCharCode(v.toNumber())).join('')).to.be.eq(collectionName);
-    expect(collection.description.map(v => String.fromCharCode(v.toNumber())).join('')).to.be.eq(description);
-    expect(collection.tokenPrefix.toHuman()).to.be.eq(tokenPrefix);
-    expect(collection.mode.isNft).to.be.true;
+    expect(data.name).to.be.eq(name);
+    expect(data.description).to.be.eq(description);
+    expect(data.raw.tokenPrefix).to.be.eq(prefix);
+    expect(data.raw.mode).to.be.eq('NFT');
   });
 
-  itWeb3('Check collection address exist', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-  
-    const expectedCollectionId = await getCreatedCollectionCount(api) + 1;
-    const expectedCollectionAddress = collectionIdToAddress(expectedCollectionId);
+  // todo:playgrounds this test will fail when in async environment.
+  itEth('Check collection address exist', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+
+    const expectedCollectionId = +(await helper.callRpc('api.rpc.unique.collectionStats')).created + 1;
+    const expectedCollectionAddress = helper.ethAddress.fromCollectionId(expectedCollectionId);
+    const collectionHelpers = helper.ethNativeContract.collectionHelpers(owner);
+
     expect(await collectionHelpers.methods
       .isCollectionExist(expectedCollectionAddress)
       .call()).to.be.false;
@@ -69,31 +71,30 @@
       .call()).to.be.true;
   });
   
-  itWeb3('Set sponsorship', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    let result = await collectionHelpers.methods.createNonfungibleCollection('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).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);
+  itEth('Set sponsorship', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const sponsor = await helper.eth.createAccountWithBalance(donor);
+    const ss58Format = helper.chain.getChainProperties().ss58Format;
+    const {collectionId, collectionAddress} = await helper.eth.createNonfungibleCollection(owner, 'Sponsor', 'absolutely anything', 'ROC');
+
+    const collection = helper.ethNativeContract.collection(collectionAddress, 'nft', owner);
+    await collection.methods.setCollectionSponsor(sponsor).send();
+
+    let data = (await helper.nft.getData(collectionId))!;
+    expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
+
+    await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('caller is not set as sponsor');
+
+    const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', sponsor);
     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)));
+
+    data = (await helper.nft.getData(collectionId))!;
+    expect(data.raw.sponsorship.Confirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
   });
 
-  itWeb3('Set limits', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    const result = await collectionHelpers.methods.createNonfungibleCollection('Const collection', '5', '5').send();
-    const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+  itEth('Set limits', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const {collectionId, collectionAddress} = await helper.eth.createNonfungibleCollection(owner, 'Limits', 'absolutely anything', 'FLO');
     const limits = {
       accountTokenOwnershipLimit: 1000,
       sponsoredDataSize: 1024,
@@ -106,124 +107,122 @@
       transfersEnabled: false,
     };
 
-    const collectionEvm = evmCollection(web3, owner, collectionIdAddress);
-    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();
-    await collectionEvm.methods['setCollectionLimit(string,uint32)']('tokenLimit', limits.tokenLimit).send();
-    await collectionEvm.methods['setCollectionLimit(string,uint32)']('sponsorTransferTimeout', limits.sponsorTransferTimeout).send();
-    await collectionEvm.methods['setCollectionLimit(string,uint32)']('sponsorApproveTimeout', limits.sponsorApproveTimeout).send();
-    await collectionEvm.methods['setCollectionLimit(string,bool)']('ownerCanTransfer', limits.ownerCanTransfer).send();
-    await collectionEvm.methods['setCollectionLimit(string,bool)']('ownerCanDestroy', limits.ownerCanDestroy).send();
-    await collectionEvm.methods['setCollectionLimit(string,bool)']('transfersEnabled', limits.transfersEnabled).send();
+    const collection = helper.ethNativeContract.collection(collectionAddress, 'nft', owner);
+    await collection.methods['setCollectionLimit(string,uint32)']('accountTokenOwnershipLimit', limits.accountTokenOwnershipLimit).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsoredDataSize', limits.sponsoredDataSize).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsoredDataRateLimit', limits.sponsoredDataRateLimit).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('tokenLimit', limits.tokenLimit).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsorTransferTimeout', limits.sponsorTransferTimeout).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsorApproveTimeout', limits.sponsorApproveTimeout).send();
+    await collection.methods['setCollectionLimit(string,bool)']('ownerCanTransfer', limits.ownerCanTransfer).send();
+    await collection.methods['setCollectionLimit(string,bool)']('ownerCanDestroy', limits.ownerCanDestroy).send();
+    await collection.methods['setCollectionLimit(string,bool)']('transfersEnabled', limits.transfersEnabled).send();
     
-    const collectionSub = (await getDetailedCollectionInfo(api, collectionId))!;
-    expect(collectionSub.limits.accountTokenOwnershipLimit.unwrap().toNumber()).to.be.eq(limits.accountTokenOwnershipLimit);
-    expect(collectionSub.limits.sponsoredDataSize.unwrap().toNumber()).to.be.eq(limits.sponsoredDataSize);
-    expect(collectionSub.limits.sponsoredDataRateLimit.unwrap().asBlocks.toNumber()).to.be.eq(limits.sponsoredDataRateLimit);
-    expect(collectionSub.limits.tokenLimit.unwrap().toNumber()).to.be.eq(limits.tokenLimit);
-    expect(collectionSub.limits.sponsorTransferTimeout.unwrap().toNumber()).to.be.eq(limits.sponsorTransferTimeout);
-    expect(collectionSub.limits.sponsorApproveTimeout.unwrap().toNumber()).to.be.eq(limits.sponsorApproveTimeout);
-    expect(collectionSub.limits.ownerCanTransfer.toHuman()).to.be.eq(limits.ownerCanTransfer);
-    expect(collectionSub.limits.ownerCanDestroy.toHuman()).to.be.eq(limits.ownerCanDestroy);
-    expect(collectionSub.limits.transfersEnabled.toHuman()).to.be.eq(limits.transfersEnabled);
+    const data = (await helper.nft.getData(collectionId))!;
+    expect(data.raw.limits.accountTokenOwnershipLimit).to.be.eq(limits.accountTokenOwnershipLimit);
+    expect(data.raw.limits.sponsoredDataSize).to.be.eq(limits.sponsoredDataSize);
+    expect(data.raw.limits.sponsoredDataRateLimit.blocks).to.be.eq(limits.sponsoredDataRateLimit);
+    expect(data.raw.limits.tokenLimit).to.be.eq(limits.tokenLimit);
+    expect(data.raw.limits.sponsorTransferTimeout).to.be.eq(limits.sponsorTransferTimeout);
+    expect(data.raw.limits.sponsorApproveTimeout).to.be.eq(limits.sponsorApproveTimeout);
+    expect(data.raw.limits.ownerCanTransfer).to.be.eq(limits.ownerCanTransfer);
+    expect(data.raw.limits.ownerCanDestroy).to.be.eq(limits.ownerCanDestroy);
+    expect(data.raw.limits.transfersEnabled).to.be.eq(limits.transfersEnabled);
   });
 
-  itWeb3('Collection address exist', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+  itEth('Collection address exist', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
     const collectionAddressForNonexistentCollection = '0x17C4E6453CC49AAAAEACA894E6D9683E00112233';
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    expect(await collectionHelpers.methods
-      .isCollectionExist(collectionAddressForNonexistentCollection).call())
+    expect(await helper.ethNativeContract.collectionHelpers(collectionAddressForNonexistentCollection)
+      .methods.isCollectionExist(collectionAddressForNonexistentCollection).call())
       .to.be.false;
     
-    const result = await collectionHelpers.methods.createNonfungibleCollection('Collection address exist', '7', '7').send();
-    const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
-    expect(await collectionHelpers.methods
-      .isCollectionExist(collectionIdAddress).call())
+    const {collectionAddress} = await helper.eth.createNonfungibleCollection(owner, 'Exister', 'absolutely anything', 'EVC');
+    expect(await helper.ethNativeContract.collectionHelpers(collectionAddress)
+      .methods.isCollectionExist(collectionAddress).call())
       .to.be.true;
   });
 });
 
 describe('(!negative tests!) Create NFT collection from EVM', () => {
-  itWeb3('(!negative test!) Create collection (bad lengths)', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const helper = evmCollectionHelpers(web3, owner);
+  let donor: IKeyringPair;
+
+  before(async function() {
+    await usingEthPlaygrounds(async (_helper, privateKey) => {
+      donor = privateKey('//Alice');
+    });
+  });
+
+  itEth('(!negative test!) Create collection (bad lengths)', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const collectionHelper = helper.ethNativeContract.collectionHelpers(owner);
     {
-      const MAX_NAME_LENGHT = 64;
-      const collectionName = 'A'.repeat(MAX_NAME_LENGHT + 1);
+      const MAX_NAME_LENGTH = 64;
+      const collectionName = 'A'.repeat(MAX_NAME_LENGTH + 1);
       const description = 'A';
       const tokenPrefix = 'A';
-    
-      await expect(helper.methods
+
+      await expect(collectionHelper.methods
         .createNonfungibleCollection(collectionName, description, tokenPrefix)
-        .call()).to.be.rejectedWith('name is too long. Max length is ' + MAX_NAME_LENGHT);
+        .call()).to.be.rejectedWith('name is too long. Max length is ' + MAX_NAME_LENGTH);
       
     }
-    {  
-      const MAX_DESCRIPTION_LENGHT = 256;
+    {
+      const MAX_DESCRIPTION_LENGTH = 256;
       const collectionName = 'A';
-      const description = 'A'.repeat(MAX_DESCRIPTION_LENGHT + 1);
+      const description = 'A'.repeat(MAX_DESCRIPTION_LENGTH + 1);
       const tokenPrefix = 'A';
-      await expect(helper.methods
+      await expect(collectionHelper.methods
         .createNonfungibleCollection(collectionName, description, tokenPrefix)
-        .call()).to.be.rejectedWith('description is too long. Max length is ' + MAX_DESCRIPTION_LENGHT);
+        .call()).to.be.rejectedWith('description is too long. Max length is ' + MAX_DESCRIPTION_LENGTH);
     }
-    {  
-      const MAX_TOKEN_PREFIX_LENGHT = 16;
+    {
+      const MAX_TOKEN_PREFIX_LENGTH = 16;
       const collectionName = 'A';
       const description = 'A';
-      const tokenPrefix = 'A'.repeat(MAX_TOKEN_PREFIX_LENGHT + 1);
-      await expect(helper.methods
+      const tokenPrefix = 'A'.repeat(MAX_TOKEN_PREFIX_LENGTH + 1);
+      await expect(collectionHelper.methods
         .createNonfungibleCollection(collectionName, description, tokenPrefix)
-        .call()).to.be.rejectedWith('token_prefix is too long. Max length is ' + MAX_TOKEN_PREFIX_LENGHT);
+        .call()).to.be.rejectedWith('token_prefix is too long. Max length is ' + MAX_TOKEN_PREFIX_LENGTH);
     }
   });
   
-  itWeb3('(!negative test!) Create collection (no funds)', async ({web3}) => {
-    const owner = createEthAccount(web3);
-    const helper = evmCollectionHelpers(web3, owner);
-    const collectionName = 'A';
-    const description = 'A';
-    const tokenPrefix = 'A';
-    
-    await expect(helper.methods
-      .createNonfungibleCollection(collectionName, description, tokenPrefix)
+  itEth('(!negative test!) Create collection (no funds)', async ({helper}) => {
+    const owner = helper.eth.createAccount();
+    const collectionHelper = helper.ethNativeContract.collectionHelpers(owner);
+    await expect(collectionHelper.methods
+      .createNonfungibleCollection('Peasantry', 'absolutely anything', 'CVE')
       .call()).to.be.rejectedWith('NotSufficientFounds');
   });
 
-  itWeb3('(!negative test!) Check owner', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const notOwner = createEthAccount(web3);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    const result = await collectionHelpers.methods.createNonfungibleCollection('A', 'A', 'A').send();
-    const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
-    const contractEvmFromNotOwner = evmCollection(web3, notOwner, collectionIdAddress);
+  itEth('(!negative test!) Check owner', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const malfeasant = helper.eth.createAccount();
+    const {collectionAddress} = await helper.eth.createNonfungibleCollection(owner, 'Transgressed', 'absolutely anything', 'COR');
+    const malfeasantCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', malfeasant);
     const EXPECTED_ERROR = 'NoPermission';
     {
-      const sponsor = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-      await expect(contractEvmFromNotOwner.methods
+      const sponsor = await helper.eth.createAccountWithBalance(donor);
+      await expect(malfeasantCollection.methods
         .setCollectionSponsor(sponsor)
         .call()).to.be.rejectedWith(EXPECTED_ERROR);
       
-      const sponsorCollection = evmCollection(web3, sponsor, collectionIdAddress);
+      const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', sponsor);
       await expect(sponsorCollection.methods
         .confirmCollectionSponsorship()
         .call()).to.be.rejectedWith('caller is not set as sponsor');
     }
     {
-      await expect(contractEvmFromNotOwner.methods
+      await expect(malfeasantCollection.methods
         .setCollectionLimit('account_token_ownership_limit', '1000')
         .call()).to.be.rejectedWith(EXPECTED_ERROR);
     }
   });
 
-  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.createNonfungibleCollection('Schema collection', 'A', 'A').send();
-    const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
-    const collectionEvm = evmCollection(web3, owner, collectionIdAddress);
+  itEth('(!negative test!) Set limits', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const {collectionAddress} = await helper.eth.createNonfungibleCollection(owner, 'Limits', 'absolutely anything', 'OLF');
+    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner);
     await expect(collectionEvm.methods
       .setCollectionLimit('badLimit', 'true')
       .call()).to.be.rejectedWith('unknown boolean limit "badLimit"');
modifiedtests/src/eth/createRFTCollection.test.tsdiffbeforeafterboth
--- a/tests/src/eth/createRFTCollection.test.ts
+++ b/tests/src/eth/createRFTCollection.test.ts
@@ -15,51 +15,50 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {evmToAddress} from '@polkadot/util-crypto';
-import {expect} from 'chai';
-import {getCreatedCollectionCount, getDetailedCollectionInfo, requirePallets, Pallets} from '../util/helpers';
-import {
-  evmCollectionHelpers,
-  collectionIdToAddress,
-  createEthAccount,
-  createEthAccountWithBalance,
-  evmCollection,
-  itWeb3,
-  getCollectionAddressFromResult,
-} from './util/helpers';
+import {IKeyringPair} from '@polkadot/types/types';
+import {Pallets, requirePalletsOrSkip} from '../util/playgrounds';
+import {expect, itEth, usingEthPlaygrounds} from './util/playgrounds';
 
 describe('Create RFT collection from EVM', () => {
+  let donor: IKeyringPair;
+
   before(async function() {
-    await requirePallets(this, [Pallets.ReFungible]);
+    await usingEthPlaygrounds(async (helper, privateKey) => {
+      requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
+      donor = privateKey('//Alice');
+    });
   });
 
-  itWeb3('Create collection', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelper = evmCollectionHelpers(web3, owner);
-    const collectionName = 'CollectionEVM';
+  itEth('Create collection', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    
+    const name = 'CollectionEVM';
     const description = 'Some description';
-    const tokenPrefix = 'token prefix';
+    const prefix = 'token prefix';
   
-    const collectionCountBefore = await getCreatedCollectionCount(api);
-    const result = await collectionHelper.methods
-      .createRFTCollection(collectionName, description, tokenPrefix)
-      .send();
-    const collectionCountAfter = await getCreatedCollectionCount(api);
+    // todo:playgrounds this might fail when in async environment.
+    const collectionCountBefore = +(await helper.callRpc('api.rpc.unique.collectionStats')).created;
+    const {collectionId} = await helper.eth.createRefungibleCollection(owner, name, description, prefix);
+    const collectionCountAfter = +(await helper.callRpc('api.rpc.unique.collectionStats')).created;
   
-    const {collectionId, collection} = await getCollectionAddressFromResult(api, result);
+    const data = (await helper.rft.getData(collectionId))!;
+
     expect(collectionCountAfter - collectionCountBefore).to.be.eq(1);
     expect(collectionId).to.be.eq(collectionCountAfter);
-    expect(collection.name.map(v => String.fromCharCode(v.toNumber())).join('')).to.be.eq(collectionName);
-    expect(collection.description.map(v => String.fromCharCode(v.toNumber())).join('')).to.be.eq(description);
-    expect(collection.tokenPrefix.toHuman()).to.be.eq(tokenPrefix);
-    expect(collection.mode.isReFungible).to.be.true;
+    expect(data.name).to.be.eq(name);
+    expect(data.description).to.be.eq(description);
+    expect(data.raw.tokenPrefix).to.be.eq(prefix);
+    expect(data.raw.mode).to.be.eq('ReFungible');
   });
 
-  itWeb3('Check collection address exist', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-  
-    const expectedCollectionId = await getCreatedCollectionCount(api) + 1;
-    const expectedCollectionAddress = collectionIdToAddress(expectedCollectionId);
+  // todo:playgrounds this test will fail when in async environment.
+  itEth('Check collection address exist', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+
+    const expectedCollectionId = +(await helper.callRpc('api.rpc.unique.collectionStats')).created + 1;
+    const expectedCollectionAddress = helper.ethAddress.fromCollectionId(expectedCollectionId);
+    const collectionHelpers = helper.ethNativeContract.collectionHelpers(owner);
+
     expect(await collectionHelpers.methods
       .isCollectionExist(expectedCollectionAddress)
       .call()).to.be.false;
@@ -73,31 +72,30 @@
       .call()).to.be.true;
   });
   
-  itWeb3('Set sponsorship', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    let result = await collectionHelpers.methods.createRFTCollection('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, {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);
+  itEth('Set sponsorship', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const sponsor = await helper.eth.createAccountWithBalance(donor);
+    const ss58Format = helper.chain.getChainProperties().ss58Format;
+    const {collectionId, collectionAddress} = await helper.eth.createRefungibleCollection(owner, 'Sponsor', 'absolutely anything', 'ENVY');
+
+    const collection = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);
+    await collection.methods.setCollectionSponsor(sponsor).send();
+
+    let data = (await helper.rft.getData(collectionId))!;
+    expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
+
+    await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('caller is not set as sponsor');
+
+    const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor);
     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)));
+
+    data = (await helper.rft.getData(collectionId))!;
+    expect(data.raw.sponsorship.Confirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
   });
 
-  itWeb3('Set limits', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    const result = await collectionHelpers.methods.createRFTCollection('Const collection', '5', '5').send();
-    const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);
+  itEth('Set limits', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const {collectionId, collectionAddress} = await helper.eth.createRefungibleCollection(owner, 'Limits', 'absolutely anything', 'INSI');
     const limits = {
       accountTokenOwnershipLimit: 1000,
       sponsoredDataSize: 1024,
@@ -110,128 +108,122 @@
       transfersEnabled: false,
     };
 
-    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();
-    await collectionEvm.methods['setCollectionLimit(string,uint32)']('tokenLimit', limits.tokenLimit).send();
-    await collectionEvm.methods['setCollectionLimit(string,uint32)']('sponsorTransferTimeout', limits.sponsorTransferTimeout).send();
-    await collectionEvm.methods['setCollectionLimit(string,uint32)']('sponsorApproveTimeout', limits.sponsorApproveTimeout).send();
-    await collectionEvm.methods['setCollectionLimit(string,bool)']('ownerCanTransfer', limits.ownerCanTransfer).send();
-    await collectionEvm.methods['setCollectionLimit(string,bool)']('ownerCanDestroy', limits.ownerCanDestroy).send();
-    await collectionEvm.methods['setCollectionLimit(string,bool)']('transfersEnabled', limits.transfersEnabled).send();
+    const collection = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);
+    await collection.methods['setCollectionLimit(string,uint32)']('accountTokenOwnershipLimit', limits.accountTokenOwnershipLimit).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsoredDataSize', limits.sponsoredDataSize).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsoredDataRateLimit', limits.sponsoredDataRateLimit).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('tokenLimit', limits.tokenLimit).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsorTransferTimeout', limits.sponsorTransferTimeout).send();
+    await collection.methods['setCollectionLimit(string,uint32)']('sponsorApproveTimeout', limits.sponsorApproveTimeout).send();
+    await collection.methods['setCollectionLimit(string,bool)']('ownerCanTransfer', limits.ownerCanTransfer).send();
+    await collection.methods['setCollectionLimit(string,bool)']('ownerCanDestroy', limits.ownerCanDestroy).send();
+    await collection.methods['setCollectionLimit(string,bool)']('transfersEnabled', limits.transfersEnabled).send();
     
-    const collectionSub = (await getDetailedCollectionInfo(api, collectionId))!;
-    expect(collectionSub.limits.accountTokenOwnershipLimit.unwrap().toNumber()).to.be.eq(limits.accountTokenOwnershipLimit);
-    expect(collectionSub.limits.sponsoredDataSize.unwrap().toNumber()).to.be.eq(limits.sponsoredDataSize);
-    expect(collectionSub.limits.sponsoredDataRateLimit.unwrap().asBlocks.toNumber()).to.be.eq(limits.sponsoredDataRateLimit);
-    expect(collectionSub.limits.tokenLimit.unwrap().toNumber()).to.be.eq(limits.tokenLimit);
-    expect(collectionSub.limits.sponsorTransferTimeout.unwrap().toNumber()).to.be.eq(limits.sponsorTransferTimeout);
-    expect(collectionSub.limits.sponsorApproveTimeout.unwrap().toNumber()).to.be.eq(limits.sponsorApproveTimeout);
-    expect(collectionSub.limits.ownerCanTransfer.toHuman()).to.be.eq(limits.ownerCanTransfer);
-    expect(collectionSub.limits.ownerCanDestroy.toHuman()).to.be.eq(limits.ownerCanDestroy);
-    expect(collectionSub.limits.transfersEnabled.toHuman()).to.be.eq(limits.transfersEnabled);
+    const data = (await helper.rft.getData(collectionId))!;
+    expect(data.raw.limits.accountTokenOwnershipLimit).to.be.eq(limits.accountTokenOwnershipLimit);
+    expect(data.raw.limits.sponsoredDataSize).to.be.eq(limits.sponsoredDataSize);
+    expect(data.raw.limits.sponsoredDataRateLimit.blocks).to.be.eq(limits.sponsoredDataRateLimit);
+    expect(data.raw.limits.tokenLimit).to.be.eq(limits.tokenLimit);
+    expect(data.raw.limits.sponsorTransferTimeout).to.be.eq(limits.sponsorTransferTimeout);
+    expect(data.raw.limits.sponsorApproveTimeout).to.be.eq(limits.sponsorApproveTimeout);
+    expect(data.raw.limits.ownerCanTransfer).to.be.eq(limits.ownerCanTransfer);
+    expect(data.raw.limits.ownerCanDestroy).to.be.eq(limits.ownerCanDestroy);
+    expect(data.raw.limits.transfersEnabled).to.be.eq(limits.transfersEnabled);
   });
 
-  itWeb3('Collection address exist', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+  itEth('Collection address exist', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
     const collectionAddressForNonexistentCollection = '0x17C4E6453CC49AAAAEACA894E6D9683E00112233';
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    expect(await collectionHelpers.methods
-      .isCollectionExist(collectionAddressForNonexistentCollection).call())
+    expect(await helper.ethNativeContract.collectionHelpers(collectionAddressForNonexistentCollection)
+      .methods.isCollectionExist(collectionAddressForNonexistentCollection).call())
       .to.be.false;
     
-    const result = await collectionHelpers.methods.createRFTCollection('Collection address exist', '7', '7').send();
-    const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
-    expect(await collectionHelpers.methods
-      .isCollectionExist(collectionIdAddress).call())
+    const {collectionAddress} = await helper.eth.createRefungibleCollection(owner, 'Exister', 'absolutely anything', 'WIWT');
+    expect(await helper.ethNativeContract.collectionHelpers(collectionAddress)
+      .methods.isCollectionExist(collectionAddress).call())
       .to.be.true;
   });
 });
 
 describe('(!negative tests!) Create RFT collection from EVM', () => {
+  let donor: IKeyringPair;
+
   before(async function() {
-    await requirePallets(this, [Pallets.ReFungible]);
+    await usingEthPlaygrounds(async (helper, privateKey) => {
+      requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
+      donor = privateKey('//Alice');
+    });
   });
 
-  itWeb3('(!negative test!) Create collection (bad lengths)', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const helper = evmCollectionHelpers(web3, owner);
+  itEth('(!negative test!) Create collection (bad lengths)', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const collectionHelper = helper.ethNativeContract.collectionHelpers(owner);
     {
-      const MAX_NAME_LENGHT = 64;
-      const collectionName = 'A'.repeat(MAX_NAME_LENGHT + 1);
+      const MAX_NAME_LENGTH = 64;
+      const collectionName = 'A'.repeat(MAX_NAME_LENGTH + 1);
       const description = 'A';
       const tokenPrefix = 'A';
-    
-      await expect(helper.methods
+
+      await expect(collectionHelper.methods
         .createRFTCollection(collectionName, description, tokenPrefix)
-        .call()).to.be.rejectedWith('name is too long. Max length is ' + MAX_NAME_LENGHT);
-      
+        .call()).to.be.rejectedWith('name is too long. Max length is ' + MAX_NAME_LENGTH);
     }
-    {  
-      const MAX_DESCRIPTION_LENGHT = 256;
+    {
+      const MAX_DESCRIPTION_LENGTH = 256;
       const collectionName = 'A';
-      const description = 'A'.repeat(MAX_DESCRIPTION_LENGHT + 1);
+      const description = 'A'.repeat(MAX_DESCRIPTION_LENGTH + 1);
       const tokenPrefix = 'A';
-      await expect(helper.methods
+      await expect(collectionHelper.methods
         .createRFTCollection(collectionName, description, tokenPrefix)
-        .call()).to.be.rejectedWith('description is too long. Max length is ' + MAX_DESCRIPTION_LENGHT);
+        .call()).to.be.rejectedWith('description is too long. Max length is ' + MAX_DESCRIPTION_LENGTH);
     }
-    {  
-      const MAX_TOKEN_PREFIX_LENGHT = 16;
+    {
+      const MAX_TOKEN_PREFIX_LENGTH = 16;
       const collectionName = 'A';
       const description = 'A';
-      const tokenPrefix = 'A'.repeat(MAX_TOKEN_PREFIX_LENGHT + 1);
-      await expect(helper.methods
+      const tokenPrefix = 'A'.repeat(MAX_TOKEN_PREFIX_LENGTH + 1);
+      await expect(collectionHelper.methods
         .createRFTCollection(collectionName, description, tokenPrefix)
-        .call()).to.be.rejectedWith('token_prefix is too long. Max length is ' + MAX_TOKEN_PREFIX_LENGHT);
+        .call()).to.be.rejectedWith('token_prefix is too long. Max length is ' + MAX_TOKEN_PREFIX_LENGTH);
     }
   });
   
-  itWeb3('(!negative test!) Create collection (no funds)', async ({web3}) => {
-    const owner = createEthAccount(web3);
-    const helper = evmCollectionHelpers(web3, owner);
-    const collectionName = 'A';
-    const description = 'A';
-    const tokenPrefix = 'A';
-    
-    await expect(helper.methods
-      .createRFTCollection(collectionName, description, tokenPrefix)
+  itEth('(!negative test!) Create collection (no funds)', async ({helper}) => {
+    const owner = helper.eth.createAccount();
+    const collectionHelper = helper.ethNativeContract.collectionHelpers(owner);
+    await expect(collectionHelper.methods
+      .createRFTCollection('Peasantry', 'absolutely anything', 'TWIW')
       .call()).to.be.rejectedWith('NotSufficientFounds');
   });
 
-  itWeb3('(!negative test!) Check owner', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const notOwner = createEthAccount(web3);
-    const collectionHelpers = evmCollectionHelpers(web3, owner);
-    const result = await collectionHelpers.methods.createRFTCollection('A', 'A', 'A').send();
-    const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
-    const contractEvmFromNotOwner = evmCollection(web3, notOwner, collectionIdAddress, {type: 'ReFungible'});
+  itEth('(!negative test!) Check owner', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const peasant = helper.eth.createAccount();
+    const {collectionAddress} = await helper.eth.createRefungibleCollection(owner, 'Transgressed', 'absolutely anything', 'YVNE');
+    const peasantCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', peasant);
     const EXPECTED_ERROR = 'NoPermission';
     {
-      const sponsor = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-      await expect(contractEvmFromNotOwner.methods
+      const sponsor = await helper.eth.createAccountWithBalance(donor);
+      await expect(peasantCollection.methods
         .setCollectionSponsor(sponsor)
         .call()).to.be.rejectedWith(EXPECTED_ERROR);
       
-      const sponsorCollection = evmCollection(web3, sponsor, collectionIdAddress);
+      const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor);
       await expect(sponsorCollection.methods
         .confirmCollectionSponsorship()
         .call()).to.be.rejectedWith('caller is not set as sponsor');
     }
     {
-      await expect(contractEvmFromNotOwner.methods
+      await expect(peasantCollection.methods
         .setCollectionLimit('account_token_ownership_limit', '1000')
         .call()).to.be.rejectedWith(EXPECTED_ERROR);
     }
   });
 
-  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.createRFTCollection('Schema collection', 'A', 'A').send();
-    const {collectionIdAddress} = await getCollectionAddressFromResult(api, result);
-    const collectionEvm = evmCollection(web3, owner, collectionIdAddress, {type: 'ReFungible'});
+  itEth('(!negative test!) Set limits', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+    const {collectionAddress} = await helper.eth.createRefungibleCollection(owner, 'Limits', 'absolutely anything', 'ISNI');
+    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);
     await expect(collectionEvm.methods
       .setCollectionLimit('badLimit', 'true')
       .call()).to.be.rejectedWith('unknown boolean limit "badLimit"');
modifiedtests/src/eth/crossTransfer.test.tsdiffbeforeafterboth
--- a/tests/src/eth/crossTransfer.test.ts
+++ b/tests/src/eth/crossTransfer.test.ts
@@ -14,7 +14,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
-import {createCollectionExpectSuccess,
+/*import {createCollectionExpectSuccess,
   createFungibleItemExpectSuccess,
   transferExpectSuccess,
   transferFromExpectSuccess,
@@ -23,81 +23,94 @@
 import {collectionIdToAddress,
   createEthAccountWithBalance,
   subToEth,
-  GAS_ARGS, itWeb3} from './util/helpers';
+  GAS_ARGS, itEth} from './util/helpers';
 import fungibleAbi from './fungibleAbi.json';
-import nonFungibleAbi from './nonFungibleAbi.json';
+import nonFungibleAbi from './nonFungibleAbi.json';*/
+import {itEth, usingEthPlaygrounds} from './util/playgrounds';
+import {CrossAccountId} from '../util/playgrounds/unique';
+import {IKeyringPair} from '@polkadot/types/types';
 
 describe('Token transfer between substrate address and EVM address. Fungible', () => {
-  itWeb3('The private key X create a substrate address. Alice sends a token to the corresponding EVM address, and X can send it to Bob in the substrate', async ({privateKeyWrapper}) => {
-    const collection = await createCollectionExpectSuccess({
-      name: 'token name',
-      mode: {type: 'Fungible', decimalPoints: 0},
+  let donor: IKeyringPair;
+  let alice: IKeyringPair;
+  let bob: IKeyringPair;
+  let charlie: IKeyringPair;
+
+  before(async function() {
+    await usingEthPlaygrounds(async (helper, privateKey) => {
+      donor = privateKey('//Alice');
+      [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
-    const alice = privateKeyWrapper('//Alice');
-    const bob = privateKeyWrapper('//Bob');
-    const charlie = privateKeyWrapper('//Charlie');
-    await setCollectionLimitsExpectSuccess(alice, collection, {ownerCanTransfer: true});
-    await createFungibleItemExpectSuccess(alice, collection, {Value: 200n}, {Substrate: alice.address});
-    await transferExpectSuccess(collection, 0, alice, {Ethereum: subToEth(charlie.address)} , 200, 'Fungible');
-    await transferFromExpectSuccess(collection, 0, alice, {Ethereum: subToEth(charlie.address)}, charlie, 50, 'Fungible');
-    await transferExpectSuccess(collection, 0, charlie, bob, 50, 'Fungible');
   });
+  
+  itEth('The private key X create a substrate address. Alice sends a token to the corresponding EVM address, and X can send it to Bob in the substrate', async ({helper}) => {  
+    const bobCA = CrossAccountId.fromKeyring(bob);
+    const charlieCA = CrossAccountId.fromKeyring(charlie);
 
-  itWeb3('The private key X create a EVM address. Alice sends a token to the substrate address corresponding to this EVM address, and X can send it to Bob in the EVM', async ({api, web3, privateKeyWrapper}) => {
-    const collection = await createCollectionExpectSuccess({
-      name: 'token name',
-      mode: {type: 'Fungible', decimalPoints: 0},
-    });
-    const alice = privateKeyWrapper('//Alice');
-    const bob = privateKeyWrapper('//Bob');
-    await setCollectionLimitsExpectSuccess(alice, collection, {ownerCanTransfer: true});
-    const bobProxy = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const aliceProxy = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+    const collection = await helper.ft.mintCollection(alice);
+    await collection.setLimits(alice, {ownerCanTransfer: true});
 
-    await createFungibleItemExpectSuccess(alice, collection, {Value: 200n}, alice.address);
-    await transferExpectSuccess(collection, 0, alice, {Ethereum: aliceProxy} , 200, 'Fungible');
-    const address = collectionIdToAddress(collection);
-    const contract = new web3.eth.Contract(fungibleAbi as any, address, {from: aliceProxy, ...GAS_ARGS});
+    await collection.mint(alice, 200n);
+    await collection.transfer(alice, charlieCA.toEthereum(), 200n);
+    await collection.transferFrom(alice, charlieCA.toEthereum(), charlieCA, 50n);
+    await collection.transfer(charlie, bobCA, 50n);
+  });
+
+  itEth('The private key X create a EVM address. Alice sends a token to the substrate address corresponding to this EVM address, and X can send it to Bob in the EVM', async ({helper}) => {
+    const aliceProxy = await helper.eth.createAccountWithBalance(donor);
+    const bobProxy = await helper.eth.createAccountWithBalance(donor);
 
+    const collection = await helper.ft.mintCollection(alice);
+    await collection.setLimits(alice, {ownerCanTransfer: true});
+
+    const address = helper.ethAddress.fromCollectionId(collection.collectionId);
+    const contract = helper.ethNativeContract.collection(address, 'ft', aliceProxy);
+
+    await collection.mint(alice, 200n, {Ethereum: aliceProxy});
     await contract.methods.transfer(bobProxy, 50).send({from: aliceProxy});
-    await transferFromExpectSuccess(collection, 0, alice, {Ethereum: bobProxy}, bob, 50, 'Fungible');
-    await transferExpectSuccess(collection, 0, bob, alice, 50, 'Fungible');
+    await collection.transferFrom(alice, {Ethereum: bobProxy}, CrossAccountId.fromKeyring(bob), 50n);
+    await collection.transfer(bob, CrossAccountId.fromKeyring(alice), 50n);
   });
 });
 
 describe('Token transfer between substrate address and EVM address. NFT', () => {
-  itWeb3('The private key X create a substrate address. Alice sends a token to the corresponding EVM address, and X can send it to Bob in the substrate', async ({privateKeyWrapper}) => {
-    const collection = await createCollectionExpectSuccess({
-      name: 'token name',
-      mode: {type: 'NFT'},
+  let donor: IKeyringPair;
+  let alice: IKeyringPair;
+  let bob: IKeyringPair;
+  let charlie: IKeyringPair;
+
+  before(async function() {
+    await usingEthPlaygrounds(async (helper, privateKey) => {
+      donor = privateKey('//Alice');
+      [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
-    const alice = privateKeyWrapper('//Alice');
-    const bob = privateKeyWrapper('//Bob');
-    const charlie = privateKeyWrapper('//Charlie');
-    await setCollectionLimitsExpectSuccess(alice, collection, {ownerCanTransfer: true});
-    const tokenId = await createItemExpectSuccess(alice, collection, 'NFT', {Substrate: alice.address});
-    await transferExpectSuccess(collection, tokenId, alice, {Ethereum: subToEth(charlie.address)}, 1, 'NFT');
-    await transferFromExpectSuccess(collection, tokenId, alice, {Ethereum: subToEth(charlie.address)}, charlie, 1, 'NFT');
-    await transferExpectSuccess(collection, tokenId, charlie, bob, 1, 'NFT');
   });
+  
+  itEth('The private key X create a substrate address. Alice sends a token to the corresponding EVM address, and X can send it to Bob in the substrate', async ({helper}) => {
+    const charlieEth = CrossAccountId.fromKeyring(charlie, 'Ethereum');
+    
+    const collection = await helper.nft.mintCollection(alice);
+    await collection.setLimits(alice, {ownerCanTransfer: true});
+    const token = await collection.mintToken(alice);
+    await token.transfer(alice, charlieEth);
+    await token.transferFrom(alice, charlieEth, CrossAccountId.fromKeyring(charlie));
+    await token.transfer(charlie, CrossAccountId.fromKeyring(bob));
+  });
 
-  itWeb3('The private key X create a EVM address. Alice sends a token to the substrate address corresponding to this EVM address, and X can send it to Bob in the EVM', async ({api, web3, privateKeyWrapper}) => {
-    const collection = await createCollectionExpectSuccess({
-      name: 'token name',
-      mode: {type: 'NFT'},
-    });
-    const alice = privateKeyWrapper('//Alice');
-    const bob = privateKeyWrapper('//Bob');
-    const charlie = privateKeyWrapper('//Charlie');
-    await setCollectionLimitsExpectSuccess(alice, collection, {ownerCanTransfer: true});
-    const bobProxy = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const aliceProxy = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const tokenId = await createItemExpectSuccess(alice, collection, 'NFT', {Substrate: alice.address});
-    await transferExpectSuccess(collection, tokenId, alice, {Ethereum: aliceProxy} , 1, 'NFT');
-    const address = collectionIdToAddress(collection);
-    const contract = new web3.eth.Contract(nonFungibleAbi as any, address, {from: aliceProxy, ...GAS_ARGS});
+  itEth('The private key X create a EVM address. Alice sends a token to the substrate address corresponding to this EVM address, and X can send it to Bob in the EVM', async ({helper}) => {
+    const aliceProxy = await helper.eth.createAccountWithBalance(donor);
+    const bobProxy = await helper.eth.createAccountWithBalance(donor);
+
+    const collection = await helper.nft.mintCollection(alice);
+    await collection.setLimits(alice, {ownerCanTransfer: true});
+
+    const address = helper.ethAddress.fromCollectionId(collection.collectionId);
+    const contract = helper.ethNativeContract.collection(address, 'nft', aliceProxy);
+
+    const token = await collection.mintToken(alice);
+    await token.transfer(alice, {Ethereum: aliceProxy});
     await contract.methods.transfer(bobProxy, 1).send({from: aliceProxy});
-    await transferFromExpectSuccess(collection, tokenId, alice, {Ethereum: bobProxy}, bob, 1, 'NFT');
-    await transferExpectSuccess(collection, tokenId, bob, charlie, 1, 'NFT');
+    await token.transferFrom(alice, {Ethereum: bobProxy}, {Substrate: bob.address});
+    await token.transfer(bob, {Substrate: charlie.address});
   });
 });
modifiedtests/src/eth/helpersSmoke.test.tsdiffbeforeafterboth
--- a/tests/src/eth/helpersSmoke.test.ts
+++ b/tests/src/eth/helpersSmoke.test.ts
@@ -14,21 +14,30 @@
 // 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 {expect} from 'chai';
-import {createEthAccountWithBalance, deployFlipper, itWeb3, contractHelpers} from './util/helpers';
+import {expect, itEth, usingEthPlaygrounds} from './util/playgrounds';
+import {IKeyringPair} from '@polkadot/types/types';
 
 describe('Helpers sanity check', () => {
-  itWeb3('Contract owner is recorded', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+  let donor: IKeyringPair;
 
-    const flipper = await deployFlipper(web3, owner);
+  before(async function() {
+    await usingEthPlaygrounds(async (_helper, privateKey) => {
+      donor = privateKey('//Alice');
+    });
+  });
+  
+  itEth('Contract owner is recorded', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
 
-    expect(await contractHelpers(web3, owner).methods.contractOwner(flipper.options.address).call()).to.be.equal(owner);
+    const flipper = await helper.eth.deployFlipper(owner);
+
+    expect(await helper.ethNativeContract.contractHelpers(owner).methods.contractOwner(flipper.options.address).call()).to.be.equal(owner);
   });
 
-  itWeb3('Flipper is working', async ({api, web3, privateKeyWrapper}) => {
-    const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const flipper = await deployFlipper(web3, owner);
+  itEth('Flipper is working', async ({helper}) => {
+    const owner = await helper.eth.createAccountWithBalance(donor);
+
+    const flipper = await helper.eth.deployFlipper(owner);
 
     expect(await flipper.methods.getValue().call()).to.be.false;
     await flipper.methods.flip().send({from: owner});
modifiedtests/src/eth/migration.test.tsdiffbeforeafterboth
--- a/tests/src/eth/migration.test.ts
+++ b/tests/src/eth/migration.test.ts
@@ -14,12 +14,20 @@
 // 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 {expect} from 'chai';
-import {submitTransactionAsync} from '../substrate/substrate-api';
-import {createEthAccountWithBalance, GAS_ARGS, itWeb3} from './util/helpers';
+import {expect, itEth, usingEthPlaygrounds} from './util/playgrounds';
+import {IKeyringPair} from '@polkadot/types/types';
 
 describe('EVM Migrations', () => {
-  itWeb3('Deploy contract saved state', async ({web3, api, privateKeyWrapper}) => {
+  let superuser: IKeyringPair;
+
+  before(async function() {
+    await usingEthPlaygrounds(async (_helper, privateKey) => {
+      superuser = privateKey('//Alice');
+    });
+  });
+  
+  // todo:playgrounds requires sudo, look into later
+  itEth('Deploy contract saved state', async ({helper}) => {
     /*
       contract StatefulContract {
         uint counter;
@@ -53,13 +61,16 @@
       ['0xedc95719e9a3b28dd8e80877cb5880a9be7de1a13fc8b05e7999683b6b567643', '0x0000000000000000000000000000000000000000000000000000000000000004'],
     ];
 
-    const alice = privateKeyWrapper('//Alice');
-    const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
+    const caller = await helper.eth.createAccountWithBalance(superuser);
 
-    await submitTransactionAsync(alice, api.tx.sudo.sudo(api.tx.evmMigration.begin(ADDRESS) as any));
-    await submitTransactionAsync(alice, api.tx.sudo.sudo(api.tx.evmMigration.setData(ADDRESS, DATA as any) as any));
-    await submitTransactionAsync(alice, api.tx.sudo.sudo(api.tx.evmMigration.finish(ADDRESS, CODE) as any));
+    const txBegin = helper.constructApiCall('api.tx.evmMigration.begin', [ADDRESS]);
+    const txSetData = helper.constructApiCall('api.tx.evmMigration.setData', [ADDRESS, DATA]);
+    const txFinish = helper.constructApiCall('api.tx.evmMigration.finish', [ADDRESS, CODE]);
+    await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txBegin])).to.be.fulfilled;
+    await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txSetData])).to.be.fulfilled;
+    await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txFinish])).to.be.fulfilled;
 
+    const web3 = helper.getWeb3();
     const contract = new web3.eth.Contract([
       {
         inputs: [],
@@ -87,7 +98,7 @@
         stateMutability: 'view',
         type: 'function',
       },
-    ], ADDRESS, {from: caller, ...GAS_ARGS});
+    ], ADDRESS, {from: caller, gas: helper.eth.DEFAULT_GAS});
 
     expect(await contract.methods.counterValue().call()).to.be.equal('10');
     for (let i = 1; i <= 4; i++) {
modifiedtests/src/eth/nonFungible.test.tsdiffbeforeafterboth
--- a/tests/src/eth/nonFungible.test.ts
+++ b/tests/src/eth/nonFungible.test.ts
@@ -171,70 +171,38 @@
   });
 
   //TODO: CORE-302 add eth methods
-  /* todo:playgrounds skipped test!
-  itWeb3.skip('Can perform mintBulk()', async ({helper}) => {
-    const collection = await createCollectionExpectSuccess({
-      mode: {type: 'NFT'},
-    });
-    const alice = privateKeyWrapper('//Alice');
+  itEth.skip('Can perform mintBulk()', async ({helper}) => {
+    const caller = await helper.eth.createAccountWithBalance(donor);
+    const receiver = helper.eth.createAccount();
 
-    const caller = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
-    const changeAdminTx = api.tx.unique.addCollectionAdmin(collection, {Ethereum: caller});
-    await submitTransactionAsync(alice, changeAdminTx);
-    const receiver = createEthAccount(web3);
+    const collection = await helper.nft.mintCollection(alice);
+    await collection.addAdmin(alice, {Ethereum: caller});
 
-    const address = collectionIdToAddress(collection);
-    const contract = new web3.eth.Contract(nonFungibleAbi as any, address, {from: caller, ...GAS_ARGS});
-
+    const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);
+    const contract = helper.ethNativeContract.collection(collectionAddress, 'nft', caller);
     {
+      const bulkSize = 3;
       const nextTokenId = await contract.methods.nextTokenId().call();
       expect(nextTokenId).to.be.equal('1');
       const result = await contract.methods.mintBulkWithTokenURI(
         receiver,
-        [
-          [nextTokenId, 'Test URI 0'],
-          [+nextTokenId + 1, 'Test URI 1'],
-          [+nextTokenId + 2, 'Test URI 2'],
-        ],
+        Array.from({length: bulkSize}, (_, i) => (
+          [+nextTokenId + i, `Test URI ${i}`]
+        )),
       ).send({from: caller});
-      const events = normalizeEvents(result.events);
 
-      expect(events).to.be.deep.equal([
-        {
-          address,
-          event: 'Transfer',
-          args: {
-            from: '0x0000000000000000000000000000000000000000',
-            to: receiver,
-            tokenId: nextTokenId,
-          },
-        },
-        {
-          address,
-          event: 'Transfer',
-          args: {
-            from: '0x0000000000000000000000000000000000000000',
-            to: receiver,
-            tokenId: String(+nextTokenId + 1),
-          },
-        },
-        {
-          address,
-          event: 'Transfer',
-          args: {
-            from: '0x0000000000000000000000000000000000000000',
-            to: receiver,
-            tokenId: String(+nextTokenId + 2),
-          },
-        },
-      ]);
+      const events = result.events.Transfer.sort((a: any, b: any) => +a.returnValues.tokenId - b.returnValues.tokenId);
+      for (let i = 0; i < bulkSize; i++) {
+        const event = events[i];
+        expect(event.address).to.equal(collectionAddress);
+        expect(event.returnValues.from).to.equal('0x0000000000000000000000000000000000000000');
+        expect(event.returnValues.to).to.equal(receiver);
+        expect(event.returnValues.tokenId).to.equal(`${+nextTokenId + i}`);
 
-      expect(await contract.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI 0');
-      expect(await contract.methods.tokenURI(+nextTokenId + 1).call()).to.be.equal('Test URI 1');
-      expect(await contract.methods.tokenURI(+nextTokenId + 2).call()).to.be.equal('Test URI 2');
+        expect(await contract.methods.tokenURI(+nextTokenId + i).call()).to.be.equal(`Test URI ${i}`);
+      }
     }
   });
-  */
 
   itEth('Can perform burn()', async ({helper}) => {
     const caller = await helper.eth.createAccountWithBalance(donor);
modifiedtests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth
--- a/tests/src/eth/util/playgrounds/unique.dev.ts
+++ b/tests/src/eth/util/playgrounds/unique.dev.ts
@@ -131,7 +131,7 @@
   }
 }
 
-  
+
 class EthGroup extends EthGroupBase {
   DEFAULT_GAS = 2_500_000;
 
@@ -164,14 +164,14 @@
       true,
     );
   }
-  
+
   async callEVM(signer: TEthereumAccount, contractAddress: string, abi: string) {
     return await this.helper.callRpc('api.rpc.eth.call', [{from: signer, to: contractAddress, data: abi}]);
   }
 
   async createNonfungibleCollection(signer: string, name: string, description: string, tokenPrefix: string): Promise<{collectionId: number, collectionAddress: string}> {
     const collectionHelper = this.helper.ethNativeContract.collectionHelpers(signer);
-        
+
     const result = await collectionHelper.methods.createNonfungibleCollection(name, description, tokenPrefix).send();
 
     const collectionAddress = this.helper.ethAddress.normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);
@@ -182,7 +182,7 @@
 
   async createRefungibleCollection(signer: string, name: string, description: string, tokenPrefix: string): Promise<{collectionId: number, collectionAddress: string}> {
     const collectionHelper = this.helper.ethNativeContract.collectionHelpers(signer);
-        
+
     const result = await collectionHelper.methods.createRFTCollection(name, description, tokenPrefix).send();
 
     const collectionAddress = this.helper.ethAddress.normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);
@@ -246,7 +246,7 @@
     return before - after;
   }
 }  
-  
+
 class EthAddressGroup extends EthGroupBase {
   extractCollectionId(address: string): number {
     if (!(address.length === 42 || address.length === 40)) throw new Error('address wrong format');
modifiedtests/src/util/playgrounds/unique.tsdiffbeforeafterboth
before · tests/src/util/playgrounds/unique.ts
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// SPDX-License-Identifier: Apache-2.034/* eslint-disable @typescript-eslint/no-var-requires */5/* eslint-disable function-call-argument-newline */6/* eslint-disable no-prototype-builtins */78import {ApiPromise, WsProvider, Keyring} from '@polkadot/api';9import {ApiInterfaceEvents, SignerOptions} from '@polkadot/api/types';10import {encodeAddress, decodeAddress, keccakAsHex, evmToAddress, addressToEvm} from '@polkadot/util-crypto';11import {IKeyringPair} from '@polkadot/types/types';12import {IApiListeners, IBlock, IEvent, IChainProperties, ICollectionCreationOptions, ICollectionLimits, ICollectionPermissions, ICrossAccountId, ICrossAccountIdLower, ILogger, INestingPermissions, IProperty, IStakingInfo, ISubstrateBalance, IToken, ITokenPropertyPermission, ITransactionResult, IUniqueHelperLog, TApiAllowedListeners, TEthereumAccount, TSigner, TSubstrateAccount, TUniqueNetworks} from './types';1314export class CrossAccountId implements ICrossAccountId {15  Substrate?: TSubstrateAccount;16  Ethereum?: TEthereumAccount;1718  constructor(account: ICrossAccountId) {19    if (account.Substrate) this.Substrate = account.Substrate;20    if (account.Ethereum) this.Ethereum = account.Ethereum;21  }2223  static fromKeyring(account: IKeyringPair) {24    return new CrossAccountId({Substrate: account.address});25  }2627  static fromLowerCaseKeys(address: ICrossAccountIdLower): CrossAccountId {28    return new CrossAccountId({Substrate: address.substrate, Ethereum: address.ethereum});29  }3031  static normalizeSubstrateAddress(address: TSubstrateAccount, ss58Format = 42): TSubstrateAccount {32    return encodeAddress(decodeAddress(address), ss58Format);33  }3435  static withNormalizedSubstrate(address: TSubstrateAccount, ss58Format = 42): CrossAccountId {36    return new CrossAccountId({Substrate: CrossAccountId.normalizeSubstrateAddress(address, ss58Format)});37  }38  39  withNormalizedSubstrate(ss58Format = 42): CrossAccountId {40    if (this.Substrate) return CrossAccountId.withNormalizedSubstrate(this.Substrate, ss58Format);41    return this;42  }43  44  toLowerCase(): CrossAccountId {45    if (this.Substrate) this.Substrate = this.Substrate.toLowerCase();46    if (this.Ethereum) this.Ethereum = this.Ethereum.toLowerCase();47    return this;48  }49}5051const nesting = {52  toChecksumAddress(address: string): string {53    if (typeof address === 'undefined') return '';5455    if(!/^(0x)?[0-9a-f]{40}$/i.test(address)) throw new Error(`Given address "${address}" is not a valid Ethereum address.`);5657    address = address.toLowerCase().replace(/^0x/i,'');58    const addressHash = keccakAsHex(address).replace(/^0x/i,'');59    const checksumAddress = ['0x'];6061    for (let i = 0; i < address.length; i++) {62      // If ith character is 8 to f then make it uppercase63      if (parseInt(addressHash[i], 16) > 7) {64        checksumAddress.push(address[i].toUpperCase());65      } else {66        checksumAddress.push(address[i]);67      }68    }69    return checksumAddress.join('');70  },71  tokenIdToAddress(collectionId: number, tokenId: number) {72    return this.toChecksumAddress(`0xf8238ccfff8ed887463fd5e0${collectionId.toString(16).padStart(8, '0')}${tokenId.toString(16).padStart(8, '0')}`);73  },74};7576class UniqueUtil {77  static transactionStatus = {78    NOT_READY: 'NotReady',79    FAIL: 'Fail',80    SUCCESS: 'Success',81  };8283  static chainLogType = {84    EXTRINSIC: 'extrinsic',85    RPC: 'rpc',86  };8788  static getTokenAccount(token: IToken): CrossAccountId {89    return new CrossAccountId({Ethereum: this.getTokenAddress(token)});90  }9192  static getTokenAddress(token: IToken): string {93    return nesting.tokenIdToAddress(token.collectionId, token.tokenId);94  }9596  static getDefaultLogger(): ILogger {97    return {98      log(msg: any, level = 'INFO') {99        console[level.toLocaleLowerCase() === 'error' ? 'error' : 'log'](...(Array.isArray(msg) ? msg : [msg]));100      },101      level: {102        ERROR: 'ERROR',103        WARNING: 'WARNING',104        INFO: 'INFO',105      },106    };107  }108109  static vec2str(arr: string[] | number[]) {110    return arr.map(x => String.fromCharCode(parseInt(x.toString()))).join('');111  }112113  static str2vec(string: string) {114    if (typeof string !== 'string') return string;115    return Array.from(string).map(x => x.charCodeAt(0));116  }117118  static fromSeed(seed: string, ss58Format = 42) {119    const keyring = new Keyring({type: 'sr25519', ss58Format});120    return keyring.addFromUri(seed);121  }122123  static extractCollectionIdFromCreationResult(creationResult: ITransactionResult) {124    if (creationResult.status !== this.transactionStatus.SUCCESS) {125      throw Error('Unable to create collection!');126    }127128    let collectionId = null;129    creationResult.result.events.forEach(({event: {data, method, section}}) => {130      if ((section === 'common') && (method === 'CollectionCreated')) {131        collectionId = parseInt(data[0].toString(), 10);132      }133    });134135    if (collectionId === null) {136      throw Error('No CollectionCreated event was found!');137    }138139    return collectionId;140  }141142  static extractTokensFromCreationResult(creationResult: ITransactionResult) {143    if (creationResult.status !== this.transactionStatus.SUCCESS) {144      throw Error('Unable to create tokens!');145    }146    let success = false;147    const tokens = [] as any;148    creationResult.result.events.forEach(({event: {data, method, section}}) => {149      if (method === 'ExtrinsicSuccess') {150        success = true;151      } else if ((section === 'common') && (method === 'ItemCreated')) {152        tokens.push({153          collectionId: parseInt(data[0].toString(), 10),154          tokenId: parseInt(data[1].toString(), 10),155          owner: data[2].toJSON(),156        });157      }158    });159    return {success, tokens};160  }161162  static extractTokensFromBurnResult(burnResult: ITransactionResult) {163    if (burnResult.status !== this.transactionStatus.SUCCESS) {164      throw Error('Unable to burn tokens!');165    }166    let success = false;167    const tokens = [] as any;168    burnResult.result.events.forEach(({event: {data, method, section}}) => {169      if (method === 'ExtrinsicSuccess') {170        success = true;171      } else if ((section === 'common') && (method === 'ItemDestroyed')) {172        tokens.push({173          collectionId: parseInt(data[0].toString(), 10),174          tokenId: parseInt(data[1].toString(), 10),175          owner: data[2].toJSON(),176        });177      }178    });179    return {success, tokens};180  }181182  static findCollectionInEvents(events: {event: IEvent}[], collectionId: number, expectedSection: string, expectedMethod: string) {183    let eventId = null;184    events.forEach(({event: {data, method, section}}) => {185      if ((section === expectedSection) && (method === expectedMethod)) {186        eventId = parseInt(data[0].toString(), 10);187      }188    });189190    if (eventId === null) {191      throw Error(`No ${expectedMethod} event was found!`);192    }193    return eventId === collectionId;194  }195196  static isTokenTransferSuccess(events: {event: IEvent}[], collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {197    const normalizeAddress = (address: string | ICrossAccountId) => {198      if(typeof address === 'string') return address;199      const obj = {} as any;200      Object.keys(address).forEach(k => {201        obj[k.toLocaleLowerCase()] = address[k as 'Substrate' | 'Ethereum'];202      });203      if(obj.substrate) return CrossAccountId.withNormalizedSubstrate(obj.substrate);204      if(obj.ethereum) return CrossAccountId.fromLowerCaseKeys(obj).toLowerCase();205      return address;206    };207    let transfer = {collectionId: null, tokenId: null, from: null, to: null, amount: 1} as any;208    events.forEach(({event: {data, method, section}}) => {209      if ((section === 'common') && (method === 'Transfer')) {210        const hData = (data as any).toJSON();211        transfer = {212          collectionId: hData[0],213          tokenId: hData[1],214          from: normalizeAddress(hData[2]),215          to: normalizeAddress(hData[3]),216          amount: BigInt(hData[4]),217        };218      }219    });220    let isSuccess = parseInt(collectionId.toString()) === transfer.collectionId && parseInt(tokenId.toString()) === transfer.tokenId;221    isSuccess = isSuccess && JSON.stringify(normalizeAddress(fromAddressObj)) === JSON.stringify(transfer.from);222    isSuccess = isSuccess && JSON.stringify(normalizeAddress(toAddressObj)) === JSON.stringify(transfer.to);223    isSuccess = isSuccess && amount === transfer.amount;224    return isSuccess;225  }226}227228class UniqueEventHelper {229  private static extractIndex(index: any): [number, number] | string {230    if(index.toRawType() === '[u8;2]') return [index[0], index[1]];231    return index.toJSON();232  }233234  private static extractSub(data: any, subTypes: any): {[key: string]: any} {235    let obj: any = {};236    let index = 0;237238    if (data.entries) {239      for(const [key, value] of data.entries()) {240        obj[key] = this.extractData(value, subTypes[index]);241        index++;242      }243    } else obj = data.toJSON();244245    return obj;246  }247  248  private static extractData(data: any, type: any): any {249    if (['u16', 'u32'].indexOf(type.type) > -1) return data.toNumber();250    if (['u64', 'u128', 'u256'].indexOf(type.type) > -1) return data.toBigInt();251    if(type.hasOwnProperty('sub')) return this.extractSub(data, type.sub);252    return data.toHuman();253  }254255  public static extractEvents(records: ITransactionResult): IEvent[] {256    const parsedEvents: IEvent[] = [];257258    records.result.events.forEach((record) => {259      const {event, phase} = record;260      const types = (event as any).typeDef;261262      const eventData: IEvent = {263        section: event.section.toString(),264        method: event.method.toString(),265        index: this.extractIndex(event.index),266        data: [],267        phase: phase.toJSON(),268      };269270      event.data.forEach((val: any, index: number) => {271        eventData.data.push(this.extractData(val, types[index]));272      });273274      parsedEvents.push(eventData);275    });276277    return parsedEvents;278  }279}280281class ChainHelperBase {282  transactionStatus = UniqueUtil.transactionStatus;283  chainLogType = UniqueUtil.chainLogType;284  util: typeof UniqueUtil;285  eventHelper: typeof UniqueEventHelper;286  logger: ILogger;287  api: ApiPromise | null;288  forcedNetwork: TUniqueNetworks | null;289  network: TUniqueNetworks | null;290  chainLog: IUniqueHelperLog[];291292  constructor(logger?: ILogger) {293    this.util = UniqueUtil;294    this.eventHelper = UniqueEventHelper;295    if (typeof logger == 'undefined') logger = this.util.getDefaultLogger();296    this.logger = logger;297    this.api = null;298    this.forcedNetwork = null;299    this.network = null;300    this.chainLog = [];301  }302303  clearChainLog(): void {304    this.chainLog = [];305  }306307  forceNetwork(value: TUniqueNetworks): void {308    this.forcedNetwork = value;309  }310311  async connect(wsEndpoint: string, listeners?: IApiListeners) {312    if (this.api !== null) throw Error('Already connected');313    const {api, network} = await ChainHelperBase.createConnection(wsEndpoint, listeners, this.forcedNetwork);314    this.api = api;315    this.network = network;316  }317318  async disconnect() {319    if (this.api === null) return;320    await this.api.disconnect();321    this.api = null;322    this.network = null;323  }324325  static async detectNetwork(api: ApiPromise): Promise<TUniqueNetworks> {326    const spec = (await api.query.system.lastRuntimeUpgrade()).toJSON() as any;327    if(['quartz', 'unique'].indexOf(spec.specName) > -1) return spec.specName;328    return 'opal';329  }330331  static async detectNetworkByWsEndpoint(wsEndpoint: string): Promise<TUniqueNetworks> {332    const api = new ApiPromise({provider: new WsProvider(wsEndpoint)});333    await api.isReady;334335    const network = await this.detectNetwork(api);336337    await api.disconnect();338339    return network;340  }341342  static async createConnection(wsEndpoint: string, listeners?: IApiListeners, network?: TUniqueNetworks | null): Promise<{343    api: ApiPromise;344    network: TUniqueNetworks;345  }> {346    if(typeof network === 'undefined' || network === null) network = 'opal';347    const supportedRPC = {348      opal: {349        unique: require('@unique-nft/opal-testnet-types/definitions').unique.rpc,350      },351      quartz: {352        unique: require('@unique-nft/quartz-mainnet-types/definitions').unique.rpc,353      },354      unique: {355        unique: require('@unique-nft/unique-mainnet-types/definitions').unique.rpc,356      },357    };358    if(!supportedRPC.hasOwnProperty(network)) network = await this.detectNetworkByWsEndpoint(wsEndpoint);359    const rpc = supportedRPC[network];360361    // TODO: investigate how to replace rpc in runtime362    // api._rpcCore.addUserInterfaces(rpc);363364    const api = new ApiPromise({provider: new WsProvider(wsEndpoint), rpc});365366    await api.isReadyOrError;367368    if (typeof listeners === 'undefined') listeners = {};369    for (const event of ['connected', 'disconnected', 'error', 'ready', 'decorated']) {370      if (!listeners.hasOwnProperty(event) || typeof listeners[event as TApiAllowedListeners] === 'undefined') continue;371      api.on(event as ApiInterfaceEvents, listeners[event as TApiAllowedListeners] as (...args: any[]) => any);372    }373374    return {api, network};375  }376377  getTransactionStatus(data: {events: {event: IEvent}[], status: any}) {378    const {events, status} = data;379    if (status.isReady) {380      return this.transactionStatus.NOT_READY;381    }382    if (status.isBroadcast) {383      return this.transactionStatus.NOT_READY;384    }385    if (status.isInBlock || status.isFinalized) {386      const errors = events.filter(e => e.event.method === 'ExtrinsicFailed');387      if (errors.length > 0) {388        return this.transactionStatus.FAIL;389      }390      if (events.filter(e => e.event.method === 'ExtrinsicSuccess').length > 0) {391        return this.transactionStatus.SUCCESS;392      }393    }394395    return this.transactionStatus.FAIL;396  }397398  signTransaction(sender: TSigner, transaction: any, options: Partial<SignerOptions> | null = null, label = 'transaction') {399    const sign = (callback: any) => {400      if(options !== null) return transaction.signAndSend(sender, options, callback);401      return transaction.signAndSend(sender, callback);402    };403    // eslint-disable-next-line no-async-promise-executor404    return new Promise(async (resolve, reject) => {405      try {406        const unsub = await sign((result: any) => {407          const status = this.getTransactionStatus(result);408409          if (status === this.transactionStatus.SUCCESS) {410            this.logger.log(`${label} successful`);411            unsub();412            resolve({result, status});413          } else if (status === this.transactionStatus.FAIL) {414            let moduleError = null;415416            if (result.hasOwnProperty('dispatchError')) {417              const dispatchError = result['dispatchError'];418419              if (dispatchError) {420                if (dispatchError.isModule) {421                  const modErr = dispatchError.asModule;422                  const errorMeta = dispatchError.registry.findMetaError(modErr);423424                  moduleError = `${errorMeta.section}.${errorMeta.name}`;425                } else {426                  moduleError = dispatchError.toHuman();427                }428              } else {429                this.logger.log(result, this.logger.level.ERROR);430              }431            }432433            this.logger.log(`Something went wrong with ${label}. Status: ${status}`, this.logger.level.ERROR);434            unsub();435            reject({status, moduleError, result});436          }437        });438      } catch (e) {439        this.logger.log(e, this.logger.level.ERROR);440        reject(e);441      }442    });443  }444445  constructApiCall(apiCall: string, params: any[]) {446    if(!apiCall.startsWith('api.')) throw Error(`Invalid api call: ${apiCall}`);447    let call = this.api as any;448    for(const part of apiCall.slice(4).split('.')) {449      call = call[part];450    }451    return call(...params);452  }453454  async executeExtrinsic(sender: TSigner, extrinsic: string, params: any[], expectSuccess=true, options: Partial<SignerOptions>|null = null/*, failureMessage='expected success'*/) {455    if(this.api === null) throw Error('API not initialized');456    if(!extrinsic.startsWith('api.tx.')) throw Error(`${extrinsic} is not transaction`);457458    const startTime = (new Date()).getTime();459    let result: ITransactionResult;460    let events: IEvent[] = [];461    try {462      result = await this.signTransaction(sender, this.constructApiCall(extrinsic, params), options, extrinsic) as ITransactionResult;463      events = this.eventHelper.extractEvents(result);464    }465    catch(e) {466      if(!(e as object).hasOwnProperty('status')) throw e;467      result = e as ITransactionResult;468    }469470    const endTime = (new Date()).getTime();471472    const log = {473      executedAt: endTime,474      executionTime: endTime - startTime,475      type: this.chainLogType.EXTRINSIC,476      status: result.status,477      call: extrinsic,478      signer: this.getSignerAddress(sender),479      params,480    } as IUniqueHelperLog;481482    if(result.status !== this.transactionStatus.SUCCESS && result.moduleError) log.moduleError = result.moduleError;483    if(events.length > 0) log.events = events;484485    this.chainLog.push(log);486487    if(expectSuccess && result.status !== this.transactionStatus.SUCCESS) throw Error(`${result.moduleError}`);488    return result;489  }490491  async callRpc(rpc: string, params?: any[]) {492    if(typeof params === 'undefined') params = [];493    if(this.api === null) throw Error('API not initialized');494    if(!rpc.startsWith('api.rpc.') && !rpc.startsWith('api.query.')) throw Error(`${rpc} is not RPC call`);495496    const startTime = (new Date()).getTime();497    let result;498    let error = null;499    const log = {500      type: this.chainLogType.RPC,501      call: rpc,502      params,503    } as IUniqueHelperLog;504505    try {506      result = await this.constructApiCall(rpc, params);507    }508    catch(e) {509      error = e;510    }511512    const endTime = (new Date()).getTime();513514    log.executedAt = endTime;515    log.status = (error === null ? this.transactionStatus.SUCCESS : this.transactionStatus.FAIL) as 'Fail' | 'Success';516    log.executionTime = endTime - startTime;517518    this.chainLog.push(log);519520    if(error !== null) throw error;521522    return result;523  }524525  getSignerAddress(signer: IKeyringPair | string): string {526    if(typeof signer === 'string') return signer;527    return signer.address;528  }529530  fetchAllPalletNames(): string[] {531    if(this.api === null) throw Error('API not initialized');532    return this.api.runtimeMetadata.asLatest.pallets.map(m => m.name.toString().toLowerCase());533  }534535  fetchMissingPalletNames(requiredPallets: string[]): string[] {536    const palletNames = this.fetchAllPalletNames();537    return requiredPallets.filter(p => !palletNames.includes(p));538  }539}540541542class HelperGroup {543  helper: UniqueHelper;544545  constructor(uniqueHelper: UniqueHelper) {546    this.helper = uniqueHelper;547  }548}549550551class CollectionGroup extends HelperGroup {552  /**553 * Get number of blocks when sponsored transaction is available.554 *555 * @param collectionId ID of collection556 * @param tokenId ID of token557 * @param addressObj address for which the sponsorship is checked558 * @example await getTokenNextSponsored(1, 2, {Substrate: '5DfhbVfww7ThF8q6f3...'});559 * @returns number of blocks or null if sponsorship hasn't been set560 */561  async getTokenNextSponsored(collectionId: number, tokenId: number, addressObj: ICrossAccountId): Promise<number | null> {562    return (await this.helper.callRpc('api.rpc.unique.nextSponsored', [collectionId, addressObj, tokenId])).toJSON();563  }564565  /**566   * Get the number of created collections.567   *568   * @returns number of created collections569   */570  async getTotalCount(): Promise<number> {571    return (await this.helper.callRpc('api.rpc.unique.collectionStats')).created.toNumber();572  }573574  /**575   * Get information about the collection with additional data,576   * including the number of tokens it contains, its administrators,577   * the normalized address of the collection's owner, and decoded name and description.578   *579   * @param collectionId ID of collection580   * @example await getData(2)581   * @returns collection information object582   */583  async getData(collectionId: number): Promise<{584    id: number;585    name: string;586    description: string;587    tokensCount: number;588    admins: CrossAccountId[];589    normalizedOwner: TSubstrateAccount;590    raw: any591  } | null> {592    const collection = await this.helper.callRpc('api.rpc.unique.collectionById', [collectionId]);593    const humanCollection = collection.toHuman(), collectionData = {594      id: collectionId, name: null, description: null, tokensCount: 0, admins: [],595      raw: humanCollection,596    } as any, jsonCollection = collection.toJSON();597    if (humanCollection === null) return null;598    collectionData.raw.limits = jsonCollection.limits;599    collectionData.raw.permissions = jsonCollection.permissions;600    collectionData.normalizedOwner = this.helper.address.normalizeSubstrate(collectionData.raw.owner);601    for (const key of ['name', 'description']) {602      collectionData[key] = this.helper.util.vec2str(humanCollection[key]);603    }604605    collectionData.tokensCount = (['RFT', 'NFT'].includes(humanCollection.mode))606      ? await this.helper[humanCollection.mode.toLocaleLowerCase() as 'nft' | 'rft'].getLastTokenId(collectionId)607      : 0;608    collectionData.admins = await this.getAdmins(collectionId);609610    return collectionData;611  }612613  /**614   * Get the addresses of the collection's administrators, optionally normalized.615   *616   * @param collectionId ID of collection617   * @param normalize whether to normalize the addresses to the default ss58 format618   * @example await getAdmins(1)619   * @returns array of administrators620   */621  async getAdmins(collectionId: number, normalize = false): Promise<CrossAccountId[]> {622    const admins = (await this.helper.callRpc('api.rpc.unique.adminlist', [collectionId])).toHuman();623624    return normalize625      ? admins.map((address: CrossAccountId) => address.withNormalizedSubstrate())626      : admins;627  }628629  /**630   * Get the addresses added to the collection allow-list, optionally normalized.631   * @param collectionId ID of collection632   * @param normalize whether to normalize the addresses to the default ss58 format633   * @example await getAllowList(1)634   * @returns array of allow-listed addresses635   */636  async getAllowList(collectionId: number, normalize = false): Promise<CrossAccountId[]> {637    const allowListed = (await this.helper.callRpc('api.rpc.unique.allowlist', [collectionId])).toHuman();638    return normalize639      ? allowListed.map((address: CrossAccountId) => address.withNormalizedSubstrate())640      : allowListed;641  }642643  /**644   * Get the effective limits of the collection instead of null for default values645   *646   * @param collectionId ID of collection647   * @example await getEffectiveLimits(2)648   * @returns object of collection limits649   */650  async getEffectiveLimits(collectionId: number): Promise<ICollectionLimits> {651    return (await this.helper.callRpc('api.rpc.unique.effectiveCollectionLimits', [collectionId])).toJSON();652  }653654  /**655   * Burns the collection if the signer has sufficient permissions and collection is empty.656   *657   * @param signer keyring of signer658   * @param collectionId ID of collection659   * @example await helper.collection.burn(aliceKeyring, 3);660   * @returns ```true``` if extrinsic success, otherwise ```false```661   */662  async burn(signer: TSigner, collectionId: number): Promise<boolean> {663    const result = await this.helper.executeExtrinsic(664      signer,665      'api.tx.unique.destroyCollection', [collectionId],666      true,667    );668669    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionDestroyed');670  }671672  /**673   * Sets the sponsor for the collection (Requires the Substrate address). Needs confirmation by the sponsor.674   *675   * @param signer keyring of signer676   * @param collectionId ID of collection677   * @param sponsorAddress Sponsor substrate address678   * @example setSponsor(aliceKeyring, 10, "5DyN4Y92vZCjv38fg...")679   * @returns ```true``` if extrinsic success, otherwise ```false```680   */681  async setSponsor(signer: TSigner, collectionId: number, sponsorAddress: TSubstrateAccount): Promise<boolean> {682    const result = await this.helper.executeExtrinsic(683      signer,684      'api.tx.unique.setCollectionSponsor', [collectionId, sponsorAddress],685      true,686    );687688    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionSponsorSet');689  }690691  /**692   * Confirms consent to sponsor the collection on behalf of the signer.693   *694   * @param signer keyring of signer695   * @param collectionId ID of collection696   * @example confirmSponsorship(aliceKeyring, 10)697   * @returns ```true``` if extrinsic success, otherwise ```false```698   */699  async confirmSponsorship(signer: TSigner, collectionId: number): Promise<boolean> {700    const result = await this.helper.executeExtrinsic(701      signer,702      'api.tx.unique.confirmSponsorship', [collectionId],703      true,704    );705706    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'SponsorshipConfirmed');707  }708709  /**710   * Removes the sponsor of a collection, regardless if it consented or not.711   *712   * @param signer keyring of signer713   * @param collectionId ID of collection714   * @example removeSponsor(aliceKeyring, 10)715   * @returns ```true``` if extrinsic success, otherwise ```false```716   */717  async removeSponsor(signer: TSigner, collectionId: number): Promise<boolean> {718    const result = await this.helper.executeExtrinsic(719      signer,720      'api.tx.unique.removeCollectionSponsor', [collectionId],721      true,722    );723724    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionSponsorRemoved');725  }726727  /**728   * Sets the limits of the collection. At least one limit must be specified for a correct call.729   *730   * @param signer keyring of signer731   * @param collectionId ID of collection732   * @param limits collection limits object733   * @example734   * await setLimits(735   *   aliceKeyring,736   *   10,737   *   {738   *     sponsorTransferTimeout: 0,739   *     ownerCanDestroy: false740   *   }741   * )742   * @returns ```true``` if extrinsic success, otherwise ```false```743   */744  async setLimits(signer: TSigner, collectionId: number, limits: ICollectionLimits): Promise<boolean> {745    const result = await this.helper.executeExtrinsic(746      signer,747      'api.tx.unique.setCollectionLimits', [collectionId, limits],748      true,749    );750751    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionLimitSet');752  }753754  /**755   * Changes the owner of the collection to the new Substrate address.756   *757   * @param signer keyring of signer758   * @param collectionId ID of collection759   * @param ownerAddress substrate address of new owner760   * @example changeOwner(aliceKeyring, 10, "5DyN4Y92vZCjv38fg...")761   * @returns ```true``` if extrinsic success, otherwise ```false```762   */763  async changeOwner(signer: TSigner, collectionId: number, ownerAddress: TSubstrateAccount): Promise<boolean> {764    const result = await this.helper.executeExtrinsic(765      signer,766      'api.tx.unique.changeCollectionOwner', [collectionId, ownerAddress],767      true,768    );769770    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionOwnedChanged');771  }772773  /**774   * Adds a collection administrator.775   *776   * @param signer keyring of signer777   * @param collectionId ID of collection778   * @param adminAddressObj Administrator address (substrate or ethereum)779   * @example addAdmin(aliceKeyring, 10, {Substrate: "5DyN4Y92vZCjv38fg..."})780   * @returns ```true``` if extrinsic success, otherwise ```false```781   */782  async addAdmin(signer: TSigner, collectionId: number, adminAddressObj: ICrossAccountId): Promise<boolean> {783    const result = await this.helper.executeExtrinsic(784      signer,785      'api.tx.unique.addCollectionAdmin', [collectionId, adminAddressObj],786      true,787    );788789    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionAdminAdded');790  }791792  /**793   * Removes a collection administrator.794   *795   * @param signer keyring of signer796   * @param collectionId ID of collection797   * @param adminAddressObj Administrator address (substrate or ethereum)798   * @example removeAdmin(aliceKeyring, 10, {Substrate: "5DyN4Y92vZCjv38fg..."})799   * @returns ```true``` if extrinsic success, otherwise ```false```800   */801  async removeAdmin(signer: TSigner, collectionId: number, adminAddressObj: ICrossAccountId): Promise<boolean> {802    const result = await this.helper.executeExtrinsic(803      signer,804      'api.tx.unique.removeCollectionAdmin', [collectionId, adminAddressObj],805      true,806    );807808    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionAdminRemoved');809  }810811  /**812   * Check if user is in allow list.813   * 814   * @param collectionId ID of collection815   * @param user Account to check816   * @example await getAdmins(1)817   * @returns is user in allow list818   */819  async allowed(collectionId: number, user: ICrossAccountId): Promise<boolean> {820    return (await this.helper.callRpc('api.rpc.unique.allowed', [collectionId, user])).toJSON();821  }822823  /**824   * Adds an address to allow list825   * @param signer keyring of signer826   * @param collectionId ID of collection827   * @param addressObj address to add to the allow list828   * @returns ```true``` if extrinsic success, otherwise ```false```829   */830  async addToAllowList(signer: TSigner, collectionId: number, addressObj: ICrossAccountId): Promise<boolean> {831    const result = await this.helper.executeExtrinsic(832      signer,833      'api.tx.unique.addToAllowList', [collectionId, addressObj],834      true,835    );836837    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'AllowListAddressAdded');838  }839840  /**841   * Removes an address from allow list842   *843   * @param signer keyring of signer844   * @param collectionId ID of collection845   * @param addressObj address to remove from the allow list846   * @returns ```true``` if extrinsic success, otherwise ```false```847   */848  async removeFromAllowList(signer: TSigner, collectionId: number, addressObj: ICrossAccountId): Promise<boolean> {849    const result = await this.helper.executeExtrinsic(850      signer,851      'api.tx.unique.removeFromAllowList', [collectionId, addressObj],852      true,853    );854855    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'AllowListAddressRemoved');856  }857858  /**859   * Sets onchain permissions for selected collection.860   *861   * @param signer keyring of signer862   * @param collectionId ID of collection863   * @param permissions collection permissions object864   * @example setPermissions(aliceKeyring, 10, {access:'AllowList', mintMode: true, nesting: {collectionAdmin: true, tokenOwner: true}});865   * @returns ```true``` if extrinsic success, otherwise ```false```866   */867  async setPermissions(signer: TSigner, collectionId: number, permissions: ICollectionPermissions): Promise<boolean> {868    const result = await this.helper.executeExtrinsic(869      signer,870      'api.tx.unique.setCollectionPermissions', [collectionId, permissions],871      true,872    );873874    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionPermissionSet');875  }876877  /**878   * Enables nesting for selected collection. If `restricted` set, you can nest only tokens from specified collections.879   *880   * @param signer keyring of signer881   * @param collectionId ID of collection882   * @param permissions nesting permissions object883   * @example enableNesting(aliceKeyring, 10, {collectionAdmin: true, tokenOwner: true});884   * @returns ```true``` if extrinsic success, otherwise ```false```885   */886  async enableNesting(signer: TSigner, collectionId: number, permissions: INestingPermissions): Promise<boolean> {887    return await this.setPermissions(signer, collectionId, {nesting: permissions});888  }889890  /**891   * Disables nesting for selected collection.892   *893   * @param signer keyring of signer894   * @param collectionId ID of collection895   * @example disableNesting(aliceKeyring, 10);896   * @returns ```true``` if extrinsic success, otherwise ```false```897   */898  async disableNesting(signer: TSigner, collectionId: number): Promise<boolean> {899    return await this.setPermissions(signer, collectionId, {nesting: {tokenOwner: false, collectionAdmin: false}});900  }901902  /**903   * Sets onchain properties to the collection.904   *905   * @param signer keyring of signer906   * @param collectionId ID of collection907   * @param properties array of property objects908   * @example setProperties(aliceKeyring, 10, [{key: "gender", value: "male"}]);909   * @returns ```true``` if extrinsic success, otherwise ```false```910   */911  async setProperties(signer: TSigner, collectionId: number, properties: IProperty[]): Promise<boolean> {912    const result = await this.helper.executeExtrinsic(913      signer,914      'api.tx.unique.setCollectionProperties', [collectionId, properties],915      true,916    );917918    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionPropertySet');919  }920921  /**922   * Get collection properties.923   * 924   * @param collectionId ID of collection925   * @param propertyKeys optionally filter the returned properties to only these keys926   * @example getProperties(1219, ['location', 'date', 'time', 'isParadise']);927   * @returns array of key-value pairs928   */929  async getProperties(collectionId: number, propertyKeys: string[] | null = null): Promise<IProperty[]> {930    return (await this.helper.callRpc('api.rpc.unique.collectionProperties', [collectionId, ...(propertyKeys === null ? [] : [propertyKeys])])).toHuman();931  }932933  /**934   * Deletes onchain properties from the collection.935   *936   * @param signer keyring of signer937   * @param collectionId ID of collection938   * @param propertyKeys array of property keys to delete939   * @example deleteProperties(aliceKeyring, 10, ["gender", "age"]);940   * @returns ```true``` if extrinsic success, otherwise ```false```941   */942  async deleteProperties(signer: TSigner, collectionId: number, propertyKeys: string[]): Promise<boolean> {943    const result = await this.helper.executeExtrinsic(944      signer,945      'api.tx.unique.deleteCollectionProperties', [collectionId, propertyKeys],946      true,947    );948949    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionPropertyDeleted');950  }951952  /**953   * Changes the owner of the token.954   *955   * @param signer keyring of signer956   * @param collectionId ID of collection957   * @param tokenId ID of token958   * @param addressObj address of a new owner959   * @param amount amount of tokens to be transfered. For NFT must be set to 1n960   * @example transferToken(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."})961   * @returns true if the token success, otherwise false962   */963  async transferToken(signer: TSigner, collectionId: number, tokenId: number, addressObj: ICrossAccountId, amount=1n): Promise<boolean> {964    const result = await this.helper.executeExtrinsic(965      signer,966      'api.tx.unique.transfer', [addressObj, collectionId, tokenId, amount],967      true, // `Unable to transfer token #${tokenId} from collection #${collectionId}`,968    );969970    return this.helper.util.isTokenTransferSuccess(result.result.events, collectionId, tokenId, {Substrate: typeof signer === 'string' ? signer : signer.address}, addressObj, amount);971  }972973  /**974   *975   * Change ownership of a token(s) on behalf of the owner.976   *977   * @param signer keyring of signer978   * @param collectionId ID of collection979   * @param tokenId ID of token980   * @param fromAddressObj address on behalf of which the token will be sent981   * @param toAddressObj new token owner982   * @param amount amount of tokens to be transfered. For NFT must be set to 1n983   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg"}, {Ethereum: "0x9F0583DbB85..."})984   * @returns true if the token success, otherwise false985   */986  async transferTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {987    const result = await this.helper.executeExtrinsic(988      signer,989      'api.tx.unique.transferFrom', [fromAddressObj, toAddressObj, collectionId, tokenId, amount],990      true, // `Unable to transfer token #${tokenId} from collection #${collectionId}`,991    );992    return this.helper.util.isTokenTransferSuccess(result.result.events, collectionId, tokenId, fromAddressObj, toAddressObj, amount);993  }994995  /**996   *997   * Destroys a concrete instance of NFT/RFT or burns a specified amount of fungible tokens.998   *999   * @param signer keyring of signer1000   * @param collectionId ID of collection1001   * @param tokenId ID of token1002   * @param amount amount of tokens to be burned. For NFT must be set to 1n1003   * @example burnToken(aliceKeyring, 10, 5);1004   * @returns ```true``` and burnt token number is extrinsic success. Otherwise ```false``` and ```null```1005   */1006  async burnToken(signer: TSigner, collectionId: number, tokenId: number, amount=1n): Promise<{1007    success: boolean,1008    token: number | null1009  }> {1010    const burnResult = await this.helper.executeExtrinsic(1011      signer,1012      'api.tx.unique.burnItem', [collectionId, tokenId, amount],1013      true, // `Unable to burn token for ${label}`,1014    );1015    const burnedTokens = this.helper.util.extractTokensFromBurnResult(burnResult);1016    if (burnedTokens.tokens.length > 1) throw Error('Burned multiple tokens');1017    return {success: burnedTokens.success, token: burnedTokens.tokens.length > 0 ? burnedTokens.tokens[0] : null};1018  }10191020  /**1021   * Destroys a concrete instance of NFT on behalf of the owner1022   *1023   * @param signer keyring of signer1024   * @param collectionId ID of collection1025   * @param tokenId ID of token1026   * @param fromAddressObj address on behalf of which the token will be burnt1027   * @param amount amount of tokens to be burned. For NFT must be set to 1n1028   * @example burnTokenFrom(aliceKeyring, 10, {Substrate: "5DyN4Y92vZCjv38fg..."}, 5, {Ethereum: "0x9F0583DbB85..."})1029   * @returns ```true``` if extrinsic success, otherwise ```false```1030   */1031  async burnTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1032    const burnResult = await this.helper.executeExtrinsic(1033      signer,1034      'api.tx.unique.burnFrom', [collectionId, fromAddressObj, tokenId, amount],1035      true, // `Unable to burn token from for ${label}`,1036    );1037    const burnedTokens = this.helper.util.extractTokensFromBurnResult(burnResult);1038    return burnedTokens.success && burnedTokens.tokens.length > 0;1039  }10401041  /**1042   * Set, change, or remove approved address to transfer the ownership of the NFT.1043   *1044   * @param signer keyring of signer1045   * @param collectionId ID of collection1046   * @param tokenId ID of token1047   * @param toAddressObj Substrate or Ethereum address which gets approved use of the signer's tokens1048   * @param amount amount of token to be approved. For NFT must be set to 1n1049   * @returns ```true``` if extrinsic success, otherwise ```false```1050   */1051  async approveToken(signer: IKeyringPair, collectionId: number, tokenId: number, toAddressObj: ICrossAccountId, amount=1n) {1052    const approveResult = await this.helper.executeExtrinsic(1053      signer,1054      'api.tx.unique.approve', [toAddressObj, collectionId, tokenId, amount],1055      true, // `Unable to approve token for ${label}`,1056    );10571058    return this.helper.util.findCollectionInEvents(approveResult.result.events, collectionId, 'common', 'Approved');1059  }10601061  /**1062   * Get the amount of token pieces approved to transfer or burn. Normally 0.1063   *1064   * @param collectionId ID of collection1065   * @param tokenId ID of token1066   * @param toAccountObj address which is approved to use token pieces1067   * @param fromAccountObj address which may have allowed the use of its owned tokens1068   * @example getTokenApprovedPieces(10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, {Substrate: "5ERZNF88Mm7UGfPP3mdG..."})1069   * @returns number of approved to transfer pieces1070   */1071  async getTokenApprovedPieces(collectionId: number, tokenId: number, toAccountObj: ICrossAccountId, fromAccountObj: ICrossAccountId): Promise<bigint> {1072    return (await this.helper.callRpc('api.rpc.unique.allowance', [collectionId, fromAccountObj, toAccountObj, tokenId])).toBigInt();1073  }10741075  /**1076   * Get the last created token ID in a collection1077   *1078   * @param collectionId ID of collection1079   * @example getLastTokenId(10);1080   * @returns id of the last created token1081   */1082  async getLastTokenId(collectionId: number): Promise<number> {1083    return (await this.helper.callRpc('api.rpc.unique.lastTokenId', [collectionId])).toNumber();1084  }10851086  /**1087   * Check if token exists1088   *1089   * @param collectionId ID of collection1090   * @param tokenId ID of token1091   * @example isTokenExists(10, 20);1092   * @returns true if the token exists, otherwise false1093   */1094  async isTokenExists(collectionId: number, tokenId: number): Promise<boolean> {1095    return (await this.helper.callRpc('api.rpc.unique.tokenExists', [collectionId, tokenId])).toJSON();1096  }1097}10981099class NFTnRFT extends CollectionGroup {1100  /**1101   * Get tokens owned by account1102   *1103   * @param collectionId ID of collection1104   * @param addressObj tokens owner1105   * @example getTokensByAddress(10, {Substrate: "5DyN4Y92vZCjv38fg..."})1106   * @returns array of token ids owned by account1107   */1108  async getTokensByAddress(collectionId: number, addressObj: ICrossAccountId): Promise<number[]> {1109    return (await this.helper.callRpc('api.rpc.unique.accountTokens', [collectionId, addressObj])).toJSON();1110  }11111112  /**1113   * Get token data1114   *1115   * @param collectionId ID of collection1116   * @param tokenId ID of token1117   * @param propertyKeys optionally filter the token properties to only these keys1118   * @param blockHashAt optionally query the data at some block with this hash1119   * @example getToken(10, 5);1120   * @returns human readable token data1121   */1122  async getToken(collectionId: number, tokenId: number, propertyKeys: string[] = [], blockHashAt?: string): Promise<{1123    properties: IProperty[];1124    owner: CrossAccountId;1125    normalizedOwner: CrossAccountId;1126  }| null> {1127    let tokenData;1128    if(typeof blockHashAt === 'undefined') {1129      tokenData = await this.helper.callRpc('api.rpc.unique.tokenData', [collectionId, tokenId]);1130    }1131    else {1132      if(propertyKeys.length == 0) {1133        const collection = (await this.helper.callRpc('api.rpc.unique.collectionById', [collectionId])).toHuman();1134        if(!collection) return null;1135        propertyKeys = collection.tokenPropertyPermissions.map((x: ITokenPropertyPermission) => x.key);1136      }1137      tokenData = await this.helper.callRpc('api.rpc.unique.tokenData', [collectionId, tokenId, propertyKeys, blockHashAt]);1138    }1139    tokenData = tokenData.toHuman();1140    if (tokenData === null || tokenData.owner === null) return null;1141    const owner = {} as any;1142    for (const key of Object.keys(tokenData.owner)) {1143      owner[key.toLocaleLowerCase()] = new CrossAccountId(tokenData.owner[key]).withNormalizedSubstrate();1144    }1145    tokenData.normalizedOwner = CrossAccountId.fromLowerCaseKeys(owner);1146    return tokenData;1147  }11481149  /**1150   * Set permissions to change token properties1151   *1152   * @param signer keyring of signer1153   * @param collectionId ID of collection1154   * @param permissions permissions to change a property by the collection admin or token owner1155   * @example setTokenPropertyPermissions(1156   *   aliceKeyring, 10, [{key: "gender", permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}]1157   * )1158   * @returns true if extrinsic success otherwise false1159   */1160  async setTokenPropertyPermissions(signer: TSigner, collectionId: number, permissions: ITokenPropertyPermission[]): Promise<boolean> {1161    const result = await this.helper.executeExtrinsic(1162      signer,1163      'api.tx.unique.setTokenPropertyPermissions', [collectionId, permissions],1164      true,1165    );11661167    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'PropertyPermissionSet');1168  }11691170  /**1171   * Get token property permissions.1172   * 1173   * @param collectionId ID of collection1174   * @param propertyKeys optionally filter the returned property permissions to only these keys1175   * @example getPropertyPermissions(1219, ['location', 'date', 'time', 'isParadise']);1176   * @returns array of key-permission pairs1177   */1178  async getPropertyPermissions(collectionId: number, propertyKeys: string[] | null = null): Promise<ITokenPropertyPermission[]> {1179    return (await this.helper.callRpc('api.rpc.unique.propertyPermissions', [collectionId, ...(propertyKeys === null ? [] : [propertyKeys])])).toHuman();1180  }11811182  /**1183   * Set token properties1184   *1185   * @param signer keyring of signer1186   * @param collectionId ID of collection1187   * @param tokenId ID of token1188   * @param properties key-value pairs of metadata which to add to a token. Keys must be permitted in the collection1189   * @example setTokenProperties(aliceKeyring, 10, 5, [{key: "gender", value: "female"}, {key: "age", value: "23"}])1190   * @returns ```true``` if extrinsic success, otherwise ```false```1191   */1192  async setTokenProperties(signer: TSigner, collectionId: number, tokenId: number, properties: IProperty[]): Promise<boolean> {1193    const result = await this.helper.executeExtrinsic(1194      signer,1195      'api.tx.unique.setTokenProperties', [collectionId, tokenId, properties],1196      true,1197    );11981199    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'TokenPropertySet');1200  }12011202  /**1203   * Get properties, metadata assigned to a token.1204   * 1205   * @param collectionId ID of collection1206   * @param tokenId ID of token1207   * @param propertyKeys optionally filter the returned properties to only these keys1208   * @example getTokenProperties(1219, ['location', 'date', 'time', 'isParadise']);1209   * @returns array of key-value pairs1210   */1211  async getTokenProperties(collectionId: number, tokenId: number, propertyKeys: string[] | null = null): Promise<IProperty[]> {1212    return (await this.helper.callRpc('api.rpc.unique.tokenProperties', [collectionId, tokenId, ...(propertyKeys === null ? [] : [propertyKeys])])).toHuman();1213  }12141215  /**1216   * Delete the provided properties of a token1217   * @param signer keyring of signer1218   * @param collectionId ID of collection1219   * @param tokenId ID of token1220   * @param propertyKeys property keys to be deleted1221   * @example deleteTokenProperties(aliceKeyring, 10, 5, ["gender", "age"])1222   * @returns ```true``` if extrinsic success, otherwise ```false```1223   */1224  async deleteTokenProperties(signer: TSigner, collectionId: number, tokenId: number, propertyKeys: string[]): Promise<boolean> {1225    const result = await this.helper.executeExtrinsic(1226      signer,1227      'api.tx.unique.deleteTokenProperties', [collectionId, tokenId, propertyKeys],1228      true,1229    );12301231    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'TokenPropertyDeleted');1232  }12331234  /**1235   * Mint new collection1236   *1237   * @param signer keyring of signer1238   * @param collectionOptions basic collection options and properties1239   * @param mode NFT or RFT type of a collection1240   * @example mintCollection(aliceKeyring, {name: 'New', description: "New collection", tokenPrefix: "NEW"}, "NFT")1241   * @returns object of the created collection1242   */1243  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions, mode: 'NFT' | 'RFT'): Promise<UniqueBaseCollection> {1244    collectionOptions = JSON.parse(JSON.stringify(collectionOptions)) as ICollectionCreationOptions; // Clone object1245    collectionOptions.mode = (mode === 'NFT') ? {nft: null} : {refungible: null};1246    for (const key of ['name', 'description', 'tokenPrefix']) {1247      if (typeof collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] === 'string') collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] = this.helper.util.str2vec(collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] as string);1248    }1249    const creationResult = await this.helper.executeExtrinsic(1250      signer,1251      'api.tx.unique.createCollectionEx', [collectionOptions],1252      true, // errorLabel,1253    );1254    return this.getCollectionObject(this.helper.util.extractCollectionIdFromCreationResult(creationResult));1255  }12561257  getCollectionObject(_collectionId: number): any {1258    return null;1259  }12601261  getTokenObject(_collectionId: number, _tokenId: number): any {1262    return null;1263  }1264}126512661267class NFTGroup extends NFTnRFT {1268  /**1269   * Get collection object1270   * @param collectionId ID of collection1271   * @example getCollectionObject(2);1272   * @returns instance of UniqueNFTCollection1273   */1274  getCollectionObject(collectionId: number): UniqueNFTCollection {1275    return new UniqueNFTCollection(collectionId, this.helper);1276  }12771278  /**1279   * Get token object1280   * @param collectionId ID of collection1281   * @param tokenId ID of token1282   * @example getTokenObject(10, 5);1283   * @returns instance of UniqueNFTToken1284   */1285  getTokenObject(collectionId: number, tokenId: number): UniqueNFToken {1286    return new UniqueNFToken(tokenId, this.getCollectionObject(collectionId));1287  }12881289  /**1290   * Get token's owner1291   * @param collectionId ID of collection1292   * @param tokenId ID of token1293   * @param blockHashAt optionally query the data at the block with this hash1294   * @example getTokenOwner(10, 5);1295   * @returns Address in CrossAccountId format, e.g. {Substrate: "5DnSF6RRjwteE3BrCj..."}1296   */1297  async getTokenOwner(collectionId: number, tokenId: number, blockHashAt?: string): Promise<CrossAccountId> {1298    let owner;1299    if (typeof blockHashAt === 'undefined') {1300      owner = await this.helper.callRpc('api.rpc.unique.tokenOwner', [collectionId, tokenId]);1301    } else {1302      owner = await this.helper.callRpc('api.rpc.unique.tokenOwner', [collectionId, tokenId, blockHashAt]);1303    }1304    return CrossAccountId.fromLowerCaseKeys(owner.toJSON());1305  }13061307  /**1308   * Is token approved to transfer1309   * @param collectionId ID of collection1310   * @param tokenId ID of token1311   * @param toAccountObj address to be approved1312   * @returns ```true``` if extrinsic success, otherwise ```false```1313   */1314  async isTokenApproved(collectionId: number, tokenId: number, toAccountObj: ICrossAccountId): Promise<boolean> {1315    return (await this.getTokenApprovedPieces(collectionId, tokenId, toAccountObj, await this.getTokenOwner(collectionId, tokenId))) === 1n;1316  }13171318  /**1319   * Changes the owner of the token.1320   *1321   * @param signer keyring of signer1322   * @param collectionId ID of collection1323   * @param tokenId ID of token1324   * @param addressObj address of a new owner1325   * @example transferToken(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."})1326   * @returns ```true``` if extrinsic success, otherwise ```false```1327   */1328  async transferToken(signer: TSigner, collectionId: number, tokenId: number, addressObj: ICrossAccountId): Promise<boolean> {1329    return await super.transferToken(signer, collectionId, tokenId, addressObj, 1n);1330  }13311332  /**1333   *1334   * Change ownership of a NFT on behalf of the owner.1335   *1336   * @param signer keyring of signer1337   * @param collectionId ID of collection1338   * @param tokenId ID of token1339   * @param fromAddressObj address on behalf of which the token will be sent1340   * @param toAddressObj new token owner1341   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, {Ethereum: "0x9F0583DbB85..."})1342   * @returns ```true``` if extrinsic success, otherwise ```false```1343   */1344  async transferTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId): Promise<boolean> {1345    return await super.transferTokenFrom(signer, collectionId, tokenId, fromAddressObj, toAddressObj, 1n);1346  }13471348  /**1349   * Recursively find the address that owns the token1350   * @param collectionId ID of collection1351   * @param tokenId ID of token1352   * @param blockHashAt1353   * @example getTokenTopmostOwner(10, 5);1354   * @returns address in CrossAccountId format, e.g. {Substrate: "5DyN4Y92vZCjv38fg..."}1355   */1356  async getTokenTopmostOwner(collectionId: number, tokenId: number, blockHashAt?: string): Promise<CrossAccountId | null> {1357    let owner;1358    if (typeof blockHashAt === 'undefined') {1359      owner = await this.helper.callRpc('api.rpc.unique.topmostTokenOwner', [collectionId, tokenId]);1360    } else {1361      owner = await this.helper.callRpc('api.rpc.unique.topmostTokenOwner', [collectionId, tokenId, blockHashAt]);1362    }13631364    if (owner === null) return null;13651366    return owner.toHuman();1367  }13681369  /**1370   * Get tokens nested in the provided token1371   * @param collectionId ID of collection1372   * @param tokenId ID of token1373   * @param blockHashAt optionally query the data at the block with this hash1374   * @example getTokenChildren(10, 5);1375   * @returns tokens whose depth of nesting is <= 51376   */1377  async getTokenChildren(collectionId: number, tokenId: number, blockHashAt?: string): Promise<IToken[]> {1378    let children;1379    if(typeof blockHashAt === 'undefined') {1380      children = await this.helper.callRpc('api.rpc.unique.tokenChildren', [collectionId, tokenId]);1381    } else {1382      children = await this.helper.callRpc('api.rpc.unique.tokenChildren', [collectionId, tokenId, blockHashAt]);1383    }13841385    return children.toJSON().map((x: any) => {1386      return {collectionId: x.collection, tokenId: x.token};1387    });1388  }13891390  /**1391   * Nest one token into another1392   * @param signer keyring of signer1393   * @param tokenObj token to be nested1394   * @param rootTokenObj token to be parent1395   * @example nestToken(aliceKeyring, {collectionId: 10, tokenId: 5}, {collectionId: 10, tokenId: 4});1396   * @returns ```true``` if extrinsic success, otherwise ```false```1397   */1398  async nestToken(signer: TSigner, tokenObj: IToken, rootTokenObj: IToken): Promise<boolean> {1399    const rootTokenAddress = this.helper.util.getTokenAccount(rootTokenObj);1400    const result = await this.transferToken(signer, tokenObj.collectionId, tokenObj.tokenId, rootTokenAddress);1401    if(!result) {1402      throw Error('Unable to nest token!');1403    }1404    return result;1405  }14061407  /**1408   * Remove token from nested state1409   * @param signer keyring of signer1410   * @param tokenObj token to unnest1411   * @param rootTokenObj parent of a token1412   * @param toAddressObj address of a new token owner1413   * @example unnestToken(aliceKeyring, {collectionId: 10, tokenId: 5}, {collectionId: 10, tokenId: 4}, {Substrate: "5DyN4Y92vZCjv38fg..."});1414   * @returns ```true``` if extrinsic success, otherwise ```false```1415   */1416  async unnestToken(signer: TSigner, tokenObj: IToken, rootTokenObj: IToken, toAddressObj: ICrossAccountId): Promise<boolean> {1417    const rootTokenAddress = this.helper.util.getTokenAccount(rootTokenObj);1418    const result = await this.transferTokenFrom(signer, tokenObj.collectionId, tokenObj.tokenId, rootTokenAddress, toAddressObj);1419    if(!result) {1420      throw Error('Unable to unnest token!');1421    }1422    return result;1423  }14241425  /**1426   * Mint new collection1427   * @param signer keyring of signer1428   * @param collectionOptions Collection options1429   * @example1430   * mintCollection(aliceKeyring, {1431   *   name: 'New',1432   *   description: 'New collection',1433   *   tokenPrefix: 'NEW',1434   * })1435   * @returns object of the created collection1436   */1437  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions = {}): Promise<UniqueNFTCollection> {1438    return await super.mintCollection(signer, collectionOptions, 'NFT') as UniqueNFTCollection;1439  }14401441  /**1442   * Mint new token1443   * @param signer keyring of signer1444   * @param data token data1445   * @returns created token object1446   */1447  async mintToken(signer: TSigner, data: { collectionId: number; owner: ICrossAccountId | string; properties?: IProperty[]; }): Promise<UniqueNFToken> {1448    const creationResult = await this.helper.executeExtrinsic(1449      signer,1450      'api.tx.unique.createItem', [data.collectionId, (typeof data.owner === 'string') ? {Substrate: data.owner} : data.owner, {1451        nft: {1452          properties: data.properties,1453        },1454      }],1455      true,1456    );1457    const createdTokens = this.helper.util.extractTokensFromCreationResult(creationResult);1458    if (createdTokens.tokens.length > 1) throw Error('Minted multiple tokens');1459    if (createdTokens.tokens.length < 1) throw Error('No tokens minted');1460    return this.getTokenObject(data.collectionId, createdTokens.tokens[0].tokenId);1461  }14621463  /**1464   * Mint multiple NFT tokens1465   * @param signer keyring of signer1466   * @param collectionId ID of collection1467   * @param tokens array of tokens with owner and properties1468   * @example1469   * mintMultipleTokens(aliceKeyring, 10, [{1470   *     owner: {Substrate: "5DyN4Y92vZCjv38fg..."},1471   *     properties: [{key: "gender", value: "male"},{key: "age", value: "45"}],1472   *   },{1473   *     owner: {Ethereum: "0x9F0583DbB855d..."},1474   *     properties: [{key: "gender", value: "female"},{key: "age", value: "22"}],1475   * }]);1476   * @returns ```true``` if extrinsic success, otherwise ```false```1477   */1478  async mintMultipleTokens(signer: TSigner, collectionId: number, tokens: {owner: ICrossAccountId, properties?: IProperty[]}[]): Promise<UniqueNFToken[]> {1479    const creationResult = await this.helper.executeExtrinsic(1480      signer,1481      'api.tx.unique.createMultipleItemsEx', [collectionId, {NFT: tokens}],1482      true,1483    );1484    const collection = this.getCollectionObject(collectionId);1485    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1486  }14871488  /**1489   * Mint multiple NFT tokens with one owner1490   * @param signer keyring of signer1491   * @param collectionId ID of collection1492   * @param owner tokens owner1493   * @param tokens array of tokens with owner and properties1494   * @example1495   * mintMultipleTokensWithOneOwner(aliceKeyring, 10, "5DyN4Y92vZCjv38fg...", [{1496   *   properties: [{1497   *   key: "gender",1498   *   value: "female",1499   *  },{1500   *   key: "age",1501   *   value: "33",1502   *  }],1503   * }]);1504   * @returns array of newly created tokens1505   */1506  async mintMultipleTokensWithOneOwner(signer: TSigner, collectionId: number, owner: ICrossAccountId, tokens: {properties?: IProperty[]}[]): Promise<UniqueNFToken[]> {1507    const rawTokens = [];1508    for (const token of tokens) {1509      const raw = {NFT: {properties: token.properties}};1510      rawTokens.push(raw);1511    }1512    const creationResult = await this.helper.executeExtrinsic(1513      signer,1514      'api.tx.unique.createMultipleItems', [collectionId, owner, rawTokens],1515      true,1516    );1517    const collection = this.getCollectionObject(collectionId);1518    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1519  }15201521  /**1522   * Set, change, or remove approved address to transfer the ownership of the NFT.1523   *1524   * @param signer keyring of signer1525   * @param collectionId ID of collection1526   * @param tokenId ID of token1527   * @param toAddressObj address to approve1528   * @example approveToken(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."})1529   * @returns ```true``` if extrinsic success, otherwise ```false```1530   */1531  async approveToken(signer: IKeyringPair, collectionId: number, tokenId: number, toAddressObj: ICrossAccountId) {1532    return super.approveToken(signer, collectionId, tokenId, toAddressObj, 1n);1533  }1534}153515361537class RFTGroup extends NFTnRFT {1538  /**1539   * Get collection object1540   * @param collectionId ID of collection1541   * @example getCollectionObject(2);1542   * @returns instance of UniqueRFTCollection1543   */1544  getCollectionObject(collectionId: number): UniqueRFTCollection {1545    return new UniqueRFTCollection(collectionId, this.helper);1546  }15471548  /**1549   * Get token object1550   * @param collectionId ID of collection1551   * @param tokenId ID of token1552   * @example getTokenObject(10, 5);1553   * @returns instance of UniqueNFTToken1554   */1555  getTokenObject(collectionId: number, tokenId: number): UniqueRFToken {1556    return new UniqueRFToken(tokenId, this.getCollectionObject(collectionId));1557  }15581559  /**1560   * Get top 10 token owners with the largest number of pieces1561   * @param collectionId ID of collection1562   * @param tokenId ID of token1563   * @example getTokenTop10Owners(10, 5);1564   * @returns array of top 10 owners1565   */1566  async getTokenTop10Owners(collectionId: number, tokenId: number): Promise<CrossAccountId[]> {1567    return (await this.helper.callRpc('api.rpc.unique.tokenOwners', [collectionId, tokenId])).toJSON().map(CrossAccountId.fromLowerCaseKeys);1568  }15691570  /**1571   * Get number of pieces owned by address1572   * @param collectionId ID of collection1573   * @param tokenId ID of token1574   * @param addressObj address token owner1575   * @example getTokenBalance(10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."});1576   * @returns number of pieces ownerd by address1577   */1578  async getTokenBalance(collectionId: number, tokenId: number, addressObj: ICrossAccountId): Promise<bigint> {1579    return (await this.helper.callRpc('api.rpc.unique.balance', [collectionId, addressObj, tokenId])).toBigInt();1580  }15811582  /**1583   * Transfer pieces of token to another address1584   * @param signer keyring of signer1585   * @param collectionId ID of collection1586   * @param tokenId ID of token1587   * @param addressObj address of a new owner1588   * @param amount number of pieces to be transfered1589   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, 2000n)1590   * @returns ```true``` if extrinsic success, otherwise ```false```1591   */1592  async transferToken(signer: TSigner, collectionId: number, tokenId: number, addressObj: ICrossAccountId, amount=1n): Promise<boolean> {1593    return await super.transferToken(signer, collectionId, tokenId, addressObj, amount);1594  }15951596  /**1597   * Change ownership of some pieces of RFT on behalf of the owner.1598   * @param signer keyring of signer1599   * @param collectionId ID of collection1600   * @param tokenId ID of token1601   * @param fromAddressObj address on behalf of which the token will be sent1602   * @param toAddressObj new token owner1603   * @param amount number of pieces to be transfered1604   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, {Substrate: "5DfhbVfww7ThF8q6f3i..."}, 2000n)1605   * @returns ```true``` if extrinsic success, otherwise ```false```1606   */1607  async transferTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1608    return await super.transferTokenFrom(signer, collectionId, tokenId, fromAddressObj, toAddressObj, amount);1609  }16101611  /**1612   * Mint new collection1613   * @param signer keyring of signer1614   * @param collectionOptions Collection options1615   * @example1616   * mintCollection(aliceKeyring, {1617   *   name: 'New',1618   *   description: 'New collection',1619   *   tokenPrefix: 'NEW',1620   * })1621   * @returns object of the created collection1622   */1623  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions = {}): Promise<UniqueRFTCollection> {1624    return await super.mintCollection(signer, collectionOptions, 'RFT') as UniqueRFTCollection;1625  }16261627  /**1628   * Mint new token1629   * @param signer keyring of signer1630   * @param data token data1631   * @example mintToken(aliceKeyring, {collectionId: 10, owner: {Substrate: '5GHoZe9c73RYbVzq...'}, pieces: 10000n});1632   * @returns created token object1633   */1634  async mintToken(signer: TSigner, data: { collectionId: number; owner: ICrossAccountId | string; pieces: bigint; properties?: IProperty[]; }): Promise<UniqueRFToken> {1635    const creationResult = await this.helper.executeExtrinsic(1636      signer,1637      'api.tx.unique.createItem', [data.collectionId, (typeof data.owner === 'string') ? {Substrate: data.owner} : data.owner, {1638        refungible: {1639          pieces: data.pieces,1640          properties: data.properties,1641        },1642      }],1643      true,1644    );1645    const createdTokens = this.helper.util.extractTokensFromCreationResult(creationResult);1646    if (createdTokens.tokens.length > 1) throw Error('Minted multiple tokens');1647    if (createdTokens.tokens.length < 1) throw Error('No tokens minted');1648    return this.getTokenObject(data.collectionId, createdTokens.tokens[0].tokenId);1649  }16501651  async mintMultipleTokens(signer: TSigner, collectionId: number, tokens: {owner: ICrossAccountId, pieces: bigint, properties?: IProperty[]}[]): Promise<UniqueRFToken[]> {1652    throw Error('Not implemented');1653    const creationResult = await this.helper.executeExtrinsic(1654      signer,1655      'api.tx.unique.createMultipleItemsEx', [collectionId, {RefungibleMultipleOwners: tokens}],1656      true, // `Unable to mint RFT tokens for ${label}`,1657    );1658    const collection = this.getCollectionObject(collectionId);1659    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1660  }16611662  /**1663   * Mint multiple RFT tokens with one owner1664   * @param signer keyring of signer1665   * @param collectionId ID of collection1666   * @param owner tokens owner1667   * @param tokens array of tokens with properties and pieces1668   * @example mintMultipleTokensWithOneOwner(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, [{pieces: 100000n, properties: [{key: "gender", value: "male"}]}]);1669   * @returns array of newly created RFT tokens1670   */1671  async mintMultipleTokensWithOneOwner(signer: TSigner, collectionId: number, owner: ICrossAccountId, tokens: {pieces: bigint, properties?: IProperty[]}[]): Promise<UniqueRFToken[]> {1672    const rawTokens = [];1673    for (const token of tokens) {1674      const raw = {ReFungible: {pieces: token.pieces, properties: token.properties}};1675      rawTokens.push(raw);1676    }1677    const creationResult = await this.helper.executeExtrinsic(1678      signer,1679      'api.tx.unique.createMultipleItems', [collectionId, owner, rawTokens],1680      true,1681    );1682    const collection = this.getCollectionObject(collectionId);1683    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1684  }16851686  /**1687   * Destroys a concrete instance of RFT.1688   * @param signer keyring of signer1689   * @param collectionId ID of collection1690   * @param tokenId ID of token1691   * @param amount number of pieces to be burnt1692   * @example burnToken(aliceKeyring, 10, 5);1693   * @returns ```true``` and burnt token number, if extrinsic is successful. Otherwise ```false``` and ```null```1694   */1695  async burnToken(signer: IKeyringPair, collectionId: number, tokenId: number, amount=1n): Promise<{ success: boolean; token: number | null; }> {1696    return await super.burnToken(signer, collectionId, tokenId, amount);1697  }16981699  /**1700   * Destroys a concrete instance of RFT on behalf of the owner.1701   * @param signer keyring of signer1702   * @param collectionId ID of collection1703   * @param tokenId ID of token1704   * @param fromAddressObj address on behalf of which the token will be burnt1705   * @param amount number of pieces to be burnt1706   * @example burnTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, 2n)1707   * @returns ```true``` if extrinsic success, otherwise ```false```1708   */1709  async burnTokenFrom(signer: IKeyringPair, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1710    return await super.burnTokenFrom(signer, collectionId, tokenId, fromAddressObj, amount);1711  }17121713  /**1714   * Set, change, or remove approved address to transfer the ownership of the RFT.1715   *1716   * @param signer keyring of signer1717   * @param collectionId ID of collection1718   * @param tokenId ID of token1719   * @param toAddressObj address to approve1720   * @param amount number of pieces to be approved1721   * @example approveToken(aliceKeyring, 10, 5, {Substrate: "5GHoZe9c73RYbVzq..."}, "", 10000n);1722   * @returns true if the token success, otherwise false1723   */1724  async approveToken(signer: IKeyringPair, collectionId: number, tokenId: number, toAddressObj: ICrossAccountId, amount=1n) {1725    return super.approveToken(signer, collectionId, tokenId, toAddressObj, amount);1726  }17271728  /**1729   * Get total number of pieces1730   * @param collectionId ID of collection1731   * @param tokenId ID of token1732   * @example getTokenTotalPieces(10, 5);1733   * @returns number of pieces1734   */1735  async getTokenTotalPieces(collectionId: number, tokenId: number): Promise<bigint> {1736    return (await this.helper.callRpc('api.rpc.unique.totalPieces', [collectionId, tokenId])).unwrap().toBigInt();1737  }17381739  /**1740   * Change number of token pieces. Signer must be the owner of all token pieces.1741   * @param signer keyring of signer1742   * @param collectionId ID of collection1743   * @param tokenId ID of token1744   * @param amount new number of pieces1745   * @example repartitionToken(aliceKeyring, 10, 5, 12345n);1746   * @returns true if the repartion was success, otherwise false1747   */1748  async repartitionToken(signer: TSigner, collectionId: number, tokenId: number, amount: bigint): Promise<boolean> {1749    const currentAmount = await this.getTokenTotalPieces(collectionId, tokenId);1750    const repartitionResult = await this.helper.executeExtrinsic(1751      signer,1752      'api.tx.unique.repartition', [collectionId, tokenId, amount],1753      true,1754    );1755    if(currentAmount < amount) return this.helper.util.findCollectionInEvents(repartitionResult.result.events, collectionId, 'common', 'ItemCreated');1756    return this.helper.util.findCollectionInEvents(repartitionResult.result.events, collectionId, 'common', 'ItemDestroyed');1757  }1758}175917601761class FTGroup extends CollectionGroup {1762  /**1763   * Get collection object1764   * @param collectionId ID of collection1765   * @example getCollectionObject(2);1766   * @returns instance of UniqueFTCollection1767   */1768  getCollectionObject(collectionId: number): UniqueFTCollection {1769    return new UniqueFTCollection(collectionId, this.helper);1770  }17711772  /**1773   * Mint new fungible collection1774   * @param signer keyring of signer1775   * @param collectionOptions Collection options1776   * @param decimalPoints number of token decimals1777   * @example1778   * mintCollection(aliceKeyring, {1779   *   name: 'New',1780   *   description: 'New collection',1781   *   tokenPrefix: 'NEW',1782   * }, 18)1783   * @returns newly created fungible collection1784   */1785  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions = {}, decimalPoints = 0): Promise<UniqueFTCollection> {1786    collectionOptions = JSON.parse(JSON.stringify(collectionOptions)) as ICollectionCreationOptions; // Clone object1787    if(collectionOptions.tokenPropertyPermissions) throw Error('Fungible collections has no tokenPropertyPermissions');1788    collectionOptions.mode = {fungible: decimalPoints};1789    for (const key of ['name', 'description', 'tokenPrefix']) {1790      if (typeof collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] === 'string') collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] = this.helper.util.str2vec(collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] as string);1791    }1792    const creationResult = await this.helper.executeExtrinsic(1793      signer,1794      'api.tx.unique.createCollectionEx', [collectionOptions],1795      true,1796    );1797    return this.getCollectionObject(this.helper.util.extractCollectionIdFromCreationResult(creationResult));1798  }17991800  /**1801   * Mint tokens1802   * @param signer keyring of signer1803   * @param collectionId ID of collection1804   * @param owner address owner of new tokens1805   * @param amount amount of tokens to be meanted1806   * @example mintTokens(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq"}, 1000n);1807   * @returns ```true``` if extrinsic success, otherwise ```false```1808   */1809  async mintTokens(signer: TSigner, collectionId: number, amount: bigint, owner: ICrossAccountId | string): Promise<boolean> {1810    const creationResult = await this.helper.executeExtrinsic(1811      signer,1812      'api.tx.unique.createItem', [collectionId, (typeof owner === 'string') ? {Substrate: owner} : owner, {1813        fungible: {1814          value: amount,1815        },1816      }],1817      true, // `Unable to mint fungible tokens for ${label}`,1818    );1819    return this.helper.util.findCollectionInEvents(creationResult.result.events, collectionId, 'common', 'ItemCreated');1820  }18211822  /**1823   * Mint multiple Fungible tokens with one owner1824   * @param signer keyring of signer1825   * @param collectionId ID of collection1826   * @param owner tokens owner1827   * @param tokens array of tokens with properties and pieces1828   * @returns ```true``` if extrinsic success, otherwise ```false```1829   */1830  async mintMultipleTokensWithOneOwner(signer: TSigner, collectionId: number, tokens: {value: bigint}[], owner: ICrossAccountId): Promise<boolean> {1831    const rawTokens = [];1832    for (const token of tokens) {1833      const raw = {Fungible: {Value: token.value}};1834      rawTokens.push(raw);1835    }1836    const creationResult = await this.helper.executeExtrinsic(1837      signer,1838      'api.tx.unique.createMultipleItems', [collectionId, owner, rawTokens],1839      true,1840    );1841    return this.helper.util.findCollectionInEvents(creationResult.result.events, collectionId, 'common', 'ItemCreated');1842  }18431844  /**1845   * Get the top 10 owners with the largest balance for the Fungible collection1846   * @param collectionId ID of collection1847   * @example getTop10Owners(10);1848   * @returns array of ```ICrossAccountId```1849   */1850  async getTop10Owners(collectionId: number): Promise<CrossAccountId[]> {1851    return (await this.helper.callRpc('api.rpc.unique.tokenOwners', [collectionId, 0])).toJSON().map(CrossAccountId.fromLowerCaseKeys);1852  }18531854  /**1855   * Get account balance1856   * @param collectionId ID of collection1857   * @param addressObj address of owner1858   * @example getBalance(10, {Substrate: "5GHoZe9c73RYbVzq..."})1859   * @returns amount of fungible tokens owned by address1860   */1861  async getBalance(collectionId: number, addressObj: ICrossAccountId): Promise<bigint> {1862    return (await this.helper.callRpc('api.rpc.unique.balance', [collectionId, addressObj, 0])).toBigInt();1863  }18641865  /**1866   * Transfer tokens to address1867   * @param signer keyring of signer1868   * @param collectionId ID of collection1869   * @param toAddressObj address recipient1870   * @param amount amount of tokens to be sent1871   * @example transfer(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, 1000n);1872   * @returns ```true``` if extrinsic success, otherwise ```false```1873   */1874  async transfer(signer: TSigner, collectionId: number, toAddressObj: ICrossAccountId, amount=1n) {1875    return await super.transferToken(signer, collectionId, 0, toAddressObj, amount);1876  }18771878  /**1879   * Transfer some tokens on behalf of the owner.1880   * @param signer keyring of signer1881   * @param collectionId ID of collection1882   * @param fromAddressObj address on behalf of which tokens will be sent1883   * @param toAddressObj address where token to be sent1884   * @param amount number of tokens to be sent1885   * @example transferFrom(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, {Substrate: "5DfhbVfww7ThF8q6f3ij..."}, 10000n);1886   * @returns ```true``` if extrinsic success, otherwise ```false```1887   */1888  async transferFrom(signer: TSigner, collectionId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {1889    return await super.transferTokenFrom(signer, collectionId, 0, fromAddressObj, toAddressObj, amount);1890  }18911892  /**1893   * Destroy some amount of tokens1894   * @param signer keyring of signer1895   * @param collectionId ID of collection1896   * @param amount amount of tokens to be destroyed1897   * @example burnTokens(aliceKeyring, 10, 1000n);1898   * @returns ```true``` if extrinsic success, otherwise ```false```1899   */1900  async burnTokens(signer: IKeyringPair, collectionId: number, amount=1n): Promise<boolean> {1901    return (await super.burnToken(signer, collectionId, 0, amount)).success;1902  }19031904  /**1905   * Burn some tokens on behalf of the owner.1906   * @param signer keyring of signer1907   * @param collectionId ID of collection1908   * @param fromAddressObj address on behalf of which tokens will be burnt1909   * @param amount amount of tokens to be burnt1910   * @example burnTokensFrom(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, 1000n);1911   * @returns ```true``` if extrinsic success, otherwise ```false```1912   */1913  async burnTokensFrom(signer: IKeyringPair, collectionId: number, fromAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1914    return await super.burnTokenFrom(signer, collectionId, 0, fromAddressObj, amount);1915  }19161917  /**1918   * Get total collection supply1919   * @param collectionId1920   * @returns1921   */1922  async getTotalPieces(collectionId: number): Promise<bigint> {1923    return (await this.helper.callRpc('api.rpc.unique.totalPieces', [collectionId, 0])).unwrap().toBigInt();1924  }19251926  /**1927   * Set, change, or remove approved address to transfer tokens.1928   *1929   * @param signer keyring of signer1930   * @param collectionId ID of collection1931   * @param toAddressObj address to be approved1932   * @param amount amount of tokens to be approved1933   * @example approveTokens(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, 1000n)1934   * @returns ```true``` if extrinsic success, otherwise ```false```1935   */1936  async approveTokens(signer: IKeyringPair, collectionId: number, toAddressObj: ICrossAccountId, amount=1n) {1937    return super.approveToken(signer, collectionId, 0, toAddressObj, amount);1938  }19391940  /**1941   * Get amount of fungible tokens approved to transfer1942   * @param collectionId ID of collection1943   * @param fromAddressObj owner of tokens1944   * @param toAddressObj the address approved for the transfer of tokens on behalf of the owner1945   * @returns number of tokens approved for the transfer1946   */1947  async getApprovedTokens(collectionId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {1948    return super.getTokenApprovedPieces(collectionId, 0, toAddressObj, fromAddressObj);1949  }1950}195119521953class ChainGroup extends HelperGroup {1954  /**1955   * Get system properties of a chain1956   * @example getChainProperties();1957   * @returns ss58Format, token decimals, and token symbol1958   */1959  getChainProperties(): IChainProperties {1960    const properties = (this.helper.api as any).registry.getChainProperties().toJSON();1961    return {1962      ss58Format: properties.ss58Format.toJSON(),1963      tokenDecimals: properties.tokenDecimals.toJSON(),1964      tokenSymbol: properties.tokenSymbol.toJSON(),1965    };1966  }19671968  /**1969   * Get chain header1970   * @example getLatestBlockNumber();1971   * @returns the number of the last block1972   */1973  async getLatestBlockNumber(): Promise<number> {1974    return (await this.helper.callRpc('api.rpc.chain.getHeader')).number.toNumber();1975  }19761977  /**1978   * Get block hash by block number1979   * @param blockNumber number of block1980   * @example getBlockHashByNumber(12345);1981   * @returns hash of a block1982   */1983  async getBlockHashByNumber(blockNumber: number): Promise<string | null> {1984    const blockHash = (await this.helper.callRpc('api.rpc.chain.getBlockHash', [blockNumber])).toJSON();1985    if(blockHash === '0x0000000000000000000000000000000000000000000000000000000000000000') return null;1986    return blockHash;1987  }19881989  // TODO add docs1990  async getBlock(blockHashOrNumber: string | number): Promise<IBlock | null> {1991    const blockHash = typeof blockHashOrNumber === 'string' ? blockHashOrNumber : await this.getBlockHashByNumber(blockHashOrNumber);1992    if (!blockHash) return null;1993    return (await this.helper.callRpc('api.rpc.chain.getBlock', [blockHash])).toHuman().block;1994  }19951996  /**1997   * Get account nonce1998   * @param address substrate address1999   * @example getNonce("5GrwvaEF5zXb26Fz...");2000   * @returns number, account's nonce2001   */2002  async getNonce(address: TSubstrateAccount): Promise<number> {2003    return (await (this.helper.api as any).query.system.account(address)).nonce.toNumber();2004  }2005}200620072008class BalanceGroup extends HelperGroup {2009  /**2010   * Representation of the native token in the smallest unit - one OPAL (OPL), QUARTZ (QTZ), or UNIQUE (UNQ).2011   * @example getOneTokenNominal()2012   * @returns ```BigInt``` representation of the native token in the smallest unit, e.g. ```1_000_000_000_000_000_000n``` for QTZ.2013   */2014  getOneTokenNominal(): bigint {2015    const chainProperties = this.helper.chain.getChainProperties();2016    return 10n ** BigInt((chainProperties.tokenDecimals || [18])[0]);2017  }20182019  /**2020   * Get substrate address balance2021   * @param address substrate address2022   * @example getSubstrate("5GrwvaEF5zXb26Fz...")2023   * @returns amount of tokens on address2024   */2025  async getSubstrate(address: TSubstrateAccount): Promise<bigint> {2026    return (await this.helper.callRpc('api.query.system.account', [address])).data.free.toBigInt();2027  }20282029  /**2030   * Get full substrate balance including free, miscFrozen, feeFrozen, and reserved2031   * @param address substrate address2032   * @returns2033   */2034  async getSubstrateFull(address: TSubstrateAccount): Promise<ISubstrateBalance> {2035    const accountInfo = (await this.helper.callRpc('api.query.system.account', [address])).data;2036    return {free: accountInfo.free.toBigInt(), miscFrozen: accountInfo.miscFrozen.toBigInt(), feeFrozen: accountInfo.feeFrozen.toBigInt(), reserved: accountInfo.reserved.toBigInt()};2037  }20382039  /**2040   * Get ethereum address balance2041   * @param address ethereum address2042   * @example getEthereum("0x9F0583DbB855d...")2043   * @returns amount of tokens on address2044   */2045  async getEthereum(address: TEthereumAccount): Promise<bigint> {2046    return (await this.helper.callRpc('api.rpc.eth.getBalance', [address])).toBigInt();2047  }20482049  /**2050   * Transfer tokens to substrate address2051   * @param signer keyring of signer2052   * @param address substrate address of a recipient2053   * @param amount amount of tokens to be transfered2054   * @example transferToSubstrate(aliceKeyring, "5GrwvaEF5zXb26Fz...", 100_000_000_000n);2055   * @returns ```true``` if extrinsic success, otherwise ```false```2056   */2057  async transferToSubstrate(signer: TSigner, address: TSubstrateAccount, amount: bigint | string): Promise<boolean> {2058    const result = await this.helper.executeExtrinsic(signer, 'api.tx.balances.transfer', [address, amount], true/*, `Unable to transfer balance from ${this.helper.getSignerAddress(signer)} to ${address}`*/);20592060    let transfer = {from: null, to: null, amount: 0n} as any;2061    result.result.events.forEach(({event: {data, method, section}}) => {2062      if ((section === 'balances') && (method === 'Transfer')) {2063        transfer = {2064          from: this.helper.address.normalizeSubstrate(data[0]),2065          to: this.helper.address.normalizeSubstrate(data[1]),2066          amount: BigInt(data[2]),2067        };2068      }2069    });2070    const isSuccess = this.helper.address.normalizeSubstrate(typeof signer === 'string' ? signer : signer.address) === transfer.from 2071      && this.helper.address.normalizeSubstrate(address) === transfer.to 2072      && BigInt(amount) === transfer.amount;2073    return isSuccess;2074  }2075}207620772078class AddressGroup extends HelperGroup {2079  /**2080   * Normalizes the address to the specified ss58 format, by default ```42```.2081   * @param address substrate address2082   * @param ss58Format format for address conversion, by default ```42```2083   * @example normalizeSubstrate("unjKJQJrRd238pkUZZvzDQrfKuM39zBSnQ5zjAGAGcdRhaJTx") // returns 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY2084   * @returns substrate address converted to normalized (i.e., starting with 5) or specified explicitly representation2085   */2086  normalizeSubstrate(address: TSubstrateAccount, ss58Format = 42): TSubstrateAccount {2087    return CrossAccountId.normalizeSubstrateAddress(address, ss58Format);2088  }20892090  /**2091   * Get address in the connected chain format2092   * @param address substrate address2093   * @example normalizeSubstrateToChainFormat("5GrwvaEF5zXb26Fz...") // returns unjKJQJrRd238pkUZZ... for Unique Network2094   * @returns address in chain format2095   */2096  async normalizeSubstrateToChainFormat(address: TSubstrateAccount): Promise<TSubstrateAccount> {2097    const info = this.helper.chain.getChainProperties();2098    return encodeAddress(decodeAddress(address), info.ss58Format);2099  }21002101  /**2102   * Get substrate mirror of an ethereum address2103   * @param ethAddress ethereum address2104   * @param toChainFormat false for normalized account2105   * @example ethToSubstrate('0x9F0583DbB855d...')2106   * @returns substrate mirror of a provided ethereum address2107   */2108  async ethToSubstrate(ethAddress: TEthereumAccount, toChainFormat=false): Promise<TSubstrateAccount> {2109    if(!toChainFormat) return evmToAddress(ethAddress);2110    const info = this.helper.chain.getChainProperties();2111    return evmToAddress(ethAddress, info.ss58Format);2112  }21132114  /**2115   * Get ethereum mirror of a substrate address2116   * @param subAddress substrate account2117   * @example substrateToEth("5DnSF6RRjwteE3BrC...")2118   * @returns ethereum mirror of a provided substrate address2119   */2120  substrateToEth(subAddress: TSubstrateAccount): TEthereumAccount {2121    return nesting.toChecksumAddress('0x' + Array.from(addressToEvm(subAddress), i => i.toString(16).padStart(2, '0')).join(''));2122  }2123}21242125class StakingGroup extends HelperGroup {2126  /**2127   * Stake tokens for App Promotion2128   * @param signer keyring of signer2129   * @param amountToStake amount of tokens to stake2130   * @param label extra label for log2131   * @returns2132   */2133  async stake(signer: TSigner, amountToStake: bigint, label?: string): Promise<boolean> {2134    if(typeof label === 'undefined') label = `${signer.address} amount: ${amountToStake}`;2135    const stakeResult = await this.helper.executeExtrinsic(2136      signer, 'api.tx.appPromotion.stake',2137      [amountToStake], true,2138    );2139    // TODO extract info from stakeResult2140    return true;2141  }21422143  /**2144   * Unstake tokens for App Promotion2145   * @param signer keyring of signer2146   * @param amountToUnstake amount of tokens to unstake2147   * @param label extra label for log2148   * @returns block number where balances will be unlocked2149   */2150  async unstake(signer: TSigner, label?: string): Promise<number> {2151    if(typeof label === 'undefined') label = `${signer.address}`;2152    const unstakeResult = await this.helper.executeExtrinsic(2153      signer, 'api.tx.appPromotion.unstake',2154      [], true,2155    );2156    // TODO extract block number fron events2157    return 1;2158  }21592160  /**2161   * Get total staked amount for address2162   * @param address substrate or ethereum address2163   * @returns total staked amount2164   */2165  async getTotalStaked(address?: ICrossAccountId): Promise<bigint> {2166    if (address) return (await this.helper.callRpc('api.rpc.appPromotion.totalStaked', [address])).toBigInt();2167    return (await this.helper.callRpc('api.rpc.appPromotion.totalStaked')).toBigInt();2168  }21692170  /**2171   * Get total staked per block2172   * @param address substrate or ethereum address2173   * @returns array of stakes. `block` – the number of the block in which the stake was made. `amount` - the number of tokens staked in the block2174   */2175  async getTotalStakedPerBlock(address: ICrossAccountId): Promise<IStakingInfo[]> {2176    const rawTotalStakerdPerBlock = await this.helper.callRpc('api.rpc.appPromotion.totalStakedPerBlock', [address]);2177    return rawTotalStakerdPerBlock.map(([block, amount]: any[]) => {2178      return { 2179        block: block.toBigInt(),2180        amount: amount.toBigInt(),2181      };2182    });2183  }21842185  /**2186   * Get total pending unstake amount for address2187   * @param address substrate or ethereum address2188   * @returns total pending unstake amount2189   */2190  async getPendingUnstake(address: ICrossAccountId): Promise<bigint> {2191    return (await this.helper.callRpc('api.rpc.appPromotion.pendingUnstake', [address])).toBigInt();2192  }21932194  /**2195   * Get pending unstake amount per block for address2196   * @param address substrate or ethereum address2197   * @returns array of pending stakes. `block` – the number of the block in which the unstake was made. `amount` - the number of tokens unstaked in the block2198   */2199  async getPendingUnstakePerBlock(address: ICrossAccountId): Promise<IStakingInfo[]> {2200    const rawUnstakedPerBlock = await this.helper.callRpc('api.rpc.appPromotion.pendingUnstakePerBlock', [address]);2201    const result = rawUnstakedPerBlock.map(([block, amount]: any[]) => {2202      return {2203        block: block.toBigInt(),2204        amount: amount.toBigInt(),2205      };2206    });2207    return result;2208  }2209}22102211export class UniqueHelper extends ChainHelperBase {2212  chain: ChainGroup;2213  balance: BalanceGroup;2214  address: AddressGroup;2215  collection: CollectionGroup;2216  nft: NFTGroup;2217  rft: RFTGroup;2218  ft: FTGroup;2219  staking: StakingGroup;22202221  constructor(logger?: ILogger) {2222    super(logger);2223    this.chain = new ChainGroup(this);2224    this.balance = new BalanceGroup(this);2225    this.address = new AddressGroup(this);2226    this.collection = new CollectionGroup(this);2227    this.nft = new NFTGroup(this);2228    this.rft = new RFTGroup(this);2229    this.ft = new FTGroup(this);2230    this.staking = new StakingGroup(this);2231  }2232}223322342235export class UniqueBaseCollection {2236  helper: UniqueHelper;2237  collectionId: number;22382239  constructor(collectionId: number, uniqueHelper: UniqueHelper) {2240    this.collectionId = collectionId;2241    this.helper = uniqueHelper;2242  }22432244  async getData() {2245    return await this.helper.collection.getData(this.collectionId);2246  }22472248  async getLastTokenId() {2249    return await this.helper.collection.getLastTokenId(this.collectionId);2250  }22512252  async isTokenExists(tokenId: number) {2253    return await this.helper.collection.isTokenExists(this.collectionId, tokenId);2254  }22552256  async getAdmins() {2257    return await this.helper.collection.getAdmins(this.collectionId);2258  }22592260  async getAllowList() {2261    return await this.helper.collection.getAllowList(this.collectionId);2262  }22632264  async getEffectiveLimits() {2265    return await this.helper.collection.getEffectiveLimits(this.collectionId);2266  }22672268  async getProperties(propertyKeys: string[] | null = null) {2269    return await this.helper.collection.getProperties(this.collectionId, propertyKeys);2270  }22712272  async getTokenNextSponsored(tokenId: number, addressObj: ICrossAccountId) {2273    return await this.helper.collection.getTokenNextSponsored(this.collectionId, tokenId, addressObj);2274  }22752276  async setSponsor(signer: TSigner, sponsorAddress: TSubstrateAccount) {2277    return await this.helper.collection.setSponsor(signer, this.collectionId, sponsorAddress);2278  }22792280  async confirmSponsorship(signer: TSigner) {2281    return await this.helper.collection.confirmSponsorship(signer, this.collectionId);2282  }22832284  async removeSponsor(signer: TSigner) {2285    return await this.helper.collection.removeSponsor(signer, this.collectionId);2286  }22872288  async setLimits(signer: TSigner, limits: ICollectionLimits) {2289    return await this.helper.collection.setLimits(signer, this.collectionId, limits);2290  }22912292  async changeOwner(signer: TSigner, ownerAddress: TSubstrateAccount) {2293    return await this.helper.collection.changeOwner(signer, this.collectionId, ownerAddress);2294  }22952296  async addAdmin(signer: TSigner, adminAddressObj: ICrossAccountId) {2297    return await this.helper.collection.addAdmin(signer, this.collectionId, adminAddressObj);2298  }22992300  async addToAllowList(signer: TSigner, addressObj: ICrossAccountId) {2301    return await this.helper.collection.addToAllowList(signer, this.collectionId, addressObj);2302  }23032304  async removeFromAllowList(signer: TSigner, addressObj: ICrossAccountId) {2305    return await this.helper.collection.removeFromAllowList(signer, this.collectionId, addressObj);2306  }23072308  async removeAdmin(signer: TSigner, adminAddressObj: ICrossAccountId) {2309    return await this.helper.collection.removeAdmin(signer, this.collectionId, adminAddressObj);2310  }23112312  async setProperties(signer: TSigner, properties: IProperty[]) {2313    return await this.helper.collection.setProperties(signer, this.collectionId, properties);2314  }23152316  async deleteProperties(signer: TSigner, propertyKeys: string[]) {2317    return await this.helper.collection.deleteProperties(signer, this.collectionId, propertyKeys);2318  }23192320  async setPermissions(signer: TSigner, permissions: ICollectionPermissions) {2321    return await this.helper.collection.setPermissions(signer, this.collectionId, permissions);2322  }23232324  async enableNesting(signer: TSigner, permissions: INestingPermissions) {2325    return await this.helper.collection.enableNesting(signer, this.collectionId, permissions);2326  }23272328  async disableNesting(signer: TSigner) {2329    return await this.helper.collection.disableNesting(signer, this.collectionId);2330  }23312332  async burn(signer: TSigner) {2333    return await this.helper.collection.burn(signer, this.collectionId);2334  }2335}233623372338export class UniqueNFTCollection extends UniqueBaseCollection {2339  getTokenObject(tokenId: number) {2340    return new UniqueNFToken(tokenId, this);2341  }23422343  async getTokensByAddress(addressObj: ICrossAccountId) {2344    return await this.helper.nft.getTokensByAddress(this.collectionId, addressObj);2345  }23462347  async getToken(tokenId: number, blockHashAt?: string) {2348    return await this.helper.nft.getToken(this.collectionId, tokenId, [], blockHashAt);2349  }23502351  async getTokenOwner(tokenId: number, blockHashAt?: string) {2352    return await this.helper.nft.getTokenOwner(this.collectionId, tokenId, blockHashAt);2353  }23542355  async getTokenTopmostOwner(tokenId: number, blockHashAt?: string) {2356    return await this.helper.nft.getTokenTopmostOwner(this.collectionId, tokenId, blockHashAt);2357  }23582359  async getTokenChildren(tokenId: number, blockHashAt?: string) {2360    return await this.helper.nft.getTokenChildren(this.collectionId, tokenId, blockHashAt);2361  }23622363  async getPropertyPermissions(propertyKeys: string[] | null = null) {2364    return await this.helper.nft.getPropertyPermissions(this.collectionId, propertyKeys);2365  }23662367  async getTokenProperties(tokenId: number, propertyKeys: string[] | null = null) {2368    return await this.helper.nft.getTokenProperties(this.collectionId, tokenId, propertyKeys);2369  }23702371  async transferToken(signer: TSigner, tokenId: number, addressObj: ICrossAccountId) {2372    return await this.helper.nft.transferToken(signer, this.collectionId, tokenId, addressObj);2373  }23742375  async transferTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2376    return await this.helper.nft.transferTokenFrom(signer, this.collectionId, tokenId, fromAddressObj, toAddressObj);2377  }23782379  async approveToken(signer: TSigner, tokenId: number, toAddressObj: ICrossAccountId) {2380    return await this.helper.nft.approveToken(signer, this.collectionId, tokenId, toAddressObj);2381  }23822383  async isTokenApproved(tokenId: number, toAddressObj: ICrossAccountId) {2384    return await this.helper.nft.isTokenApproved(this.collectionId, tokenId, toAddressObj);2385  }23862387  async mintToken(signer: TSigner, owner: ICrossAccountId = {Substrate: signer.address}, properties?: IProperty[]) {2388    return await this.helper.nft.mintToken(signer, {collectionId: this.collectionId, owner, properties});2389  }23902391  async mintMultipleTokens(signer: TSigner, tokens: {owner: ICrossAccountId, properties?: IProperty[]}[]) {2392    return await this.helper.nft.mintMultipleTokens(signer, this.collectionId, tokens);2393  }23942395  async burnToken(signer: TSigner, tokenId: number) {2396    return await this.helper.nft.burnToken(signer, this.collectionId, tokenId);2397  }23982399  async burnTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId) {2400    return await this.helper.nft.burnTokenFrom(signer, this.collectionId, tokenId, fromAddressObj);2401  }24022403  async setTokenProperties(signer: TSigner, tokenId: number, properties: IProperty[]) {2404    return await this.helper.nft.setTokenProperties(signer, this.collectionId, tokenId, properties);2405  }24062407  async deleteTokenProperties(signer: TSigner, tokenId: number, propertyKeys: string[]) {2408    return await this.helper.nft.deleteTokenProperties(signer, this.collectionId, tokenId, propertyKeys);2409  }24102411  async setTokenPropertyPermissions(signer: TSigner, permissions: ITokenPropertyPermission[]) {2412    return await this.helper.nft.setTokenPropertyPermissions(signer, this.collectionId, permissions);2413  }24142415  async nestToken(signer: TSigner, tokenId: number, toTokenObj: IToken) {2416    return await this.helper.nft.nestToken(signer, {collectionId: this.collectionId, tokenId}, toTokenObj);2417  }24182419  async unnestToken(signer: TSigner, tokenId: number, fromTokenObj: IToken, toAddressObj: ICrossAccountId) {2420    return await this.helper.nft.unnestToken(signer, {collectionId: this.collectionId, tokenId}, fromTokenObj, toAddressObj);2421  }2422}242324242425export class UniqueRFTCollection extends UniqueBaseCollection {2426  getTokenObject(tokenId: number) {2427    return new UniqueRFToken(tokenId, this);2428  }24292430  async getToken(tokenId: number, blockHashAt?: string) {2431    return await this.helper.rft.getToken(this.collectionId, tokenId, [], blockHashAt);2432  }24332434  async getTokensByAddress(addressObj: ICrossAccountId) {2435    return await this.helper.rft.getTokensByAddress(this.collectionId, addressObj);2436  }24372438  async getTop10TokenOwners(tokenId: number) {2439    return await this.helper.rft.getTokenTop10Owners(this.collectionId, tokenId);2440  }24412442  async getTokenBalance(tokenId: number, addressObj: ICrossAccountId) {2443    return await this.helper.rft.getTokenBalance(this.collectionId, tokenId, addressObj);2444  }24452446  async getTokenTotalPieces(tokenId: number) {2447    return await this.helper.rft.getTokenTotalPieces(this.collectionId, tokenId);2448  }24492450  async getTokenApprovedPieces(tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2451    return await this.helper.rft.getTokenApprovedPieces(this.collectionId, tokenId, toAddressObj, fromAddressObj);2452  }24532454  async getPropertyPermissions(propertyKeys: string[] | null = null) {2455    return await this.helper.rft.getPropertyPermissions(this.collectionId, propertyKeys);2456  }24572458  async getTokenProperties(tokenId: number, propertyKeys: string[] | null = null) {2459    return await this.helper.rft.getTokenProperties(this.collectionId, tokenId, propertyKeys);2460  }24612462  async transferToken(signer: TSigner, tokenId: number, addressObj: ICrossAccountId, amount=1n) {2463    return await this.helper.rft.transferToken(signer, this.collectionId, tokenId, addressObj, amount);2464  }24652466  async transferTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {2467    return await this.helper.rft.transferTokenFrom(signer, this.collectionId, tokenId, fromAddressObj, toAddressObj, amount);2468  }24692470  async approveToken(signer: TSigner, tokenId: number, toAddressObj: ICrossAccountId, amount=1n) {2471    return await this.helper.rft.approveToken(signer, this.collectionId, tokenId, toAddressObj, amount);2472  }24732474  async repartitionToken(signer: TSigner, tokenId: number, amount: bigint) {2475    return await this.helper.rft.repartitionToken(signer, this.collectionId, tokenId, amount);2476  }24772478  async mintToken(signer: TSigner, pieces=1n, owner: ICrossAccountId = {Substrate: signer.address}, properties?: IProperty[]) {2479    return await this.helper.rft.mintToken(signer, {collectionId: this.collectionId, owner, pieces, properties});2480  }24812482  async mintMultipleTokens(signer: TSigner, tokens: {pieces: bigint, owner: ICrossAccountId, properties?: IProperty[]}[]) {2483    return await this.helper.rft.mintMultipleTokens(signer, this.collectionId, tokens);2484  }24852486  async burnToken(signer: TSigner, tokenId: number, amount=1n) {2487    return await this.helper.rft.burnToken(signer, this.collectionId, tokenId, amount);2488  }24892490  async burnTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId,  amount=1n) {2491    return await this.helper.rft.burnTokenFrom(signer, this.collectionId, tokenId, fromAddressObj, amount);2492  }24932494  async setTokenProperties(signer: TSigner, tokenId: number, properties: IProperty[]) {2495    return await this.helper.rft.setTokenProperties(signer, this.collectionId, tokenId, properties);2496  }24972498  async deleteTokenProperties(signer: TSigner, tokenId: number, propertyKeys: string[]) {2499    return await this.helper.rft.deleteTokenProperties(signer, this.collectionId, tokenId, propertyKeys);2500  }25012502  async setTokenPropertyPermissions(signer: TSigner, permissions: ITokenPropertyPermission[]) {2503    return await this.helper.rft.setTokenPropertyPermissions(signer, this.collectionId, permissions);2504  }2505}250625072508export class UniqueFTCollection extends UniqueBaseCollection {2509  async getBalance(addressObj: ICrossAccountId) {2510    return await this.helper.ft.getBalance(this.collectionId, addressObj);2511  }25122513  async getTotalPieces() {2514    return await this.helper.ft.getTotalPieces(this.collectionId);2515  }25162517  async getApprovedTokens(fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2518    return await this.helper.ft.getApprovedTokens(this.collectionId, fromAddressObj, toAddressObj);2519  }25202521  async getTop10Owners() {2522    return await this.helper.ft.getTop10Owners(this.collectionId);2523  }25242525  async mint(signer: TSigner, amount=1n, owner: ICrossAccountId = {Substrate: signer.address}) {2526    return await this.helper.ft.mintTokens(signer, this.collectionId, amount, owner);2527  }25282529  async mintWithOneOwner(signer: TSigner, tokens: {value: bigint}[], owner: ICrossAccountId = {Substrate: signer.address}) {2530    return await this.helper.ft.mintMultipleTokensWithOneOwner(signer, this.collectionId, tokens, owner);2531  }25322533  async transfer(signer: TSigner, toAddressObj: ICrossAccountId, amount=1n) {2534    return await this.helper.ft.transfer(signer, this.collectionId, toAddressObj, amount);2535  }25362537  async transferFrom(signer: TSigner, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {2538    return await this.helper.ft.transferFrom(signer, this.collectionId, fromAddressObj, toAddressObj, amount);2539  }25402541  async burnTokens(signer: TSigner, amount=1n) {2542    return await this.helper.ft.burnTokens(signer, this.collectionId, amount);2543  }25442545  async burnTokensFrom(signer: TSigner, fromAddressObj: ICrossAccountId, amount=1n) {2546    return await this.helper.ft.burnTokensFrom(signer, this.collectionId, fromAddressObj, amount);2547  }25482549  async approveTokens(signer: TSigner, toAddressObj: ICrossAccountId, amount=1n) {2550    return await this.helper.ft.approveTokens(signer, this.collectionId, toAddressObj, amount);2551  }2552}255325542555export class UniqueBaseToken {2556  collection: UniqueNFTCollection | UniqueRFTCollection;2557  collectionId: number;2558  tokenId: number;25592560  constructor(tokenId: number, collection: UniqueNFTCollection | UniqueRFTCollection) {2561    this.collection = collection;2562    this.collectionId = collection.collectionId;2563    this.tokenId = tokenId;2564  }25652566  async getNextSponsored(addressObj: ICrossAccountId) {2567    return await this.collection.getTokenNextSponsored(this.tokenId, addressObj);2568  }25692570  async getProperties(propertyKeys: string[] | null = null) {2571    return await this.collection.getTokenProperties(this.tokenId, propertyKeys);2572  }25732574  async setProperties(signer: TSigner, properties: IProperty[]) {2575    return await this.collection.setTokenProperties(signer, this.tokenId, properties);2576  }25772578  async deleteProperties(signer: TSigner, propertyKeys: string[]) {2579    return await this.collection.deleteTokenProperties(signer, this.tokenId, propertyKeys);2580  }25812582  nestingAccount() {2583    return this.collection.helper.util.getTokenAccount(this);2584  }2585}258625872588export class UniqueNFToken extends UniqueBaseToken {2589  collection: UniqueNFTCollection;25902591  constructor(tokenId: number, collection: UniqueNFTCollection) {2592    super(tokenId, collection);2593    this.collection = collection;2594  }25952596  async getData(blockHashAt?: string) {2597    return await this.collection.getToken(this.tokenId, blockHashAt);2598  }25992600  async getOwner(blockHashAt?: string) {2601    return await this.collection.getTokenOwner(this.tokenId, blockHashAt);2602  }26032604  async getTopmostOwner(blockHashAt?: string) {2605    return await this.collection.getTokenTopmostOwner(this.tokenId, blockHashAt);2606  }26072608  async getChildren(blockHashAt?: string) {2609    return await this.collection.getTokenChildren(this.tokenId, blockHashAt);2610  }26112612  async nest(signer: TSigner, toTokenObj: IToken) {2613    return await this.collection.nestToken(signer, this.tokenId, toTokenObj);2614  }26152616  async unnest(signer: TSigner, fromTokenObj: IToken, toAddressObj: ICrossAccountId) {2617    return await this.collection.unnestToken(signer, this.tokenId, fromTokenObj, toAddressObj);2618  }26192620  async transfer(signer: TSigner, addressObj: ICrossAccountId) {2621    return await this.collection.transferToken(signer, this.tokenId, addressObj);2622  }26232624  async transferFrom(signer: TSigner, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2625    return await this.collection.transferTokenFrom(signer, this.tokenId, fromAddressObj, toAddressObj);2626  }26272628  async approve(signer: TSigner, toAddressObj: ICrossAccountId) {2629    return await this.collection.approveToken(signer, this.tokenId, toAddressObj);2630  }26312632  async isApproved(toAddressObj: ICrossAccountId) {2633    return await this.collection.isTokenApproved(this.tokenId, toAddressObj);2634  }26352636  async burn(signer: TSigner) {2637    return await this.collection.burnToken(signer, this.tokenId);2638  }26392640  async burnFrom(signer: TSigner, fromAddressObj: ICrossAccountId) {2641    return await this.collection.burnTokenFrom(signer, this.tokenId, fromAddressObj);2642  }2643}26442645export class UniqueRFToken extends UniqueBaseToken {2646  collection: UniqueRFTCollection;26472648  constructor(tokenId: number, collection: UniqueRFTCollection) {2649    super(tokenId, collection);2650    this.collection = collection;2651  }26522653  async getData(blockHashAt?: string) {2654    return await this.collection.getToken(this.tokenId, blockHashAt);2655  }26562657  async getTop10Owners() {2658    return await this.collection.getTop10TokenOwners(this.tokenId);2659  }26602661  async getBalance(addressObj: ICrossAccountId) {2662    return await this.collection.getTokenBalance(this.tokenId, addressObj);2663  }26642665  async getTotalPieces() {2666    return await this.collection.getTokenTotalPieces(this.tokenId);2667  }26682669  async getApprovedPieces(fromAddressObj: ICrossAccountId, toAccountObj: ICrossAccountId) {2670    return await this.collection.getTokenApprovedPieces(this.tokenId, fromAddressObj, toAccountObj);2671  }26722673  async transfer(signer: TSigner, addressObj: ICrossAccountId, amount=1n) {2674    return await this.collection.transferToken(signer, this.tokenId, addressObj, amount);2675  }26762677  async transferFrom(signer: TSigner, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {2678    return await this.collection.transferTokenFrom(signer, this.tokenId, fromAddressObj, toAddressObj, amount);2679  }26802681  async approve(signer: TSigner, toAddressObj: ICrossAccountId, amount=1n) {2682    return await this.collection.approveToken(signer, this.tokenId, toAddressObj, amount);2683  }26842685  async repartition(signer: TSigner, amount: bigint) {2686    return await this.collection.repartitionToken(signer, this.tokenId, amount);2687  }26882689  async burn(signer: TSigner, amount=1n) {2690    return await this.collection.burnToken(signer, this.tokenId, amount);2691  }26922693  async burnFrom(signer: TSigner, fromAddressObj: ICrossAccountId, amount=1n) {2694    return await this.collection.burnTokenFrom(signer, this.tokenId, fromAddressObj, amount);2695  }2696}
after · tests/src/util/playgrounds/unique.ts
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// SPDX-License-Identifier: Apache-2.034/* eslint-disable @typescript-eslint/no-var-requires */5/* eslint-disable function-call-argument-newline */6/* eslint-disable no-prototype-builtins */78import {ApiPromise, WsProvider, Keyring} from '@polkadot/api';9import {ApiInterfaceEvents, SignerOptions} from '@polkadot/api/types';10import {encodeAddress, decodeAddress, keccakAsHex, evmToAddress, addressToEvm} from '@polkadot/util-crypto';11import {IKeyringPair} from '@polkadot/types/types';12import {IApiListeners, IBlock, IEvent, IChainProperties, ICollectionCreationOptions, ICollectionLimits, ICollectionPermissions, ICrossAccountId, ICrossAccountIdLower, ILogger, INestingPermissions, IProperty, IStakingInfo, ISubstrateBalance, IToken, ITokenPropertyPermission, ITransactionResult, IUniqueHelperLog, TApiAllowedListeners, TEthereumAccount, TSigner, TSubstrateAccount, TUniqueNetworks} from './types';1314export class CrossAccountId implements ICrossAccountId {15  Substrate?: TSubstrateAccount;16  Ethereum?: TEthereumAccount;1718  constructor(account: ICrossAccountId) {19    if (account.Substrate) this.Substrate = account.Substrate;20    if (account.Ethereum) this.Ethereum = account.Ethereum;21  }2223  static fromKeyring(account: IKeyringPair, domain: 'Substrate' | 'Ethereum' = 'Substrate') {24    switch (domain) {25      case 'Substrate': return new CrossAccountId({Substrate: account.address});26      case 'Ethereum': return new CrossAccountId({Substrate: account.address}).toEthereum();27    }28  }2930  static fromLowerCaseKeys(address: ICrossAccountIdLower): CrossAccountId {31    return new CrossAccountId({Substrate: address.substrate, Ethereum: address.ethereum});32  }3334  static normalizeSubstrateAddress(address: TSubstrateAccount, ss58Format = 42): TSubstrateAccount {35    return encodeAddress(decodeAddress(address), ss58Format);36  }3738  static withNormalizedSubstrate(address: TSubstrateAccount, ss58Format = 42): CrossAccountId {39    return new CrossAccountId({Substrate: CrossAccountId.normalizeSubstrateAddress(address, ss58Format)});40  }41  42  withNormalizedSubstrate(ss58Format = 42): CrossAccountId {43    if (this.Substrate) return CrossAccountId.withNormalizedSubstrate(this.Substrate, ss58Format);44    return this;45  }4647  static translateSubToEth(address: TSubstrateAccount): TEthereumAccount {48    return nesting.toChecksumAddress('0x' + Array.from(addressToEvm(address), i => i.toString(16).padStart(2, '0')).join(''));49  }5051  toEthereum(): CrossAccountId {52    if (this.Substrate) return new CrossAccountId({Ethereum: CrossAccountId.translateSubToEth(this.Substrate)});53    return this;54  }5556  static translateEthToSub(address: TEthereumAccount, ss58Format?: number): TSubstrateAccount {57    return evmToAddress(address, ss58Format);58  }5960  toSubstrate(ss58Format?: number): CrossAccountId {61    if (this.Ethereum) return new CrossAccountId({Substrate: CrossAccountId.translateEthToSub(this.Ethereum, ss58Format)});62    return this;63  }64  65  toLowerCase(): CrossAccountId {66    if (this.Substrate) this.Substrate = this.Substrate.toLowerCase();67    if (this.Ethereum) this.Ethereum = this.Ethereum.toLowerCase();68    return this;69  }70}7172const nesting = {73  toChecksumAddress(address: string): string {74    if (typeof address === 'undefined') return '';7576    if(!/^(0x)?[0-9a-f]{40}$/i.test(address)) throw new Error(`Given address "${address}" is not a valid Ethereum address.`);7778    address = address.toLowerCase().replace(/^0x/i,'');79    const addressHash = keccakAsHex(address).replace(/^0x/i,'');80    const checksumAddress = ['0x'];8182    for (let i = 0; i < address.length; i++) {83      // If ith character is 8 to f then make it uppercase84      if (parseInt(addressHash[i], 16) > 7) {85        checksumAddress.push(address[i].toUpperCase());86      } else {87        checksumAddress.push(address[i]);88      }89    }90    return checksumAddress.join('');91  },92  tokenIdToAddress(collectionId: number, tokenId: number) {93    return this.toChecksumAddress(`0xf8238ccfff8ed887463fd5e0${collectionId.toString(16).padStart(8, '0')}${tokenId.toString(16).padStart(8, '0')}`);94  },95};9697class UniqueUtil {98  static transactionStatus = {99    NOT_READY: 'NotReady',100    FAIL: 'Fail',101    SUCCESS: 'Success',102  };103104  static chainLogType = {105    EXTRINSIC: 'extrinsic',106    RPC: 'rpc',107  };108109  static getTokenAccount(token: IToken): CrossAccountId {110    return new CrossAccountId({Ethereum: this.getTokenAddress(token)});111  }112113  static getTokenAddress(token: IToken): string {114    return nesting.tokenIdToAddress(token.collectionId, token.tokenId);115  }116117  static getDefaultLogger(): ILogger {118    return {119      log(msg: any, level = 'INFO') {120        console[level.toLocaleLowerCase() === 'error' ? 'error' : 'log'](...(Array.isArray(msg) ? msg : [msg]));121      },122      level: {123        ERROR: 'ERROR',124        WARNING: 'WARNING',125        INFO: 'INFO',126      },127    };128  }129130  static vec2str(arr: string[] | number[]) {131    return arr.map(x => String.fromCharCode(parseInt(x.toString()))).join('');132  }133134  static str2vec(string: string) {135    if (typeof string !== 'string') return string;136    return Array.from(string).map(x => x.charCodeAt(0));137  }138139  static fromSeed(seed: string, ss58Format = 42) {140    const keyring = new Keyring({type: 'sr25519', ss58Format});141    return keyring.addFromUri(seed);142  }143144  static extractCollectionIdFromCreationResult(creationResult: ITransactionResult) {145    if (creationResult.status !== this.transactionStatus.SUCCESS) {146      throw Error('Unable to create collection!');147    }148149    let collectionId = null;150    creationResult.result.events.forEach(({event: {data, method, section}}) => {151      if ((section === 'common') && (method === 'CollectionCreated')) {152        collectionId = parseInt(data[0].toString(), 10);153      }154    });155156    if (collectionId === null) {157      throw Error('No CollectionCreated event was found!');158    }159160    return collectionId;161  }162163  static extractTokensFromCreationResult(creationResult: ITransactionResult) {164    if (creationResult.status !== this.transactionStatus.SUCCESS) {165      throw Error('Unable to create tokens!');166    }167    let success = false;168    const tokens = [] as any;169    creationResult.result.events.forEach(({event: {data, method, section}}) => {170      if (method === 'ExtrinsicSuccess') {171        success = true;172      } else if ((section === 'common') && (method === 'ItemCreated')) {173        tokens.push({174          collectionId: parseInt(data[0].toString(), 10),175          tokenId: parseInt(data[1].toString(), 10),176          owner: data[2].toJSON(),177        });178      }179    });180    return {success, tokens};181  }182183  static extractTokensFromBurnResult(burnResult: ITransactionResult) {184    if (burnResult.status !== this.transactionStatus.SUCCESS) {185      throw Error('Unable to burn tokens!');186    }187    let success = false;188    const tokens = [] as any;189    burnResult.result.events.forEach(({event: {data, method, section}}) => {190      if (method === 'ExtrinsicSuccess') {191        success = true;192      } else if ((section === 'common') && (method === 'ItemDestroyed')) {193        tokens.push({194          collectionId: parseInt(data[0].toString(), 10),195          tokenId: parseInt(data[1].toString(), 10),196          owner: data[2].toJSON(),197        });198      }199    });200    return {success, tokens};201  }202203  static findCollectionInEvents(events: {event: IEvent}[], collectionId: number, expectedSection: string, expectedMethod: string) {204    let eventId = null;205    events.forEach(({event: {data, method, section}}) => {206      if ((section === expectedSection) && (method === expectedMethod)) {207        eventId = parseInt(data[0].toString(), 10);208      }209    });210211    if (eventId === null) {212      throw Error(`No ${expectedMethod} event was found!`);213    }214    return eventId === collectionId;215  }216217  static isTokenTransferSuccess(events: {event: IEvent}[], collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {218    const normalizeAddress = (address: string | ICrossAccountId) => {219      if(typeof address === 'string') return address;220      const obj = {} as any;221      Object.keys(address).forEach(k => {222        obj[k.toLocaleLowerCase()] = address[k as 'Substrate' | 'Ethereum'];223      });224      if(obj.substrate) return CrossAccountId.withNormalizedSubstrate(obj.substrate);225      if(obj.ethereum) return CrossAccountId.fromLowerCaseKeys(obj).toLowerCase();226      return address;227    };228    let transfer = {collectionId: null, tokenId: null, from: null, to: null, amount: 1} as any;229    events.forEach(({event: {data, method, section}}) => {230      if ((section === 'common') && (method === 'Transfer')) {231        const hData = (data as any).toJSON();232        transfer = {233          collectionId: hData[0],234          tokenId: hData[1],235          from: normalizeAddress(hData[2]),236          to: normalizeAddress(hData[3]),237          amount: BigInt(hData[4]),238        };239      }240    });241    let isSuccess = parseInt(collectionId.toString()) === transfer.collectionId && parseInt(tokenId.toString()) === transfer.tokenId;242    isSuccess = isSuccess && JSON.stringify(normalizeAddress(fromAddressObj)) === JSON.stringify(transfer.from);243    isSuccess = isSuccess && JSON.stringify(normalizeAddress(toAddressObj)) === JSON.stringify(transfer.to);244    isSuccess = isSuccess && amount === transfer.amount;245    return isSuccess;246  }247}248249class UniqueEventHelper {250  private static extractIndex(index: any): [number, number] | string {251    if(index.toRawType() === '[u8;2]') return [index[0], index[1]];252    return index.toJSON();253  }254255  private static extractSub(data: any, subTypes: any): {[key: string]: any} {256    let obj: any = {};257    let index = 0;258259    if (data.entries) {260      for(const [key, value] of data.entries()) {261        obj[key] = this.extractData(value, subTypes[index]);262        index++;263      }264    } else obj = data.toJSON();265266    return obj;267  }268  269  private static extractData(data: any, type: any): any {270    if (['u16', 'u32'].indexOf(type.type) > -1) return data.toNumber();271    if (['u64', 'u128', 'u256'].indexOf(type.type) > -1) return data.toBigInt();272    if(type.hasOwnProperty('sub')) return this.extractSub(data, type.sub);273    return data.toHuman();274  }275276  public static extractEvents(records: ITransactionResult): IEvent[] {277    const parsedEvents: IEvent[] = [];278279    records.result.events.forEach((record) => {280      const {event, phase} = record;281      const types = (event as any).typeDef;282283      const eventData: IEvent = {284        section: event.section.toString(),285        method: event.method.toString(),286        index: this.extractIndex(event.index),287        data: [],288        phase: phase.toJSON(),289      };290291      event.data.forEach((val: any, index: number) => {292        eventData.data.push(this.extractData(val, types[index]));293      });294295      parsedEvents.push(eventData);296    });297298    return parsedEvents;299  }300}301302class ChainHelperBase {303  transactionStatus = UniqueUtil.transactionStatus;304  chainLogType = UniqueUtil.chainLogType;305  util: typeof UniqueUtil;306  eventHelper: typeof UniqueEventHelper;307  logger: ILogger;308  api: ApiPromise | null;309  forcedNetwork: TUniqueNetworks | null;310  network: TUniqueNetworks | null;311  chainLog: IUniqueHelperLog[];312313  constructor(logger?: ILogger) {314    this.util = UniqueUtil;315    this.eventHelper = UniqueEventHelper;316    if (typeof logger == 'undefined') logger = this.util.getDefaultLogger();317    this.logger = logger;318    this.api = null;319    this.forcedNetwork = null;320    this.network = null;321    this.chainLog = [];322  }323324  clearChainLog(): void {325    this.chainLog = [];326  }327328  forceNetwork(value: TUniqueNetworks): void {329    this.forcedNetwork = value;330  }331332  async connect(wsEndpoint: string, listeners?: IApiListeners) {333    if (this.api !== null) throw Error('Already connected');334    const {api, network} = await ChainHelperBase.createConnection(wsEndpoint, listeners, this.forcedNetwork);335    this.api = api;336    this.network = network;337  }338339  async disconnect() {340    if (this.api === null) return;341    await this.api.disconnect();342    this.api = null;343    this.network = null;344  }345346  static async detectNetwork(api: ApiPromise): Promise<TUniqueNetworks> {347    const spec = (await api.query.system.lastRuntimeUpgrade()).toJSON() as any;348    if(['quartz', 'unique'].indexOf(spec.specName) > -1) return spec.specName;349    return 'opal';350  }351352  static async detectNetworkByWsEndpoint(wsEndpoint: string): Promise<TUniqueNetworks> {353    const api = new ApiPromise({provider: new WsProvider(wsEndpoint)});354    await api.isReady;355356    const network = await this.detectNetwork(api);357358    await api.disconnect();359360    return network;361  }362363  static async createConnection(wsEndpoint: string, listeners?: IApiListeners, network?: TUniqueNetworks | null): Promise<{364    api: ApiPromise;365    network: TUniqueNetworks;366  }> {367    if(typeof network === 'undefined' || network === null) network = 'opal';368    const supportedRPC = {369      opal: {370        unique: require('@unique-nft/opal-testnet-types/definitions').unique.rpc,371      },372      quartz: {373        unique: require('@unique-nft/quartz-mainnet-types/definitions').unique.rpc,374      },375      unique: {376        unique: require('@unique-nft/unique-mainnet-types/definitions').unique.rpc,377      },378    };379    if(!supportedRPC.hasOwnProperty(network)) network = await this.detectNetworkByWsEndpoint(wsEndpoint);380    const rpc = supportedRPC[network];381382    // TODO: investigate how to replace rpc in runtime383    // api._rpcCore.addUserInterfaces(rpc);384385    const api = new ApiPromise({provider: new WsProvider(wsEndpoint), rpc});386387    await api.isReadyOrError;388389    if (typeof listeners === 'undefined') listeners = {};390    for (const event of ['connected', 'disconnected', 'error', 'ready', 'decorated']) {391      if (!listeners.hasOwnProperty(event) || typeof listeners[event as TApiAllowedListeners] === 'undefined') continue;392      api.on(event as ApiInterfaceEvents, listeners[event as TApiAllowedListeners] as (...args: any[]) => any);393    }394395    return {api, network};396  }397398  getTransactionStatus(data: {events: {event: IEvent}[], status: any}) {399    const {events, status} = data;400    if (status.isReady) {401      return this.transactionStatus.NOT_READY;402    }403    if (status.isBroadcast) {404      return this.transactionStatus.NOT_READY;405    }406    if (status.isInBlock || status.isFinalized) {407      const errors = events.filter(e => e.event.method === 'ExtrinsicFailed');408      if (errors.length > 0) {409        return this.transactionStatus.FAIL;410      }411      if (events.filter(e => e.event.method === 'ExtrinsicSuccess').length > 0) {412        return this.transactionStatus.SUCCESS;413      }414    }415416    return this.transactionStatus.FAIL;417  }418419  signTransaction(sender: TSigner, transaction: any, options: Partial<SignerOptions> | null = null, label = 'transaction') {420    const sign = (callback: any) => {421      if(options !== null) return transaction.signAndSend(sender, options, callback);422      return transaction.signAndSend(sender, callback);423    };424    // eslint-disable-next-line no-async-promise-executor425    return new Promise(async (resolve, reject) => {426      try {427        const unsub = await sign((result: any) => {428          const status = this.getTransactionStatus(result);429430          if (status === this.transactionStatus.SUCCESS) {431            this.logger.log(`${label} successful`);432            unsub();433            resolve({result, status});434          } else if (status === this.transactionStatus.FAIL) {435            let moduleError = null;436437            if (result.hasOwnProperty('dispatchError')) {438              const dispatchError = result['dispatchError'];439440              if (dispatchError) {441                if (dispatchError.isModule) {442                  const modErr = dispatchError.asModule;443                  const errorMeta = dispatchError.registry.findMetaError(modErr);444445                  moduleError = `${errorMeta.section}.${errorMeta.name}`;446                } else {447                  moduleError = dispatchError.toHuman();448                }449              } else {450                this.logger.log(result, this.logger.level.ERROR);451              }452            }453454            this.logger.log(`Something went wrong with ${label}. Status: ${status}`, this.logger.level.ERROR);455            unsub();456            reject({status, moduleError, result});457          }458        });459      } catch (e) {460        this.logger.log(e, this.logger.level.ERROR);461        reject(e);462      }463    });464  }465466  constructApiCall(apiCall: string, params: any[]) {467    if(!apiCall.startsWith('api.')) throw Error(`Invalid api call: ${apiCall}`);468    let call = this.api as any;469    for(const part of apiCall.slice(4).split('.')) {470      call = call[part];471    }472    return call(...params);473  }474475  async executeExtrinsic(sender: TSigner, extrinsic: string, params: any[], expectSuccess=true, options: Partial<SignerOptions>|null = null/*, failureMessage='expected success'*/) {476    if(this.api === null) throw Error('API not initialized');477    if(!extrinsic.startsWith('api.tx.')) throw Error(`${extrinsic} is not transaction`);478479    const startTime = (new Date()).getTime();480    let result: ITransactionResult;481    let events: IEvent[] = [];482    try {483      result = await this.signTransaction(sender, this.constructApiCall(extrinsic, params), options, extrinsic) as ITransactionResult;484      events = this.eventHelper.extractEvents(result);485    }486    catch(e) {487      if(!(e as object).hasOwnProperty('status')) throw e;488      result = e as ITransactionResult;489    }490491    const endTime = (new Date()).getTime();492493    const log = {494      executedAt: endTime,495      executionTime: endTime - startTime,496      type: this.chainLogType.EXTRINSIC,497      status: result.status,498      call: extrinsic,499      signer: this.getSignerAddress(sender),500      params,501    } as IUniqueHelperLog;502503    if(result.status !== this.transactionStatus.SUCCESS && result.moduleError) log.moduleError = result.moduleError;504    if(events.length > 0) log.events = events;505506    this.chainLog.push(log);507508    if(expectSuccess && result.status !== this.transactionStatus.SUCCESS) throw Error(`${result.moduleError}`);509    return result;510  }511512  async callRpc(rpc: string, params?: any[]) {513    if(typeof params === 'undefined') params = [];514    if(this.api === null) throw Error('API not initialized');515    if(!rpc.startsWith('api.rpc.') && !rpc.startsWith('api.query.')) throw Error(`${rpc} is not RPC call`);516517    const startTime = (new Date()).getTime();518    let result;519    let error = null;520    const log = {521      type: this.chainLogType.RPC,522      call: rpc,523      params,524    } as IUniqueHelperLog;525526    try {527      result = await this.constructApiCall(rpc, params);528    }529    catch(e) {530      error = e;531    }532533    const endTime = (new Date()).getTime();534535    log.executedAt = endTime;536    log.status = (error === null ? this.transactionStatus.SUCCESS : this.transactionStatus.FAIL) as 'Fail' | 'Success';537    log.executionTime = endTime - startTime;538539    this.chainLog.push(log);540541    if(error !== null) throw error;542543    return result;544  }545546  getSignerAddress(signer: IKeyringPair | string): string {547    if(typeof signer === 'string') return signer;548    return signer.address;549  }550551  fetchAllPalletNames(): string[] {552    if(this.api === null) throw Error('API not initialized');553    return this.api.runtimeMetadata.asLatest.pallets.map(m => m.name.toString().toLowerCase());554  }555556  fetchMissingPalletNames(requiredPallets: string[]): string[] {557    const palletNames = this.fetchAllPalletNames();558    return requiredPallets.filter(p => !palletNames.includes(p));559  }560}561562563class HelperGroup {564  helper: UniqueHelper;565566  constructor(uniqueHelper: UniqueHelper) {567    this.helper = uniqueHelper;568  }569}570571572class CollectionGroup extends HelperGroup {573  /**574 * Get number of blocks when sponsored transaction is available.575 *576 * @param collectionId ID of collection577 * @param tokenId ID of token578 * @param addressObj address for which the sponsorship is checked579 * @example await getTokenNextSponsored(1, 2, {Substrate: '5DfhbVfww7ThF8q6f3...'});580 * @returns number of blocks or null if sponsorship hasn't been set581 */582  async getTokenNextSponsored(collectionId: number, tokenId: number, addressObj: ICrossAccountId): Promise<number | null> {583    return (await this.helper.callRpc('api.rpc.unique.nextSponsored', [collectionId, addressObj, tokenId])).toJSON();584  }585586  /**587   * Get the number of created collections.588   *589   * @returns number of created collections590   */591  async getTotalCount(): Promise<number> {592    return (await this.helper.callRpc('api.rpc.unique.collectionStats')).created.toNumber();593  }594595  /**596   * Get information about the collection with additional data,597   * including the number of tokens it contains, its administrators,598   * the normalized address of the collection's owner, and decoded name and description.599   *600   * @param collectionId ID of collection601   * @example await getData(2)602   * @returns collection information object603   */604  async getData(collectionId: number): Promise<{605    id: number;606    name: string;607    description: string;608    tokensCount: number;609    admins: CrossAccountId[];610    normalizedOwner: TSubstrateAccount;611    raw: any612  } | null> {613    const collection = await this.helper.callRpc('api.rpc.unique.collectionById', [collectionId]);614    const humanCollection = collection.toHuman(), collectionData = {615      id: collectionId, name: null, description: null, tokensCount: 0, admins: [],616      raw: humanCollection,617    } as any, jsonCollection = collection.toJSON();618    if (humanCollection === null) return null;619    collectionData.raw.limits = jsonCollection.limits;620    collectionData.raw.permissions = jsonCollection.permissions;621    collectionData.normalizedOwner = this.helper.address.normalizeSubstrate(collectionData.raw.owner);622    for (const key of ['name', 'description']) {623      collectionData[key] = this.helper.util.vec2str(humanCollection[key]);624    }625626    collectionData.tokensCount = (['RFT', 'NFT'].includes(humanCollection.mode))627      ? await this.helper[humanCollection.mode.toLocaleLowerCase() as 'nft' | 'rft'].getLastTokenId(collectionId)628      : 0;629    collectionData.admins = await this.getAdmins(collectionId);630631    return collectionData;632  }633634  /**635   * Get the addresses of the collection's administrators, optionally normalized.636   *637   * @param collectionId ID of collection638   * @param normalize whether to normalize the addresses to the default ss58 format639   * @example await getAdmins(1)640   * @returns array of administrators641   */642  async getAdmins(collectionId: number, normalize = false): Promise<CrossAccountId[]> {643    const admins = (await this.helper.callRpc('api.rpc.unique.adminlist', [collectionId])).toHuman();644645    return normalize646      ? admins.map((address: CrossAccountId) => address.withNormalizedSubstrate())647      : admins;648  }649650  /**651   * Get the addresses added to the collection allow-list, optionally normalized.652   * @param collectionId ID of collection653   * @param normalize whether to normalize the addresses to the default ss58 format654   * @example await getAllowList(1)655   * @returns array of allow-listed addresses656   */657  async getAllowList(collectionId: number, normalize = false): Promise<CrossAccountId[]> {658    const allowListed = (await this.helper.callRpc('api.rpc.unique.allowlist', [collectionId])).toHuman();659    return normalize660      ? allowListed.map((address: CrossAccountId) => address.withNormalizedSubstrate())661      : allowListed;662  }663664  /**665   * Get the effective limits of the collection instead of null for default values666   *667   * @param collectionId ID of collection668   * @example await getEffectiveLimits(2)669   * @returns object of collection limits670   */671  async getEffectiveLimits(collectionId: number): Promise<ICollectionLimits> {672    return (await this.helper.callRpc('api.rpc.unique.effectiveCollectionLimits', [collectionId])).toJSON();673  }674675  /**676   * Burns the collection if the signer has sufficient permissions and collection is empty.677   *678   * @param signer keyring of signer679   * @param collectionId ID of collection680   * @example await helper.collection.burn(aliceKeyring, 3);681   * @returns ```true``` if extrinsic success, otherwise ```false```682   */683  async burn(signer: TSigner, collectionId: number): Promise<boolean> {684    const result = await this.helper.executeExtrinsic(685      signer,686      'api.tx.unique.destroyCollection', [collectionId],687      true,688    );689690    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionDestroyed');691  }692693  /**694   * Sets the sponsor for the collection (Requires the Substrate address). Needs confirmation by the sponsor.695   *696   * @param signer keyring of signer697   * @param collectionId ID of collection698   * @param sponsorAddress Sponsor substrate address699   * @example setSponsor(aliceKeyring, 10, "5DyN4Y92vZCjv38fg...")700   * @returns ```true``` if extrinsic success, otherwise ```false```701   */702  async setSponsor(signer: TSigner, collectionId: number, sponsorAddress: TSubstrateAccount): Promise<boolean> {703    const result = await this.helper.executeExtrinsic(704      signer,705      'api.tx.unique.setCollectionSponsor', [collectionId, sponsorAddress],706      true,707    );708709    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionSponsorSet');710  }711712  /**713   * Confirms consent to sponsor the collection on behalf of the signer.714   *715   * @param signer keyring of signer716   * @param collectionId ID of collection717   * @example confirmSponsorship(aliceKeyring, 10)718   * @returns ```true``` if extrinsic success, otherwise ```false```719   */720  async confirmSponsorship(signer: TSigner, collectionId: number): Promise<boolean> {721    const result = await this.helper.executeExtrinsic(722      signer,723      'api.tx.unique.confirmSponsorship', [collectionId],724      true,725    );726727    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'SponsorshipConfirmed');728  }729730  /**731   * Removes the sponsor of a collection, regardless if it consented or not.732   *733   * @param signer keyring of signer734   * @param collectionId ID of collection735   * @example removeSponsor(aliceKeyring, 10)736   * @returns ```true``` if extrinsic success, otherwise ```false```737   */738  async removeSponsor(signer: TSigner, collectionId: number): Promise<boolean> {739    const result = await this.helper.executeExtrinsic(740      signer,741      'api.tx.unique.removeCollectionSponsor', [collectionId],742      true,743    );744745    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionSponsorRemoved');746  }747748  /**749   * Sets the limits of the collection. At least one limit must be specified for a correct call.750   *751   * @param signer keyring of signer752   * @param collectionId ID of collection753   * @param limits collection limits object754   * @example755   * await setLimits(756   *   aliceKeyring,757   *   10,758   *   {759   *     sponsorTransferTimeout: 0,760   *     ownerCanDestroy: false761   *   }762   * )763   * @returns ```true``` if extrinsic success, otherwise ```false```764   */765  async setLimits(signer: TSigner, collectionId: number, limits: ICollectionLimits): Promise<boolean> {766    const result = await this.helper.executeExtrinsic(767      signer,768      'api.tx.unique.setCollectionLimits', [collectionId, limits],769      true,770    );771772    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionLimitSet');773  }774775  /**776   * Changes the owner of the collection to the new Substrate address.777   *778   * @param signer keyring of signer779   * @param collectionId ID of collection780   * @param ownerAddress substrate address of new owner781   * @example changeOwner(aliceKeyring, 10, "5DyN4Y92vZCjv38fg...")782   * @returns ```true``` if extrinsic success, otherwise ```false```783   */784  async changeOwner(signer: TSigner, collectionId: number, ownerAddress: TSubstrateAccount): Promise<boolean> {785    const result = await this.helper.executeExtrinsic(786      signer,787      'api.tx.unique.changeCollectionOwner', [collectionId, ownerAddress],788      true,789    );790791    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionOwnedChanged');792  }793794  /**795   * Adds a collection administrator.796   *797   * @param signer keyring of signer798   * @param collectionId ID of collection799   * @param adminAddressObj Administrator address (substrate or ethereum)800   * @example addAdmin(aliceKeyring, 10, {Substrate: "5DyN4Y92vZCjv38fg..."})801   * @returns ```true``` if extrinsic success, otherwise ```false```802   */803  async addAdmin(signer: TSigner, collectionId: number, adminAddressObj: ICrossAccountId): Promise<boolean> {804    const result = await this.helper.executeExtrinsic(805      signer,806      'api.tx.unique.addCollectionAdmin', [collectionId, adminAddressObj],807      true,808    );809810    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionAdminAdded');811  }812813  /**814   * Removes a collection administrator.815   *816   * @param signer keyring of signer817   * @param collectionId ID of collection818   * @param adminAddressObj Administrator address (substrate or ethereum)819   * @example removeAdmin(aliceKeyring, 10, {Substrate: "5DyN4Y92vZCjv38fg..."})820   * @returns ```true``` if extrinsic success, otherwise ```false```821   */822  async removeAdmin(signer: TSigner, collectionId: number, adminAddressObj: ICrossAccountId): Promise<boolean> {823    const result = await this.helper.executeExtrinsic(824      signer,825      'api.tx.unique.removeCollectionAdmin', [collectionId, adminAddressObj],826      true,827    );828829    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionAdminRemoved');830  }831832  /**833   * Check if user is in allow list.834   * 835   * @param collectionId ID of collection836   * @param user Account to check837   * @example await getAdmins(1)838   * @returns is user in allow list839   */840  async allowed(collectionId: number, user: ICrossAccountId): Promise<boolean> {841    return (await this.helper.callRpc('api.rpc.unique.allowed', [collectionId, user])).toJSON();842  }843844  /**845   * Adds an address to allow list846   * @param signer keyring of signer847   * @param collectionId ID of collection848   * @param addressObj address to add to the allow list849   * @returns ```true``` if extrinsic success, otherwise ```false```850   */851  async addToAllowList(signer: TSigner, collectionId: number, addressObj: ICrossAccountId): Promise<boolean> {852    const result = await this.helper.executeExtrinsic(853      signer,854      'api.tx.unique.addToAllowList', [collectionId, addressObj],855      true,856    );857858    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'AllowListAddressAdded');859  }860861  /**862   * Removes an address from allow list863   *864   * @param signer keyring of signer865   * @param collectionId ID of collection866   * @param addressObj address to remove from the allow list867   * @returns ```true``` if extrinsic success, otherwise ```false```868   */869  async removeFromAllowList(signer: TSigner, collectionId: number, addressObj: ICrossAccountId): Promise<boolean> {870    const result = await this.helper.executeExtrinsic(871      signer,872      'api.tx.unique.removeFromAllowList', [collectionId, addressObj],873      true,874    );875876    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'AllowListAddressRemoved');877  }878879  /**880   * Sets onchain permissions for selected collection.881   *882   * @param signer keyring of signer883   * @param collectionId ID of collection884   * @param permissions collection permissions object885   * @example setPermissions(aliceKeyring, 10, {access:'AllowList', mintMode: true, nesting: {collectionAdmin: true, tokenOwner: true}});886   * @returns ```true``` if extrinsic success, otherwise ```false```887   */888  async setPermissions(signer: TSigner, collectionId: number, permissions: ICollectionPermissions): Promise<boolean> {889    const result = await this.helper.executeExtrinsic(890      signer,891      'api.tx.unique.setCollectionPermissions', [collectionId, permissions],892      true,893    );894895    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'unique', 'CollectionPermissionSet');896  }897898  /**899   * Enables nesting for selected collection. If `restricted` set, you can nest only tokens from specified collections.900   *901   * @param signer keyring of signer902   * @param collectionId ID of collection903   * @param permissions nesting permissions object904   * @example enableNesting(aliceKeyring, 10, {collectionAdmin: true, tokenOwner: true});905   * @returns ```true``` if extrinsic success, otherwise ```false```906   */907  async enableNesting(signer: TSigner, collectionId: number, permissions: INestingPermissions): Promise<boolean> {908    return await this.setPermissions(signer, collectionId, {nesting: permissions});909  }910911  /**912   * Disables nesting for selected collection.913   *914   * @param signer keyring of signer915   * @param collectionId ID of collection916   * @example disableNesting(aliceKeyring, 10);917   * @returns ```true``` if extrinsic success, otherwise ```false```918   */919  async disableNesting(signer: TSigner, collectionId: number): Promise<boolean> {920    return await this.setPermissions(signer, collectionId, {nesting: {tokenOwner: false, collectionAdmin: false}});921  }922923  /**924   * Sets onchain properties to the collection.925   *926   * @param signer keyring of signer927   * @param collectionId ID of collection928   * @param properties array of property objects929   * @example setProperties(aliceKeyring, 10, [{key: "gender", value: "male"}]);930   * @returns ```true``` if extrinsic success, otherwise ```false```931   */932  async setProperties(signer: TSigner, collectionId: number, properties: IProperty[]): Promise<boolean> {933    const result = await this.helper.executeExtrinsic(934      signer,935      'api.tx.unique.setCollectionProperties', [collectionId, properties],936      true,937    );938939    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionPropertySet');940  }941942  /**943   * Get collection properties.944   * 945   * @param collectionId ID of collection946   * @param propertyKeys optionally filter the returned properties to only these keys947   * @example getProperties(1219, ['location', 'date', 'time', 'isParadise']);948   * @returns array of key-value pairs949   */950  async getProperties(collectionId: number, propertyKeys: string[] | null = null): Promise<IProperty[]> {951    return (await this.helper.callRpc('api.rpc.unique.collectionProperties', [collectionId, ...(propertyKeys === null ? [] : [propertyKeys])])).toHuman();952  }953954  /**955   * Deletes onchain properties from the collection.956   *957   * @param signer keyring of signer958   * @param collectionId ID of collection959   * @param propertyKeys array of property keys to delete960   * @example deleteProperties(aliceKeyring, 10, ["gender", "age"]);961   * @returns ```true``` if extrinsic success, otherwise ```false```962   */963  async deleteProperties(signer: TSigner, collectionId: number, propertyKeys: string[]): Promise<boolean> {964    const result = await this.helper.executeExtrinsic(965      signer,966      'api.tx.unique.deleteCollectionProperties', [collectionId, propertyKeys],967      true,968    );969970    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionPropertyDeleted');971  }972973  /**974   * Changes the owner of the token.975   *976   * @param signer keyring of signer977   * @param collectionId ID of collection978   * @param tokenId ID of token979   * @param addressObj address of a new owner980   * @param amount amount of tokens to be transfered. For NFT must be set to 1n981   * @example transferToken(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."})982   * @returns true if the token success, otherwise false983   */984  async transferToken(signer: TSigner, collectionId: number, tokenId: number, addressObj: ICrossAccountId, amount=1n): Promise<boolean> {985    const result = await this.helper.executeExtrinsic(986      signer,987      'api.tx.unique.transfer', [addressObj, collectionId, tokenId, amount],988      true, // `Unable to transfer token #${tokenId} from collection #${collectionId}`,989    );990991    return this.helper.util.isTokenTransferSuccess(result.result.events, collectionId, tokenId, {Substrate: typeof signer === 'string' ? signer : signer.address}, addressObj, amount);992  }993994  /**995   *996   * Change ownership of a token(s) on behalf of the owner.997   *998   * @param signer keyring of signer999   * @param collectionId ID of collection1000   * @param tokenId ID of token1001   * @param fromAddressObj address on behalf of which the token will be sent1002   * @param toAddressObj new token owner1003   * @param amount amount of tokens to be transfered. For NFT must be set to 1n1004   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg"}, {Ethereum: "0x9F0583DbB85..."})1005   * @returns true if the token success, otherwise false1006   */1007  async transferTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1008    const result = await this.helper.executeExtrinsic(1009      signer,1010      'api.tx.unique.transferFrom', [fromAddressObj, toAddressObj, collectionId, tokenId, amount],1011      true, // `Unable to transfer token #${tokenId} from collection #${collectionId}`,1012    );1013    return this.helper.util.isTokenTransferSuccess(result.result.events, collectionId, tokenId, fromAddressObj, toAddressObj, amount);1014  }10151016  /**1017   *1018   * Destroys a concrete instance of NFT/RFT or burns a specified amount of fungible tokens.1019   *1020   * @param signer keyring of signer1021   * @param collectionId ID of collection1022   * @param tokenId ID of token1023   * @param amount amount of tokens to be burned. For NFT must be set to 1n1024   * @example burnToken(aliceKeyring, 10, 5);1025   * @returns ```true``` and burnt token number is extrinsic success. Otherwise ```false``` and ```null```1026   */1027  async burnToken(signer: TSigner, collectionId: number, tokenId: number, amount=1n): Promise<{1028    success: boolean,1029    token: number | null1030  }> {1031    const burnResult = await this.helper.executeExtrinsic(1032      signer,1033      'api.tx.unique.burnItem', [collectionId, tokenId, amount],1034      true, // `Unable to burn token for ${label}`,1035    );1036    const burnedTokens = this.helper.util.extractTokensFromBurnResult(burnResult);1037    if (burnedTokens.tokens.length > 1) throw Error('Burned multiple tokens');1038    return {success: burnedTokens.success, token: burnedTokens.tokens.length > 0 ? burnedTokens.tokens[0] : null};1039  }10401041  /**1042   * Destroys a concrete instance of NFT on behalf of the owner1043   *1044   * @param signer keyring of signer1045   * @param collectionId ID of collection1046   * @param tokenId ID of token1047   * @param fromAddressObj address on behalf of which the token will be burnt1048   * @param amount amount of tokens to be burned. For NFT must be set to 1n1049   * @example burnTokenFrom(aliceKeyring, 10, {Substrate: "5DyN4Y92vZCjv38fg..."}, 5, {Ethereum: "0x9F0583DbB85..."})1050   * @returns ```true``` if extrinsic success, otherwise ```false```1051   */1052  async burnTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1053    const burnResult = await this.helper.executeExtrinsic(1054      signer,1055      'api.tx.unique.burnFrom', [collectionId, fromAddressObj, tokenId, amount],1056      true, // `Unable to burn token from for ${label}`,1057    );1058    const burnedTokens = this.helper.util.extractTokensFromBurnResult(burnResult);1059    return burnedTokens.success && burnedTokens.tokens.length > 0;1060  }10611062  /**1063   * Set, change, or remove approved address to transfer the ownership of the NFT.1064   *1065   * @param signer keyring of signer1066   * @param collectionId ID of collection1067   * @param tokenId ID of token1068   * @param toAddressObj Substrate or Ethereum address which gets approved use of the signer's tokens1069   * @param amount amount of token to be approved. For NFT must be set to 1n1070   * @returns ```true``` if extrinsic success, otherwise ```false```1071   */1072  async approveToken(signer: IKeyringPair, collectionId: number, tokenId: number, toAddressObj: ICrossAccountId, amount=1n) {1073    const approveResult = await this.helper.executeExtrinsic(1074      signer,1075      'api.tx.unique.approve', [toAddressObj, collectionId, tokenId, amount],1076      true, // `Unable to approve token for ${label}`,1077    );10781079    return this.helper.util.findCollectionInEvents(approveResult.result.events, collectionId, 'common', 'Approved');1080  }10811082  /**1083   * Get the amount of token pieces approved to transfer or burn. Normally 0.1084   *1085   * @param collectionId ID of collection1086   * @param tokenId ID of token1087   * @param toAccountObj address which is approved to use token pieces1088   * @param fromAccountObj address which may have allowed the use of its owned tokens1089   * @example getTokenApprovedPieces(10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, {Substrate: "5ERZNF88Mm7UGfPP3mdG..."})1090   * @returns number of approved to transfer pieces1091   */1092  async getTokenApprovedPieces(collectionId: number, tokenId: number, toAccountObj: ICrossAccountId, fromAccountObj: ICrossAccountId): Promise<bigint> {1093    return (await this.helper.callRpc('api.rpc.unique.allowance', [collectionId, fromAccountObj, toAccountObj, tokenId])).toBigInt();1094  }10951096  /**1097   * Get the last created token ID in a collection1098   *1099   * @param collectionId ID of collection1100   * @example getLastTokenId(10);1101   * @returns id of the last created token1102   */1103  async getLastTokenId(collectionId: number): Promise<number> {1104    return (await this.helper.callRpc('api.rpc.unique.lastTokenId', [collectionId])).toNumber();1105  }11061107  /**1108   * Check if token exists1109   *1110   * @param collectionId ID of collection1111   * @param tokenId ID of token1112   * @example isTokenExists(10, 20);1113   * @returns true if the token exists, otherwise false1114   */1115  async isTokenExists(collectionId: number, tokenId: number): Promise<boolean> {1116    return (await this.helper.callRpc('api.rpc.unique.tokenExists', [collectionId, tokenId])).toJSON();1117  }1118}11191120class NFTnRFT extends CollectionGroup {1121  /**1122   * Get tokens owned by account1123   *1124   * @param collectionId ID of collection1125   * @param addressObj tokens owner1126   * @example getTokensByAddress(10, {Substrate: "5DyN4Y92vZCjv38fg..."})1127   * @returns array of token ids owned by account1128   */1129  async getTokensByAddress(collectionId: number, addressObj: ICrossAccountId): Promise<number[]> {1130    return (await this.helper.callRpc('api.rpc.unique.accountTokens', [collectionId, addressObj])).toJSON();1131  }11321133  /**1134   * Get token data1135   *1136   * @param collectionId ID of collection1137   * @param tokenId ID of token1138   * @param propertyKeys optionally filter the token properties to only these keys1139   * @param blockHashAt optionally query the data at some block with this hash1140   * @example getToken(10, 5);1141   * @returns human readable token data1142   */1143  async getToken(collectionId: number, tokenId: number, propertyKeys: string[] = [], blockHashAt?: string): Promise<{1144    properties: IProperty[];1145    owner: CrossAccountId;1146    normalizedOwner: CrossAccountId;1147  }| null> {1148    let tokenData;1149    if(typeof blockHashAt === 'undefined') {1150      tokenData = await this.helper.callRpc('api.rpc.unique.tokenData', [collectionId, tokenId]);1151    }1152    else {1153      if(propertyKeys.length == 0) {1154        const collection = (await this.helper.callRpc('api.rpc.unique.collectionById', [collectionId])).toHuman();1155        if(!collection) return null;1156        propertyKeys = collection.tokenPropertyPermissions.map((x: ITokenPropertyPermission) => x.key);1157      }1158      tokenData = await this.helper.callRpc('api.rpc.unique.tokenData', [collectionId, tokenId, propertyKeys, blockHashAt]);1159    }1160    tokenData = tokenData.toHuman();1161    if (tokenData === null || tokenData.owner === null) return null;1162    const owner = {} as any;1163    for (const key of Object.keys(tokenData.owner)) {1164      owner[key.toLocaleLowerCase()] = new CrossAccountId(tokenData.owner[key]).withNormalizedSubstrate();1165    }1166    tokenData.normalizedOwner = CrossAccountId.fromLowerCaseKeys(owner);1167    return tokenData;1168  }11691170  /**1171   * Set permissions to change token properties1172   *1173   * @param signer keyring of signer1174   * @param collectionId ID of collection1175   * @param permissions permissions to change a property by the collection admin or token owner1176   * @example setTokenPropertyPermissions(1177   *   aliceKeyring, 10, [{key: "gender", permission: {tokenOwner: true, mutable: true, collectionAdmin: true}}]1178   * )1179   * @returns true if extrinsic success otherwise false1180   */1181  async setTokenPropertyPermissions(signer: TSigner, collectionId: number, permissions: ITokenPropertyPermission[]): Promise<boolean> {1182    const result = await this.helper.executeExtrinsic(1183      signer,1184      'api.tx.unique.setTokenPropertyPermissions', [collectionId, permissions],1185      true,1186    );11871188    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'PropertyPermissionSet');1189  }11901191  /**1192   * Get token property permissions.1193   * 1194   * @param collectionId ID of collection1195   * @param propertyKeys optionally filter the returned property permissions to only these keys1196   * @example getPropertyPermissions(1219, ['location', 'date', 'time', 'isParadise']);1197   * @returns array of key-permission pairs1198   */1199  async getPropertyPermissions(collectionId: number, propertyKeys: string[] | null = null): Promise<ITokenPropertyPermission[]> {1200    return (await this.helper.callRpc('api.rpc.unique.propertyPermissions', [collectionId, ...(propertyKeys === null ? [] : [propertyKeys])])).toHuman();1201  }12021203  /**1204   * Set token properties1205   *1206   * @param signer keyring of signer1207   * @param collectionId ID of collection1208   * @param tokenId ID of token1209   * @param properties key-value pairs of metadata which to add to a token. Keys must be permitted in the collection1210   * @example setTokenProperties(aliceKeyring, 10, 5, [{key: "gender", value: "female"}, {key: "age", value: "23"}])1211   * @returns ```true``` if extrinsic success, otherwise ```false```1212   */1213  async setTokenProperties(signer: TSigner, collectionId: number, tokenId: number, properties: IProperty[]): Promise<boolean> {1214    const result = await this.helper.executeExtrinsic(1215      signer,1216      'api.tx.unique.setTokenProperties', [collectionId, tokenId, properties],1217      true,1218    );12191220    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'TokenPropertySet');1221  }12221223  /**1224   * Get properties, metadata assigned to a token.1225   * 1226   * @param collectionId ID of collection1227   * @param tokenId ID of token1228   * @param propertyKeys optionally filter the returned properties to only these keys1229   * @example getTokenProperties(1219, ['location', 'date', 'time', 'isParadise']);1230   * @returns array of key-value pairs1231   */1232  async getTokenProperties(collectionId: number, tokenId: number, propertyKeys: string[] | null = null): Promise<IProperty[]> {1233    return (await this.helper.callRpc('api.rpc.unique.tokenProperties', [collectionId, tokenId, ...(propertyKeys === null ? [] : [propertyKeys])])).toHuman();1234  }12351236  /**1237   * Delete the provided properties of a token1238   * @param signer keyring of signer1239   * @param collectionId ID of collection1240   * @param tokenId ID of token1241   * @param propertyKeys property keys to be deleted1242   * @example deleteTokenProperties(aliceKeyring, 10, 5, ["gender", "age"])1243   * @returns ```true``` if extrinsic success, otherwise ```false```1244   */1245  async deleteTokenProperties(signer: TSigner, collectionId: number, tokenId: number, propertyKeys: string[]): Promise<boolean> {1246    const result = await this.helper.executeExtrinsic(1247      signer,1248      'api.tx.unique.deleteTokenProperties', [collectionId, tokenId, propertyKeys],1249      true,1250    );12511252    return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'TokenPropertyDeleted');1253  }12541255  /**1256   * Mint new collection1257   *1258   * @param signer keyring of signer1259   * @param collectionOptions basic collection options and properties1260   * @param mode NFT or RFT type of a collection1261   * @example mintCollection(aliceKeyring, {name: 'New', description: "New collection", tokenPrefix: "NEW"}, "NFT")1262   * @returns object of the created collection1263   */1264  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions, mode: 'NFT' | 'RFT'): Promise<UniqueBaseCollection> {1265    collectionOptions = JSON.parse(JSON.stringify(collectionOptions)) as ICollectionCreationOptions; // Clone object1266    collectionOptions.mode = (mode === 'NFT') ? {nft: null} : {refungible: null};1267    for (const key of ['name', 'description', 'tokenPrefix']) {1268      if (typeof collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] === 'string') collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] = this.helper.util.str2vec(collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] as string);1269    }1270    const creationResult = await this.helper.executeExtrinsic(1271      signer,1272      'api.tx.unique.createCollectionEx', [collectionOptions],1273      true, // errorLabel,1274    );1275    return this.getCollectionObject(this.helper.util.extractCollectionIdFromCreationResult(creationResult));1276  }12771278  getCollectionObject(_collectionId: number): any {1279    return null;1280  }12811282  getTokenObject(_collectionId: number, _tokenId: number): any {1283    return null;1284  }1285}128612871288class NFTGroup extends NFTnRFT {1289  /**1290   * Get collection object1291   * @param collectionId ID of collection1292   * @example getCollectionObject(2);1293   * @returns instance of UniqueNFTCollection1294   */1295  getCollectionObject(collectionId: number): UniqueNFTCollection {1296    return new UniqueNFTCollection(collectionId, this.helper);1297  }12981299  /**1300   * Get token object1301   * @param collectionId ID of collection1302   * @param tokenId ID of token1303   * @example getTokenObject(10, 5);1304   * @returns instance of UniqueNFTToken1305   */1306  getTokenObject(collectionId: number, tokenId: number): UniqueNFToken {1307    return new UniqueNFToken(tokenId, this.getCollectionObject(collectionId));1308  }13091310  /**1311   * Get token's owner1312   * @param collectionId ID of collection1313   * @param tokenId ID of token1314   * @param blockHashAt optionally query the data at the block with this hash1315   * @example getTokenOwner(10, 5);1316   * @returns Address in CrossAccountId format, e.g. {Substrate: "5DnSF6RRjwteE3BrCj..."}1317   */1318  async getTokenOwner(collectionId: number, tokenId: number, blockHashAt?: string): Promise<CrossAccountId> {1319    let owner;1320    if (typeof blockHashAt === 'undefined') {1321      owner = await this.helper.callRpc('api.rpc.unique.tokenOwner', [collectionId, tokenId]);1322    } else {1323      owner = await this.helper.callRpc('api.rpc.unique.tokenOwner', [collectionId, tokenId, blockHashAt]);1324    }1325    return CrossAccountId.fromLowerCaseKeys(owner.toJSON());1326  }13271328  /**1329   * Is token approved to transfer1330   * @param collectionId ID of collection1331   * @param tokenId ID of token1332   * @param toAccountObj address to be approved1333   * @returns ```true``` if extrinsic success, otherwise ```false```1334   */1335  async isTokenApproved(collectionId: number, tokenId: number, toAccountObj: ICrossAccountId): Promise<boolean> {1336    return (await this.getTokenApprovedPieces(collectionId, tokenId, toAccountObj, await this.getTokenOwner(collectionId, tokenId))) === 1n;1337  }13381339  /**1340   * Changes the owner of the token.1341   *1342   * @param signer keyring of signer1343   * @param collectionId ID of collection1344   * @param tokenId ID of token1345   * @param addressObj address of a new owner1346   * @example transferToken(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."})1347   * @returns ```true``` if extrinsic success, otherwise ```false```1348   */1349  async transferToken(signer: TSigner, collectionId: number, tokenId: number, addressObj: ICrossAccountId): Promise<boolean> {1350    return await super.transferToken(signer, collectionId, tokenId, addressObj, 1n);1351  }13521353  /**1354   *1355   * Change ownership of a NFT on behalf of the owner.1356   *1357   * @param signer keyring of signer1358   * @param collectionId ID of collection1359   * @param tokenId ID of token1360   * @param fromAddressObj address on behalf of which the token will be sent1361   * @param toAddressObj new token owner1362   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, {Ethereum: "0x9F0583DbB85..."})1363   * @returns ```true``` if extrinsic success, otherwise ```false```1364   */1365  async transferTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId): Promise<boolean> {1366    return await super.transferTokenFrom(signer, collectionId, tokenId, fromAddressObj, toAddressObj, 1n);1367  }13681369  /**1370   * Recursively find the address that owns the token1371   * @param collectionId ID of collection1372   * @param tokenId ID of token1373   * @param blockHashAt1374   * @example getTokenTopmostOwner(10, 5);1375   * @returns address in CrossAccountId format, e.g. {Substrate: "5DyN4Y92vZCjv38fg..."}1376   */1377  async getTokenTopmostOwner(collectionId: number, tokenId: number, blockHashAt?: string): Promise<CrossAccountId | null> {1378    let owner;1379    if (typeof blockHashAt === 'undefined') {1380      owner = await this.helper.callRpc('api.rpc.unique.topmostTokenOwner', [collectionId, tokenId]);1381    } else {1382      owner = await this.helper.callRpc('api.rpc.unique.topmostTokenOwner', [collectionId, tokenId, blockHashAt]);1383    }13841385    if (owner === null) return null;13861387    return owner.toHuman();1388  }13891390  /**1391   * Get tokens nested in the provided token1392   * @param collectionId ID of collection1393   * @param tokenId ID of token1394   * @param blockHashAt optionally query the data at the block with this hash1395   * @example getTokenChildren(10, 5);1396   * @returns tokens whose depth of nesting is <= 51397   */1398  async getTokenChildren(collectionId: number, tokenId: number, blockHashAt?: string): Promise<IToken[]> {1399    let children;1400    if(typeof blockHashAt === 'undefined') {1401      children = await this.helper.callRpc('api.rpc.unique.tokenChildren', [collectionId, tokenId]);1402    } else {1403      children = await this.helper.callRpc('api.rpc.unique.tokenChildren', [collectionId, tokenId, blockHashAt]);1404    }14051406    return children.toJSON().map((x: any) => {1407      return {collectionId: x.collection, tokenId: x.token};1408    });1409  }14101411  /**1412   * Nest one token into another1413   * @param signer keyring of signer1414   * @param tokenObj token to be nested1415   * @param rootTokenObj token to be parent1416   * @example nestToken(aliceKeyring, {collectionId: 10, tokenId: 5}, {collectionId: 10, tokenId: 4});1417   * @returns ```true``` if extrinsic success, otherwise ```false```1418   */1419  async nestToken(signer: TSigner, tokenObj: IToken, rootTokenObj: IToken): Promise<boolean> {1420    const rootTokenAddress = this.helper.util.getTokenAccount(rootTokenObj);1421    const result = await this.transferToken(signer, tokenObj.collectionId, tokenObj.tokenId, rootTokenAddress);1422    if(!result) {1423      throw Error('Unable to nest token!');1424    }1425    return result;1426  }14271428  /**1429   * Remove token from nested state1430   * @param signer keyring of signer1431   * @param tokenObj token to unnest1432   * @param rootTokenObj parent of a token1433   * @param toAddressObj address of a new token owner1434   * @example unnestToken(aliceKeyring, {collectionId: 10, tokenId: 5}, {collectionId: 10, tokenId: 4}, {Substrate: "5DyN4Y92vZCjv38fg..."});1435   * @returns ```true``` if extrinsic success, otherwise ```false```1436   */1437  async unnestToken(signer: TSigner, tokenObj: IToken, rootTokenObj: IToken, toAddressObj: ICrossAccountId): Promise<boolean> {1438    const rootTokenAddress = this.helper.util.getTokenAccount(rootTokenObj);1439    const result = await this.transferTokenFrom(signer, tokenObj.collectionId, tokenObj.tokenId, rootTokenAddress, toAddressObj);1440    if(!result) {1441      throw Error('Unable to unnest token!');1442    }1443    return result;1444  }14451446  /**1447   * Mint new collection1448   * @param signer keyring of signer1449   * @param collectionOptions Collection options1450   * @example1451   * mintCollection(aliceKeyring, {1452   *   name: 'New',1453   *   description: 'New collection',1454   *   tokenPrefix: 'NEW',1455   * })1456   * @returns object of the created collection1457   */1458  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions = {}): Promise<UniqueNFTCollection> {1459    return await super.mintCollection(signer, collectionOptions, 'NFT') as UniqueNFTCollection;1460  }14611462  /**1463   * Mint new token1464   * @param signer keyring of signer1465   * @param data token data1466   * @returns created token object1467   */1468  async mintToken(signer: TSigner, data: { collectionId: number; owner: ICrossAccountId | string; properties?: IProperty[]; }): Promise<UniqueNFToken> {1469    const creationResult = await this.helper.executeExtrinsic(1470      signer,1471      'api.tx.unique.createItem', [data.collectionId, (typeof data.owner === 'string') ? {Substrate: data.owner} : data.owner, {1472        nft: {1473          properties: data.properties,1474        },1475      }],1476      true,1477    );1478    const createdTokens = this.helper.util.extractTokensFromCreationResult(creationResult);1479    if (createdTokens.tokens.length > 1) throw Error('Minted multiple tokens');1480    if (createdTokens.tokens.length < 1) throw Error('No tokens minted');1481    return this.getTokenObject(data.collectionId, createdTokens.tokens[0].tokenId);1482  }14831484  /**1485   * Mint multiple NFT tokens1486   * @param signer keyring of signer1487   * @param collectionId ID of collection1488   * @param tokens array of tokens with owner and properties1489   * @example1490   * mintMultipleTokens(aliceKeyring, 10, [{1491   *     owner: {Substrate: "5DyN4Y92vZCjv38fg..."},1492   *     properties: [{key: "gender", value: "male"},{key: "age", value: "45"}],1493   *   },{1494   *     owner: {Ethereum: "0x9F0583DbB855d..."},1495   *     properties: [{key: "gender", value: "female"},{key: "age", value: "22"}],1496   * }]);1497   * @returns ```true``` if extrinsic success, otherwise ```false```1498   */1499  async mintMultipleTokens(signer: TSigner, collectionId: number, tokens: {owner: ICrossAccountId, properties?: IProperty[]}[]): Promise<UniqueNFToken[]> {1500    const creationResult = await this.helper.executeExtrinsic(1501      signer,1502      'api.tx.unique.createMultipleItemsEx', [collectionId, {NFT: tokens}],1503      true,1504    );1505    const collection = this.getCollectionObject(collectionId);1506    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1507  }15081509  /**1510   * Mint multiple NFT tokens with one owner1511   * @param signer keyring of signer1512   * @param collectionId ID of collection1513   * @param owner tokens owner1514   * @param tokens array of tokens with owner and properties1515   * @example1516   * mintMultipleTokensWithOneOwner(aliceKeyring, 10, "5DyN4Y92vZCjv38fg...", [{1517   *   properties: [{1518   *   key: "gender",1519   *   value: "female",1520   *  },{1521   *   key: "age",1522   *   value: "33",1523   *  }],1524   * }]);1525   * @returns array of newly created tokens1526   */1527  async mintMultipleTokensWithOneOwner(signer: TSigner, collectionId: number, owner: ICrossAccountId, tokens: {properties?: IProperty[]}[]): Promise<UniqueNFToken[]> {1528    const rawTokens = [];1529    for (const token of tokens) {1530      const raw = {NFT: {properties: token.properties}};1531      rawTokens.push(raw);1532    }1533    const creationResult = await this.helper.executeExtrinsic(1534      signer,1535      'api.tx.unique.createMultipleItems', [collectionId, owner, rawTokens],1536      true,1537    );1538    const collection = this.getCollectionObject(collectionId);1539    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1540  }15411542  /**1543   * Set, change, or remove approved address to transfer the ownership of the NFT.1544   *1545   * @param signer keyring of signer1546   * @param collectionId ID of collection1547   * @param tokenId ID of token1548   * @param toAddressObj address to approve1549   * @example approveToken(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."})1550   * @returns ```true``` if extrinsic success, otherwise ```false```1551   */1552  async approveToken(signer: IKeyringPair, collectionId: number, tokenId: number, toAddressObj: ICrossAccountId) {1553    return super.approveToken(signer, collectionId, tokenId, toAddressObj, 1n);1554  }1555}155615571558class RFTGroup extends NFTnRFT {1559  /**1560   * Get collection object1561   * @param collectionId ID of collection1562   * @example getCollectionObject(2);1563   * @returns instance of UniqueRFTCollection1564   */1565  getCollectionObject(collectionId: number): UniqueRFTCollection {1566    return new UniqueRFTCollection(collectionId, this.helper);1567  }15681569  /**1570   * Get token object1571   * @param collectionId ID of collection1572   * @param tokenId ID of token1573   * @example getTokenObject(10, 5);1574   * @returns instance of UniqueNFTToken1575   */1576  getTokenObject(collectionId: number, tokenId: number): UniqueRFToken {1577    return new UniqueRFToken(tokenId, this.getCollectionObject(collectionId));1578  }15791580  /**1581   * Get top 10 token owners with the largest number of pieces1582   * @param collectionId ID of collection1583   * @param tokenId ID of token1584   * @example getTokenTop10Owners(10, 5);1585   * @returns array of top 10 owners1586   */1587  async getTokenTop10Owners(collectionId: number, tokenId: number): Promise<CrossAccountId[]> {1588    return (await this.helper.callRpc('api.rpc.unique.tokenOwners', [collectionId, tokenId])).toJSON().map(CrossAccountId.fromLowerCaseKeys);1589  }15901591  /**1592   * Get number of pieces owned by address1593   * @param collectionId ID of collection1594   * @param tokenId ID of token1595   * @param addressObj address token owner1596   * @example getTokenBalance(10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."});1597   * @returns number of pieces ownerd by address1598   */1599  async getTokenBalance(collectionId: number, tokenId: number, addressObj: ICrossAccountId): Promise<bigint> {1600    return (await this.helper.callRpc('api.rpc.unique.balance', [collectionId, addressObj, tokenId])).toBigInt();1601  }16021603  /**1604   * Transfer pieces of token to another address1605   * @param signer keyring of signer1606   * @param collectionId ID of collection1607   * @param tokenId ID of token1608   * @param addressObj address of a new owner1609   * @param amount number of pieces to be transfered1610   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, 2000n)1611   * @returns ```true``` if extrinsic success, otherwise ```false```1612   */1613  async transferToken(signer: TSigner, collectionId: number, tokenId: number, addressObj: ICrossAccountId, amount=1n): Promise<boolean> {1614    return await super.transferToken(signer, collectionId, tokenId, addressObj, amount);1615  }16161617  /**1618   * Change ownership of some pieces of RFT on behalf of the owner.1619   * @param signer keyring of signer1620   * @param collectionId ID of collection1621   * @param tokenId ID of token1622   * @param fromAddressObj address on behalf of which the token will be sent1623   * @param toAddressObj new token owner1624   * @param amount number of pieces to be transfered1625   * @example transferTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, {Substrate: "5DfhbVfww7ThF8q6f3i..."}, 2000n)1626   * @returns ```true``` if extrinsic success, otherwise ```false```1627   */1628  async transferTokenFrom(signer: TSigner, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1629    return await super.transferTokenFrom(signer, collectionId, tokenId, fromAddressObj, toAddressObj, amount);1630  }16311632  /**1633   * Mint new collection1634   * @param signer keyring of signer1635   * @param collectionOptions Collection options1636   * @example1637   * mintCollection(aliceKeyring, {1638   *   name: 'New',1639   *   description: 'New collection',1640   *   tokenPrefix: 'NEW',1641   * })1642   * @returns object of the created collection1643   */1644  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions = {}): Promise<UniqueRFTCollection> {1645    return await super.mintCollection(signer, collectionOptions, 'RFT') as UniqueRFTCollection;1646  }16471648  /**1649   * Mint new token1650   * @param signer keyring of signer1651   * @param data token data1652   * @example mintToken(aliceKeyring, {collectionId: 10, owner: {Substrate: '5GHoZe9c73RYbVzq...'}, pieces: 10000n});1653   * @returns created token object1654   */1655  async mintToken(signer: TSigner, data: { collectionId: number; owner: ICrossAccountId | string; pieces: bigint; properties?: IProperty[]; }): Promise<UniqueRFToken> {1656    const creationResult = await this.helper.executeExtrinsic(1657      signer,1658      'api.tx.unique.createItem', [data.collectionId, (typeof data.owner === 'string') ? {Substrate: data.owner} : data.owner, {1659        refungible: {1660          pieces: data.pieces,1661          properties: data.properties,1662        },1663      }],1664      true,1665    );1666    const createdTokens = this.helper.util.extractTokensFromCreationResult(creationResult);1667    if (createdTokens.tokens.length > 1) throw Error('Minted multiple tokens');1668    if (createdTokens.tokens.length < 1) throw Error('No tokens minted');1669    return this.getTokenObject(data.collectionId, createdTokens.tokens[0].tokenId);1670  }16711672  async mintMultipleTokens(signer: TSigner, collectionId: number, tokens: {owner: ICrossAccountId, pieces: bigint, properties?: IProperty[]}[]): Promise<UniqueRFToken[]> {1673    throw Error('Not implemented');1674    const creationResult = await this.helper.executeExtrinsic(1675      signer,1676      'api.tx.unique.createMultipleItemsEx', [collectionId, {RefungibleMultipleOwners: tokens}],1677      true, // `Unable to mint RFT tokens for ${label}`,1678    );1679    const collection = this.getCollectionObject(collectionId);1680    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1681  }16821683  /**1684   * Mint multiple RFT tokens with one owner1685   * @param signer keyring of signer1686   * @param collectionId ID of collection1687   * @param owner tokens owner1688   * @param tokens array of tokens with properties and pieces1689   * @example mintMultipleTokensWithOneOwner(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, [{pieces: 100000n, properties: [{key: "gender", value: "male"}]}]);1690   * @returns array of newly created RFT tokens1691   */1692  async mintMultipleTokensWithOneOwner(signer: TSigner, collectionId: number, owner: ICrossAccountId, tokens: {pieces: bigint, properties?: IProperty[]}[]): Promise<UniqueRFToken[]> {1693    const rawTokens = [];1694    for (const token of tokens) {1695      const raw = {ReFungible: {pieces: token.pieces, properties: token.properties}};1696      rawTokens.push(raw);1697    }1698    const creationResult = await this.helper.executeExtrinsic(1699      signer,1700      'api.tx.unique.createMultipleItems', [collectionId, owner, rawTokens],1701      true,1702    );1703    const collection = this.getCollectionObject(collectionId);1704    return this.helper.util.extractTokensFromCreationResult(creationResult).tokens.map((x: IToken) => collection.getTokenObject(x.tokenId));1705  }17061707  /**1708   * Destroys a concrete instance of RFT.1709   * @param signer keyring of signer1710   * @param collectionId ID of collection1711   * @param tokenId ID of token1712   * @param amount number of pieces to be burnt1713   * @example burnToken(aliceKeyring, 10, 5);1714   * @returns ```true``` and burnt token number, if extrinsic is successful. Otherwise ```false``` and ```null```1715   */1716  async burnToken(signer: IKeyringPair, collectionId: number, tokenId: number, amount=1n): Promise<{ success: boolean; token: number | null; }> {1717    return await super.burnToken(signer, collectionId, tokenId, amount);1718  }17191720  /**1721   * Destroys a concrete instance of RFT on behalf of the owner.1722   * @param signer keyring of signer1723   * @param collectionId ID of collection1724   * @param tokenId ID of token1725   * @param fromAddressObj address on behalf of which the token will be burnt1726   * @param amount number of pieces to be burnt1727   * @example burnTokenFrom(aliceKeyring, 10, 5, {Substrate: "5DyN4Y92vZCjv38fg..."}, 2n)1728   * @returns ```true``` if extrinsic success, otherwise ```false```1729   */1730  async burnTokenFrom(signer: IKeyringPair, collectionId: number, tokenId: number, fromAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1731    return await super.burnTokenFrom(signer, collectionId, tokenId, fromAddressObj, amount);1732  }17331734  /**1735   * Set, change, or remove approved address to transfer the ownership of the RFT.1736   *1737   * @param signer keyring of signer1738   * @param collectionId ID of collection1739   * @param tokenId ID of token1740   * @param toAddressObj address to approve1741   * @param amount number of pieces to be approved1742   * @example approveToken(aliceKeyring, 10, 5, {Substrate: "5GHoZe9c73RYbVzq..."}, "", 10000n);1743   * @returns true if the token success, otherwise false1744   */1745  async approveToken(signer: IKeyringPair, collectionId: number, tokenId: number, toAddressObj: ICrossAccountId, amount=1n) {1746    return super.approveToken(signer, collectionId, tokenId, toAddressObj, amount);1747  }17481749  /**1750   * Get total number of pieces1751   * @param collectionId ID of collection1752   * @param tokenId ID of token1753   * @example getTokenTotalPieces(10, 5);1754   * @returns number of pieces1755   */1756  async getTokenTotalPieces(collectionId: number, tokenId: number): Promise<bigint> {1757    return (await this.helper.callRpc('api.rpc.unique.totalPieces', [collectionId, tokenId])).unwrap().toBigInt();1758  }17591760  /**1761   * Change number of token pieces. Signer must be the owner of all token pieces.1762   * @param signer keyring of signer1763   * @param collectionId ID of collection1764   * @param tokenId ID of token1765   * @param amount new number of pieces1766   * @example repartitionToken(aliceKeyring, 10, 5, 12345n);1767   * @returns true if the repartion was success, otherwise false1768   */1769  async repartitionToken(signer: TSigner, collectionId: number, tokenId: number, amount: bigint): Promise<boolean> {1770    const currentAmount = await this.getTokenTotalPieces(collectionId, tokenId);1771    const repartitionResult = await this.helper.executeExtrinsic(1772      signer,1773      'api.tx.unique.repartition', [collectionId, tokenId, amount],1774      true,1775    );1776    if(currentAmount < amount) return this.helper.util.findCollectionInEvents(repartitionResult.result.events, collectionId, 'common', 'ItemCreated');1777    return this.helper.util.findCollectionInEvents(repartitionResult.result.events, collectionId, 'common', 'ItemDestroyed');1778  }1779}178017811782class FTGroup extends CollectionGroup {1783  /**1784   * Get collection object1785   * @param collectionId ID of collection1786   * @example getCollectionObject(2);1787   * @returns instance of UniqueFTCollection1788   */1789  getCollectionObject(collectionId: number): UniqueFTCollection {1790    return new UniqueFTCollection(collectionId, this.helper);1791  }17921793  /**1794   * Mint new fungible collection1795   * @param signer keyring of signer1796   * @param collectionOptions Collection options1797   * @param decimalPoints number of token decimals1798   * @example1799   * mintCollection(aliceKeyring, {1800   *   name: 'New',1801   *   description: 'New collection',1802   *   tokenPrefix: 'NEW',1803   * }, 18)1804   * @returns newly created fungible collection1805   */1806  async mintCollection(signer: TSigner, collectionOptions: ICollectionCreationOptions = {}, decimalPoints = 0): Promise<UniqueFTCollection> {1807    collectionOptions = JSON.parse(JSON.stringify(collectionOptions)) as ICollectionCreationOptions; // Clone object1808    if(collectionOptions.tokenPropertyPermissions) throw Error('Fungible collections has no tokenPropertyPermissions');1809    collectionOptions.mode = {fungible: decimalPoints};1810    for (const key of ['name', 'description', 'tokenPrefix']) {1811      if (typeof collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] === 'string') collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] = this.helper.util.str2vec(collectionOptions[key as 'name' | 'description' | 'tokenPrefix'] as string);1812    }1813    const creationResult = await this.helper.executeExtrinsic(1814      signer,1815      'api.tx.unique.createCollectionEx', [collectionOptions],1816      true,1817    );1818    return this.getCollectionObject(this.helper.util.extractCollectionIdFromCreationResult(creationResult));1819  }18201821  /**1822   * Mint tokens1823   * @param signer keyring of signer1824   * @param collectionId ID of collection1825   * @param owner address owner of new tokens1826   * @param amount amount of tokens to be meanted1827   * @example mintTokens(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq"}, 1000n);1828   * @returns ```true``` if extrinsic success, otherwise ```false```1829   */1830  async mintTokens(signer: TSigner, collectionId: number, amount: bigint, owner: ICrossAccountId | string): Promise<boolean> {1831    const creationResult = await this.helper.executeExtrinsic(1832      signer,1833      'api.tx.unique.createItem', [collectionId, (typeof owner === 'string') ? {Substrate: owner} : owner, {1834        fungible: {1835          value: amount,1836        },1837      }],1838      true, // `Unable to mint fungible tokens for ${label}`,1839    );1840    return this.helper.util.findCollectionInEvents(creationResult.result.events, collectionId, 'common', 'ItemCreated');1841  }18421843  /**1844   * Mint multiple Fungible tokens with one owner1845   * @param signer keyring of signer1846   * @param collectionId ID of collection1847   * @param owner tokens owner1848   * @param tokens array of tokens with properties and pieces1849   * @returns ```true``` if extrinsic success, otherwise ```false```1850   */1851  async mintMultipleTokensWithOneOwner(signer: TSigner, collectionId: number, tokens: {value: bigint}[], owner: ICrossAccountId): Promise<boolean> {1852    const rawTokens = [];1853    for (const token of tokens) {1854      const raw = {Fungible: {Value: token.value}};1855      rawTokens.push(raw);1856    }1857    const creationResult = await this.helper.executeExtrinsic(1858      signer,1859      'api.tx.unique.createMultipleItems', [collectionId, owner, rawTokens],1860      true,1861    );1862    return this.helper.util.findCollectionInEvents(creationResult.result.events, collectionId, 'common', 'ItemCreated');1863  }18641865  /**1866   * Get the top 10 owners with the largest balance for the Fungible collection1867   * @param collectionId ID of collection1868   * @example getTop10Owners(10);1869   * @returns array of ```ICrossAccountId```1870   */1871  async getTop10Owners(collectionId: number): Promise<CrossAccountId[]> {1872    return (await this.helper.callRpc('api.rpc.unique.tokenOwners', [collectionId, 0])).toJSON().map(CrossAccountId.fromLowerCaseKeys);1873  }18741875  /**1876   * Get account balance1877   * @param collectionId ID of collection1878   * @param addressObj address of owner1879   * @example getBalance(10, {Substrate: "5GHoZe9c73RYbVzq..."})1880   * @returns amount of fungible tokens owned by address1881   */1882  async getBalance(collectionId: number, addressObj: ICrossAccountId): Promise<bigint> {1883    return (await this.helper.callRpc('api.rpc.unique.balance', [collectionId, addressObj, 0])).toBigInt();1884  }18851886  /**1887   * Transfer tokens to address1888   * @param signer keyring of signer1889   * @param collectionId ID of collection1890   * @param toAddressObj address recipient1891   * @param amount amount of tokens to be sent1892   * @example transfer(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, 1000n);1893   * @returns ```true``` if extrinsic success, otherwise ```false```1894   */1895  async transfer(signer: TSigner, collectionId: number, toAddressObj: ICrossAccountId, amount=1n) {1896    return await super.transferToken(signer, collectionId, 0, toAddressObj, amount);1897  }18981899  /**1900   * Transfer some tokens on behalf of the owner.1901   * @param signer keyring of signer1902   * @param collectionId ID of collection1903   * @param fromAddressObj address on behalf of which tokens will be sent1904   * @param toAddressObj address where token to be sent1905   * @param amount number of tokens to be sent1906   * @example transferFrom(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, {Substrate: "5DfhbVfww7ThF8q6f3ij..."}, 10000n);1907   * @returns ```true``` if extrinsic success, otherwise ```false```1908   */1909  async transferFrom(signer: TSigner, collectionId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {1910    return await super.transferTokenFrom(signer, collectionId, 0, fromAddressObj, toAddressObj, amount);1911  }19121913  /**1914   * Destroy some amount of tokens1915   * @param signer keyring of signer1916   * @param collectionId ID of collection1917   * @param amount amount of tokens to be destroyed1918   * @example burnTokens(aliceKeyring, 10, 1000n);1919   * @returns ```true``` if extrinsic success, otherwise ```false```1920   */1921  async burnTokens(signer: IKeyringPair, collectionId: number, amount=1n): Promise<boolean> {1922    return (await super.burnToken(signer, collectionId, 0, amount)).success;1923  }19241925  /**1926   * Burn some tokens on behalf of the owner.1927   * @param signer keyring of signer1928   * @param collectionId ID of collection1929   * @param fromAddressObj address on behalf of which tokens will be burnt1930   * @param amount amount of tokens to be burnt1931   * @example burnTokensFrom(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, 1000n);1932   * @returns ```true``` if extrinsic success, otherwise ```false```1933   */1934  async burnTokensFrom(signer: IKeyringPair, collectionId: number, fromAddressObj: ICrossAccountId, amount=1n): Promise<boolean> {1935    return await super.burnTokenFrom(signer, collectionId, 0, fromAddressObj, amount);1936  }19371938  /**1939   * Get total collection supply1940   * @param collectionId1941   * @returns1942   */1943  async getTotalPieces(collectionId: number): Promise<bigint> {1944    return (await this.helper.callRpc('api.rpc.unique.totalPieces', [collectionId, 0])).unwrap().toBigInt();1945  }19461947  /**1948   * Set, change, or remove approved address to transfer tokens.1949   *1950   * @param signer keyring of signer1951   * @param collectionId ID of collection1952   * @param toAddressObj address to be approved1953   * @param amount amount of tokens to be approved1954   * @example approveTokens(aliceKeyring, 10, {Substrate: "5GHoZe9c73RYbVzq..."}, 1000n)1955   * @returns ```true``` if extrinsic success, otherwise ```false```1956   */1957  async approveTokens(signer: IKeyringPair, collectionId: number, toAddressObj: ICrossAccountId, amount=1n) {1958    return super.approveToken(signer, collectionId, 0, toAddressObj, amount);1959  }19601961  /**1962   * Get amount of fungible tokens approved to transfer1963   * @param collectionId ID of collection1964   * @param fromAddressObj owner of tokens1965   * @param toAddressObj the address approved for the transfer of tokens on behalf of the owner1966   * @returns number of tokens approved for the transfer1967   */1968  async getApprovedTokens(collectionId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {1969    return super.getTokenApprovedPieces(collectionId, 0, toAddressObj, fromAddressObj);1970  }1971}197219731974class ChainGroup extends HelperGroup {1975  /**1976   * Get system properties of a chain1977   * @example getChainProperties();1978   * @returns ss58Format, token decimals, and token symbol1979   */1980  getChainProperties(): IChainProperties {1981    const properties = (this.helper.api as any).registry.getChainProperties().toJSON();1982    return {1983      ss58Format: properties.ss58Format.toJSON(),1984      tokenDecimals: properties.tokenDecimals.toJSON(),1985      tokenSymbol: properties.tokenSymbol.toJSON(),1986    };1987  }19881989  /**1990   * Get chain header1991   * @example getLatestBlockNumber();1992   * @returns the number of the last block1993   */1994  async getLatestBlockNumber(): Promise<number> {1995    return (await this.helper.callRpc('api.rpc.chain.getHeader')).number.toNumber();1996  }19971998  /**1999   * Get block hash by block number2000   * @param blockNumber number of block2001   * @example getBlockHashByNumber(12345);2002   * @returns hash of a block2003   */2004  async getBlockHashByNumber(blockNumber: number): Promise<string | null> {2005    const blockHash = (await this.helper.callRpc('api.rpc.chain.getBlockHash', [blockNumber])).toJSON();2006    if(blockHash === '0x0000000000000000000000000000000000000000000000000000000000000000') return null;2007    return blockHash;2008  }20092010  // TODO add docs2011  async getBlock(blockHashOrNumber: string | number): Promise<IBlock | null> {2012    const blockHash = typeof blockHashOrNumber === 'string' ? blockHashOrNumber : await this.getBlockHashByNumber(blockHashOrNumber);2013    if (!blockHash) return null;2014    return (await this.helper.callRpc('api.rpc.chain.getBlock', [blockHash])).toHuman().block;2015  }20162017  /**2018   * Get account nonce2019   * @param address substrate address2020   * @example getNonce("5GrwvaEF5zXb26Fz...");2021   * @returns number, account's nonce2022   */2023  async getNonce(address: TSubstrateAccount): Promise<number> {2024    return (await (this.helper.api as any).query.system.account(address)).nonce.toNumber();2025  }2026}202720282029class BalanceGroup extends HelperGroup {2030  /**2031   * Representation of the native token in the smallest unit - one OPAL (OPL), QUARTZ (QTZ), or UNIQUE (UNQ).2032   * @example getOneTokenNominal()2033   * @returns ```BigInt``` representation of the native token in the smallest unit, e.g. ```1_000_000_000_000_000_000n``` for QTZ.2034   */2035  getOneTokenNominal(): bigint {2036    const chainProperties = this.helper.chain.getChainProperties();2037    return 10n ** BigInt((chainProperties.tokenDecimals || [18])[0]);2038  }20392040  /**2041   * Get substrate address balance2042   * @param address substrate address2043   * @example getSubstrate("5GrwvaEF5zXb26Fz...")2044   * @returns amount of tokens on address2045   */2046  async getSubstrate(address: TSubstrateAccount): Promise<bigint> {2047    return (await this.helper.callRpc('api.query.system.account', [address])).data.free.toBigInt();2048  }20492050  /**2051   * Get full substrate balance including free, miscFrozen, feeFrozen, and reserved2052   * @param address substrate address2053   * @returns2054   */2055  async getSubstrateFull(address: TSubstrateAccount): Promise<ISubstrateBalance> {2056    const accountInfo = (await this.helper.callRpc('api.query.system.account', [address])).data;2057    return {free: accountInfo.free.toBigInt(), miscFrozen: accountInfo.miscFrozen.toBigInt(), feeFrozen: accountInfo.feeFrozen.toBigInt(), reserved: accountInfo.reserved.toBigInt()};2058  }20592060  /**2061   * Get ethereum address balance2062   * @param address ethereum address2063   * @example getEthereum("0x9F0583DbB855d...")2064   * @returns amount of tokens on address2065   */2066  async getEthereum(address: TEthereumAccount): Promise<bigint> {2067    return (await this.helper.callRpc('api.rpc.eth.getBalance', [address])).toBigInt();2068  }20692070  /**2071   * Transfer tokens to substrate address2072   * @param signer keyring of signer2073   * @param address substrate address of a recipient2074   * @param amount amount of tokens to be transfered2075   * @example transferToSubstrate(aliceKeyring, "5GrwvaEF5zXb26Fz...", 100_000_000_000n);2076   * @returns ```true``` if extrinsic success, otherwise ```false```2077   */2078  async transferToSubstrate(signer: TSigner, address: TSubstrateAccount, amount: bigint | string): Promise<boolean> {2079    const result = await this.helper.executeExtrinsic(signer, 'api.tx.balances.transfer', [address, amount], true/*, `Unable to transfer balance from ${this.helper.getSignerAddress(signer)} to ${address}`*/);20802081    let transfer = {from: null, to: null, amount: 0n} as any;2082    result.result.events.forEach(({event: {data, method, section}}) => {2083      if ((section === 'balances') && (method === 'Transfer')) {2084        transfer = {2085          from: this.helper.address.normalizeSubstrate(data[0]),2086          to: this.helper.address.normalizeSubstrate(data[1]),2087          amount: BigInt(data[2]),2088        };2089      }2090    });2091    const isSuccess = this.helper.address.normalizeSubstrate(typeof signer === 'string' ? signer : signer.address) === transfer.from 2092      && this.helper.address.normalizeSubstrate(address) === transfer.to 2093      && BigInt(amount) === transfer.amount;2094    return isSuccess;2095  }2096}209720982099class AddressGroup extends HelperGroup {2100  /**2101   * Normalizes the address to the specified ss58 format, by default ```42```.2102   * @param address substrate address2103   * @param ss58Format format for address conversion, by default ```42```2104   * @example normalizeSubstrate("unjKJQJrRd238pkUZZvzDQrfKuM39zBSnQ5zjAGAGcdRhaJTx") // returns 5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY2105   * @returns substrate address converted to normalized (i.e., starting with 5) or specified explicitly representation2106   */2107  normalizeSubstrate(address: TSubstrateAccount, ss58Format = 42): TSubstrateAccount {2108    return CrossAccountId.normalizeSubstrateAddress(address, ss58Format);2109  }21102111  /**2112   * Get address in the connected chain format2113   * @param address substrate address2114   * @example normalizeSubstrateToChainFormat("5GrwvaEF5zXb26Fz...") // returns unjKJQJrRd238pkUZZ... for Unique Network2115   * @returns address in chain format2116   */2117  normalizeSubstrateToChainFormat(address: TSubstrateAccount): TSubstrateAccount {2118    return this.normalizeSubstrate(address, this.helper.chain.getChainProperties().ss58Format);2119  }21202121  /**2122   * Get substrate mirror of an ethereum address2123   * @param ethAddress ethereum address2124   * @param toChainFormat false for normalized account2125   * @example ethToSubstrate('0x9F0583DbB855d...')2126   * @returns substrate mirror of a provided ethereum address2127   */2128  ethToSubstrate(ethAddress: TEthereumAccount, toChainFormat=false): TSubstrateAccount {2129    return CrossAccountId.translateEthToSub(ethAddress, toChainFormat ? this.helper.chain.getChainProperties().ss58Format : undefined);2130  }21312132  /**2133   * Get ethereum mirror of a substrate address2134   * @param subAddress substrate account2135   * @example substrateToEth("5DnSF6RRjwteE3BrC...")2136   * @returns ethereum mirror of a provided substrate address2137   */2138  substrateToEth(subAddress: TSubstrateAccount): TEthereumAccount {2139    return CrossAccountId.translateSubToEth(subAddress);2140  }2141}21422143class StakingGroup extends HelperGroup {2144  /**2145   * Stake tokens for App Promotion2146   * @param signer keyring of signer2147   * @param amountToStake amount of tokens to stake2148   * @param label extra label for log2149   * @returns2150   */2151  async stake(signer: TSigner, amountToStake: bigint, label?: string): Promise<boolean> {2152    if(typeof label === 'undefined') label = `${signer.address} amount: ${amountToStake}`;2153    const stakeResult = await this.helper.executeExtrinsic(2154      signer, 'api.tx.appPromotion.stake',2155      [amountToStake], true,2156    );2157    // TODO extract info from stakeResult2158    return true;2159  }21602161  /**2162   * Unstake tokens for App Promotion2163   * @param signer keyring of signer2164   * @param amountToUnstake amount of tokens to unstake2165   * @param label extra label for log2166   * @returns block number where balances will be unlocked2167   */2168  async unstake(signer: TSigner, label?: string): Promise<number> {2169    if(typeof label === 'undefined') label = `${signer.address}`;2170    const unstakeResult = await this.helper.executeExtrinsic(2171      signer, 'api.tx.appPromotion.unstake',2172      [], true,2173    );2174    // TODO extract block number fron events2175    return 1;2176  }21772178  /**2179   * Get total staked amount for address2180   * @param address substrate or ethereum address2181   * @returns total staked amount2182   */2183  async getTotalStaked(address?: ICrossAccountId): Promise<bigint> {2184    if (address) return (await this.helper.callRpc('api.rpc.appPromotion.totalStaked', [address])).toBigInt();2185    return (await this.helper.callRpc('api.rpc.appPromotion.totalStaked')).toBigInt();2186  }21872188  /**2189   * Get total staked per block2190   * @param address substrate or ethereum address2191   * @returns array of stakes. `block` – the number of the block in which the stake was made. `amount` - the number of tokens staked in the block2192   */2193  async getTotalStakedPerBlock(address: ICrossAccountId): Promise<IStakingInfo[]> {2194    const rawTotalStakerdPerBlock = await this.helper.callRpc('api.rpc.appPromotion.totalStakedPerBlock', [address]);2195    return rawTotalStakerdPerBlock.map(([block, amount]: any[]) => {2196      return { 2197        block: block.toBigInt(),2198        amount: amount.toBigInt(),2199      };2200    });2201  }22022203  /**2204   * Get total pending unstake amount for address2205   * @param address substrate or ethereum address2206   * @returns total pending unstake amount2207   */2208  async getPendingUnstake(address: ICrossAccountId): Promise<bigint> {2209    return (await this.helper.callRpc('api.rpc.appPromotion.pendingUnstake', [address])).toBigInt();2210  }22112212  /**2213   * Get pending unstake amount per block for address2214   * @param address substrate or ethereum address2215   * @returns array of pending stakes. `block` – the number of the block in which the unstake was made. `amount` - the number of tokens unstaked in the block2216   */2217  async getPendingUnstakePerBlock(address: ICrossAccountId): Promise<IStakingInfo[]> {2218    const rawUnstakedPerBlock = await this.helper.callRpc('api.rpc.appPromotion.pendingUnstakePerBlock', [address]);2219    const result = rawUnstakedPerBlock.map(([block, amount]: any[]) => {2220      return {2221        block: block.toBigInt(),2222        amount: amount.toBigInt(),2223      };2224    });2225    return result;2226  }2227}22282229export class UniqueHelper extends ChainHelperBase {2230  chain: ChainGroup;2231  balance: BalanceGroup;2232  address: AddressGroup;2233  collection: CollectionGroup;2234  nft: NFTGroup;2235  rft: RFTGroup;2236  ft: FTGroup;2237  staking: StakingGroup;22382239  constructor(logger?: ILogger) {2240    super(logger);2241    this.chain = new ChainGroup(this);2242    this.balance = new BalanceGroup(this);2243    this.address = new AddressGroup(this);2244    this.collection = new CollectionGroup(this);2245    this.nft = new NFTGroup(this);2246    this.rft = new RFTGroup(this);2247    this.ft = new FTGroup(this);2248    this.staking = new StakingGroup(this);2249  }2250}225122522253export class UniqueBaseCollection {2254  helper: UniqueHelper;2255  collectionId: number;22562257  constructor(collectionId: number, uniqueHelper: UniqueHelper) {2258    this.collectionId = collectionId;2259    this.helper = uniqueHelper;2260  }22612262  async getData() {2263    return await this.helper.collection.getData(this.collectionId);2264  }22652266  async getLastTokenId() {2267    return await this.helper.collection.getLastTokenId(this.collectionId);2268  }22692270  async isTokenExists(tokenId: number) {2271    return await this.helper.collection.isTokenExists(this.collectionId, tokenId);2272  }22732274  async getAdmins() {2275    return await this.helper.collection.getAdmins(this.collectionId);2276  }22772278  async getAllowList() {2279    return await this.helper.collection.getAllowList(this.collectionId);2280  }22812282  async getEffectiveLimits() {2283    return await this.helper.collection.getEffectiveLimits(this.collectionId);2284  }22852286  async getProperties(propertyKeys: string[] | null = null) {2287    return await this.helper.collection.getProperties(this.collectionId, propertyKeys);2288  }22892290  async getTokenNextSponsored(tokenId: number, addressObj: ICrossAccountId) {2291    return await this.helper.collection.getTokenNextSponsored(this.collectionId, tokenId, addressObj);2292  }22932294  async setSponsor(signer: TSigner, sponsorAddress: TSubstrateAccount) {2295    return await this.helper.collection.setSponsor(signer, this.collectionId, sponsorAddress);2296  }22972298  async confirmSponsorship(signer: TSigner) {2299    return await this.helper.collection.confirmSponsorship(signer, this.collectionId);2300  }23012302  async removeSponsor(signer: TSigner) {2303    return await this.helper.collection.removeSponsor(signer, this.collectionId);2304  }23052306  async setLimits(signer: TSigner, limits: ICollectionLimits) {2307    return await this.helper.collection.setLimits(signer, this.collectionId, limits);2308  }23092310  async changeOwner(signer: TSigner, ownerAddress: TSubstrateAccount) {2311    return await this.helper.collection.changeOwner(signer, this.collectionId, ownerAddress);2312  }23132314  async addAdmin(signer: TSigner, adminAddressObj: ICrossAccountId) {2315    return await this.helper.collection.addAdmin(signer, this.collectionId, adminAddressObj);2316  }23172318  async addToAllowList(signer: TSigner, addressObj: ICrossAccountId) {2319    return await this.helper.collection.addToAllowList(signer, this.collectionId, addressObj);2320  }23212322  async removeFromAllowList(signer: TSigner, addressObj: ICrossAccountId) {2323    return await this.helper.collection.removeFromAllowList(signer, this.collectionId, addressObj);2324  }23252326  async removeAdmin(signer: TSigner, adminAddressObj: ICrossAccountId) {2327    return await this.helper.collection.removeAdmin(signer, this.collectionId, adminAddressObj);2328  }23292330  async setProperties(signer: TSigner, properties: IProperty[]) {2331    return await this.helper.collection.setProperties(signer, this.collectionId, properties);2332  }23332334  async deleteProperties(signer: TSigner, propertyKeys: string[]) {2335    return await this.helper.collection.deleteProperties(signer, this.collectionId, propertyKeys);2336  }23372338  async setPermissions(signer: TSigner, permissions: ICollectionPermissions) {2339    return await this.helper.collection.setPermissions(signer, this.collectionId, permissions);2340  }23412342  async enableNesting(signer: TSigner, permissions: INestingPermissions) {2343    return await this.helper.collection.enableNesting(signer, this.collectionId, permissions);2344  }23452346  async disableNesting(signer: TSigner) {2347    return await this.helper.collection.disableNesting(signer, this.collectionId);2348  }23492350  async burn(signer: TSigner) {2351    return await this.helper.collection.burn(signer, this.collectionId);2352  }2353}235423552356export class UniqueNFTCollection extends UniqueBaseCollection {2357  getTokenObject(tokenId: number) {2358    return new UniqueNFToken(tokenId, this);2359  }23602361  async getTokensByAddress(addressObj: ICrossAccountId) {2362    return await this.helper.nft.getTokensByAddress(this.collectionId, addressObj);2363  }23642365  async getToken(tokenId: number, blockHashAt?: string) {2366    return await this.helper.nft.getToken(this.collectionId, tokenId, [], blockHashAt);2367  }23682369  async getTokenOwner(tokenId: number, blockHashAt?: string) {2370    return await this.helper.nft.getTokenOwner(this.collectionId, tokenId, blockHashAt);2371  }23722373  async getTokenTopmostOwner(tokenId: number, blockHashAt?: string) {2374    return await this.helper.nft.getTokenTopmostOwner(this.collectionId, tokenId, blockHashAt);2375  }23762377  async getTokenChildren(tokenId: number, blockHashAt?: string) {2378    return await this.helper.nft.getTokenChildren(this.collectionId, tokenId, blockHashAt);2379  }23802381  async getPropertyPermissions(propertyKeys: string[] | null = null) {2382    return await this.helper.nft.getPropertyPermissions(this.collectionId, propertyKeys);2383  }23842385  async getTokenProperties(tokenId: number, propertyKeys: string[] | null = null) {2386    return await this.helper.nft.getTokenProperties(this.collectionId, tokenId, propertyKeys);2387  }23882389  async transferToken(signer: TSigner, tokenId: number, addressObj: ICrossAccountId) {2390    return await this.helper.nft.transferToken(signer, this.collectionId, tokenId, addressObj);2391  }23922393  async transferTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2394    return await this.helper.nft.transferTokenFrom(signer, this.collectionId, tokenId, fromAddressObj, toAddressObj);2395  }23962397  async approveToken(signer: TSigner, tokenId: number, toAddressObj: ICrossAccountId) {2398    return await this.helper.nft.approveToken(signer, this.collectionId, tokenId, toAddressObj);2399  }24002401  async isTokenApproved(tokenId: number, toAddressObj: ICrossAccountId) {2402    return await this.helper.nft.isTokenApproved(this.collectionId, tokenId, toAddressObj);2403  }24042405  async mintToken(signer: TSigner, owner: ICrossAccountId = {Substrate: signer.address}, properties?: IProperty[]) {2406    return await this.helper.nft.mintToken(signer, {collectionId: this.collectionId, owner, properties});2407  }24082409  async mintMultipleTokens(signer: TSigner, tokens: {owner: ICrossAccountId, properties?: IProperty[]}[]) {2410    return await this.helper.nft.mintMultipleTokens(signer, this.collectionId, tokens);2411  }24122413  async burnToken(signer: TSigner, tokenId: number) {2414    return await this.helper.nft.burnToken(signer, this.collectionId, tokenId);2415  }24162417  async burnTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId) {2418    return await this.helper.nft.burnTokenFrom(signer, this.collectionId, tokenId, fromAddressObj);2419  }24202421  async setTokenProperties(signer: TSigner, tokenId: number, properties: IProperty[]) {2422    return await this.helper.nft.setTokenProperties(signer, this.collectionId, tokenId, properties);2423  }24242425  async deleteTokenProperties(signer: TSigner, tokenId: number, propertyKeys: string[]) {2426    return await this.helper.nft.deleteTokenProperties(signer, this.collectionId, tokenId, propertyKeys);2427  }24282429  async setTokenPropertyPermissions(signer: TSigner, permissions: ITokenPropertyPermission[]) {2430    return await this.helper.nft.setTokenPropertyPermissions(signer, this.collectionId, permissions);2431  }24322433  async nestToken(signer: TSigner, tokenId: number, toTokenObj: IToken) {2434    return await this.helper.nft.nestToken(signer, {collectionId: this.collectionId, tokenId}, toTokenObj);2435  }24362437  async unnestToken(signer: TSigner, tokenId: number, fromTokenObj: IToken, toAddressObj: ICrossAccountId) {2438    return await this.helper.nft.unnestToken(signer, {collectionId: this.collectionId, tokenId}, fromTokenObj, toAddressObj);2439  }2440}244124422443export class UniqueRFTCollection extends UniqueBaseCollection {2444  getTokenObject(tokenId: number) {2445    return new UniqueRFToken(tokenId, this);2446  }24472448  async getToken(tokenId: number, blockHashAt?: string) {2449    return await this.helper.rft.getToken(this.collectionId, tokenId, [], blockHashAt);2450  }24512452  async getTokensByAddress(addressObj: ICrossAccountId) {2453    return await this.helper.rft.getTokensByAddress(this.collectionId, addressObj);2454  }24552456  async getTop10TokenOwners(tokenId: number) {2457    return await this.helper.rft.getTokenTop10Owners(this.collectionId, tokenId);2458  }24592460  async getTokenBalance(tokenId: number, addressObj: ICrossAccountId) {2461    return await this.helper.rft.getTokenBalance(this.collectionId, tokenId, addressObj);2462  }24632464  async getTokenTotalPieces(tokenId: number) {2465    return await this.helper.rft.getTokenTotalPieces(this.collectionId, tokenId);2466  }24672468  async getTokenApprovedPieces(tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2469    return await this.helper.rft.getTokenApprovedPieces(this.collectionId, tokenId, toAddressObj, fromAddressObj);2470  }24712472  async getPropertyPermissions(propertyKeys: string[] | null = null) {2473    return await this.helper.rft.getPropertyPermissions(this.collectionId, propertyKeys);2474  }24752476  async getTokenProperties(tokenId: number, propertyKeys: string[] | null = null) {2477    return await this.helper.rft.getTokenProperties(this.collectionId, tokenId, propertyKeys);2478  }24792480  async transferToken(signer: TSigner, tokenId: number, addressObj: ICrossAccountId, amount=1n) {2481    return await this.helper.rft.transferToken(signer, this.collectionId, tokenId, addressObj, amount);2482  }24832484  async transferTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {2485    return await this.helper.rft.transferTokenFrom(signer, this.collectionId, tokenId, fromAddressObj, toAddressObj, amount);2486  }24872488  async approveToken(signer: TSigner, tokenId: number, toAddressObj: ICrossAccountId, amount=1n) {2489    return await this.helper.rft.approveToken(signer, this.collectionId, tokenId, toAddressObj, amount);2490  }24912492  async repartitionToken(signer: TSigner, tokenId: number, amount: bigint) {2493    return await this.helper.rft.repartitionToken(signer, this.collectionId, tokenId, amount);2494  }24952496  async mintToken(signer: TSigner, pieces=1n, owner: ICrossAccountId = {Substrate: signer.address}, properties?: IProperty[]) {2497    return await this.helper.rft.mintToken(signer, {collectionId: this.collectionId, owner, pieces, properties});2498  }24992500  async mintMultipleTokens(signer: TSigner, tokens: {pieces: bigint, owner: ICrossAccountId, properties?: IProperty[]}[]) {2501    return await this.helper.rft.mintMultipleTokens(signer, this.collectionId, tokens);2502  }25032504  async burnToken(signer: TSigner, tokenId: number, amount=1n) {2505    return await this.helper.rft.burnToken(signer, this.collectionId, tokenId, amount);2506  }25072508  async burnTokenFrom(signer: TSigner, tokenId: number, fromAddressObj: ICrossAccountId,  amount=1n) {2509    return await this.helper.rft.burnTokenFrom(signer, this.collectionId, tokenId, fromAddressObj, amount);2510  }25112512  async setTokenProperties(signer: TSigner, tokenId: number, properties: IProperty[]) {2513    return await this.helper.rft.setTokenProperties(signer, this.collectionId, tokenId, properties);2514  }25152516  async deleteTokenProperties(signer: TSigner, tokenId: number, propertyKeys: string[]) {2517    return await this.helper.rft.deleteTokenProperties(signer, this.collectionId, tokenId, propertyKeys);2518  }25192520  async setTokenPropertyPermissions(signer: TSigner, permissions: ITokenPropertyPermission[]) {2521    return await this.helper.rft.setTokenPropertyPermissions(signer, this.collectionId, permissions);2522  }2523}252425252526export class UniqueFTCollection extends UniqueBaseCollection {2527  async getBalance(addressObj: ICrossAccountId) {2528    return await this.helper.ft.getBalance(this.collectionId, addressObj);2529  }25302531  async getTotalPieces() {2532    return await this.helper.ft.getTotalPieces(this.collectionId);2533  }25342535  async getApprovedTokens(fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2536    return await this.helper.ft.getApprovedTokens(this.collectionId, fromAddressObj, toAddressObj);2537  }25382539  async getTop10Owners() {2540    return await this.helper.ft.getTop10Owners(this.collectionId);2541  }25422543  async mint(signer: TSigner, amount=1n, owner: ICrossAccountId = {Substrate: signer.address}) {2544    return await this.helper.ft.mintTokens(signer, this.collectionId, amount, owner);2545  }25462547  async mintWithOneOwner(signer: TSigner, tokens: {value: bigint}[], owner: ICrossAccountId = {Substrate: signer.address}) {2548    return await this.helper.ft.mintMultipleTokensWithOneOwner(signer, this.collectionId, tokens, owner);2549  }25502551  async transfer(signer: TSigner, toAddressObj: ICrossAccountId, amount=1n) {2552    return await this.helper.ft.transfer(signer, this.collectionId, toAddressObj, amount);2553  }25542555  async transferFrom(signer: TSigner, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {2556    return await this.helper.ft.transferFrom(signer, this.collectionId, fromAddressObj, toAddressObj, amount);2557  }25582559  async burnTokens(signer: TSigner, amount=1n) {2560    return await this.helper.ft.burnTokens(signer, this.collectionId, amount);2561  }25622563  async burnTokensFrom(signer: TSigner, fromAddressObj: ICrossAccountId, amount=1n) {2564    return await this.helper.ft.burnTokensFrom(signer, this.collectionId, fromAddressObj, amount);2565  }25662567  async approveTokens(signer: TSigner, toAddressObj: ICrossAccountId, amount=1n) {2568    return await this.helper.ft.approveTokens(signer, this.collectionId, toAddressObj, amount);2569  }2570}257125722573export class UniqueBaseToken {2574  collection: UniqueNFTCollection | UniqueRFTCollection;2575  collectionId: number;2576  tokenId: number;25772578  constructor(tokenId: number, collection: UniqueNFTCollection | UniqueRFTCollection) {2579    this.collection = collection;2580    this.collectionId = collection.collectionId;2581    this.tokenId = tokenId;2582  }25832584  async getNextSponsored(addressObj: ICrossAccountId) {2585    return await this.collection.getTokenNextSponsored(this.tokenId, addressObj);2586  }25872588  async getProperties(propertyKeys: string[] | null = null) {2589    return await this.collection.getTokenProperties(this.tokenId, propertyKeys);2590  }25912592  async setProperties(signer: TSigner, properties: IProperty[]) {2593    return await this.collection.setTokenProperties(signer, this.tokenId, properties);2594  }25952596  async deleteProperties(signer: TSigner, propertyKeys: string[]) {2597    return await this.collection.deleteTokenProperties(signer, this.tokenId, propertyKeys);2598  }25992600  nestingAccount() {2601    return this.collection.helper.util.getTokenAccount(this);2602  }2603}260426052606export class UniqueNFToken extends UniqueBaseToken {2607  collection: UniqueNFTCollection;26082609  constructor(tokenId: number, collection: UniqueNFTCollection) {2610    super(tokenId, collection);2611    this.collection = collection;2612  }26132614  async getData(blockHashAt?: string) {2615    return await this.collection.getToken(this.tokenId, blockHashAt);2616  }26172618  async getOwner(blockHashAt?: string) {2619    return await this.collection.getTokenOwner(this.tokenId, blockHashAt);2620  }26212622  async getTopmostOwner(blockHashAt?: string) {2623    return await this.collection.getTokenTopmostOwner(this.tokenId, blockHashAt);2624  }26252626  async getChildren(blockHashAt?: string) {2627    return await this.collection.getTokenChildren(this.tokenId, blockHashAt);2628  }26292630  async nest(signer: TSigner, toTokenObj: IToken) {2631    return await this.collection.nestToken(signer, this.tokenId, toTokenObj);2632  }26332634  async unnest(signer: TSigner, fromTokenObj: IToken, toAddressObj: ICrossAccountId) {2635    return await this.collection.unnestToken(signer, this.tokenId, fromTokenObj, toAddressObj);2636  }26372638  async transfer(signer: TSigner, addressObj: ICrossAccountId) {2639    return await this.collection.transferToken(signer, this.tokenId, addressObj);2640  }26412642  async transferFrom(signer: TSigner, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId) {2643    return await this.collection.transferTokenFrom(signer, this.tokenId, fromAddressObj, toAddressObj);2644  }26452646  async approve(signer: TSigner, toAddressObj: ICrossAccountId) {2647    return await this.collection.approveToken(signer, this.tokenId, toAddressObj);2648  }26492650  async isApproved(toAddressObj: ICrossAccountId) {2651    return await this.collection.isTokenApproved(this.tokenId, toAddressObj);2652  }26532654  async burn(signer: TSigner) {2655    return await this.collection.burnToken(signer, this.tokenId);2656  }26572658  async burnFrom(signer: TSigner, fromAddressObj: ICrossAccountId) {2659    return await this.collection.burnTokenFrom(signer, this.tokenId, fromAddressObj);2660  }2661}26622663export class UniqueRFToken extends UniqueBaseToken {2664  collection: UniqueRFTCollection;26652666  constructor(tokenId: number, collection: UniqueRFTCollection) {2667    super(tokenId, collection);2668    this.collection = collection;2669  }26702671  async getData(blockHashAt?: string) {2672    return await this.collection.getToken(this.tokenId, blockHashAt);2673  }26742675  async getTop10Owners() {2676    return await this.collection.getTop10TokenOwners(this.tokenId);2677  }26782679  async getBalance(addressObj: ICrossAccountId) {2680    return await this.collection.getTokenBalance(this.tokenId, addressObj);2681  }26822683  async getTotalPieces() {2684    return await this.collection.getTokenTotalPieces(this.tokenId);2685  }26862687  async getApprovedPieces(fromAddressObj: ICrossAccountId, toAccountObj: ICrossAccountId) {2688    return await this.collection.getTokenApprovedPieces(this.tokenId, fromAddressObj, toAccountObj);2689  }26902691  async transfer(signer: TSigner, addressObj: ICrossAccountId, amount=1n) {2692    return await this.collection.transferToken(signer, this.tokenId, addressObj, amount);2693  }26942695  async transferFrom(signer: TSigner, fromAddressObj: ICrossAccountId, toAddressObj: ICrossAccountId, amount=1n) {2696    return await this.collection.transferTokenFrom(signer, this.tokenId, fromAddressObj, toAddressObj, amount);2697  }26982699  async approve(signer: TSigner, toAddressObj: ICrossAccountId, amount=1n) {2700    return await this.collection.approveToken(signer, this.tokenId, toAddressObj, amount);2701  }27022703  async repartition(signer: TSigner, amount: bigint) {2704    return await this.collection.repartitionToken(signer, this.tokenId, amount);2705  }27062707  async burn(signer: TSigner, amount=1n) {2708    return await this.collection.burnToken(signer, this.tokenId, amount);2709  }27102711  async burnFrom(signer: TSigner, fromAddressObj: ICrossAccountId, amount=1n) {2712    return await this.collection.burnTokenFrom(signer, this.tokenId, fromAddressObj, amount);2713  }2714}