difftreelog
fix eslint
in: master
33 files changed
tests/src/approve.test.tsdiffbeforeafterboth--- a/tests/src/approve.test.ts
+++ b/tests/src/approve.test.ts
@@ -33,7 +33,7 @@
transferFromExpectSuccess,
transferFromExpectFail,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
chai.use(chaiAsPromised);
tests/src/burnItem.test.tsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617import {default as usingApi, submitTransactionAsync, submitTransactionExpectFailAsync} from './substrate/substrate-api';18import {IKeyringPair} from '@polkadot/types/types';19import {20 createCollectionExpectSuccess,21 createItemExpectSuccess,22 getGenericResult,23 normalizeAccountId,24 addCollectionAdminExpectSuccess,25 getBalance,26 setCollectionLimitsExpectSuccess,27 isTokenExists,28 requirePallets,29 Pallets30} from './util/helpers';3132import chai from 'chai';33import chaiAsPromised from 'chai-as-promised';34chai.use(chaiAsPromised);35const expect = chai.expect;3637let alice: IKeyringPair;38let bob: IKeyringPair;3940describe('integration test: ext. burnItem():', () => {41 before(async () => {42 await usingApi(async (api, privateKeyWrapper) => {43 alice = privateKeyWrapper('//Alice');44 bob = privateKeyWrapper('//Bob');45 });46 });4748 it('Burn item in NFT collection', async () => {49 const createMode = 'NFT';50 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});51 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);5253 await usingApi(async (api) => {54 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);55 const events = await submitTransactionAsync(alice, tx);56 const result = getGenericResult(events);5758 expect(result.success).to.be.true;59 // Get the item60 expect(await isTokenExists(api, collectionId, tokenId)).to.be.false;61 });62 });6364 it('Burn item in Fungible collection', async () => {65 const createMode = 'Fungible';66 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode, decimalPoints: 0}});67 await createItemExpectSuccess(alice, collectionId, createMode); // Helper creates 10 fungible tokens68 const tokenId = 0; // ignored6970 await usingApi(async (api) => {71 // Destroy 1 of 1072 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);73 const events = await submitTransactionAsync(alice, tx);74 const result = getGenericResult(events);7576 // Get alice balance77 const balance = await getBalance(api, collectionId, alice.address, 0);7879 // What to expect80 expect(result.success).to.be.true;81 expect(balance).to.be.equal(9n);82 });83 });8485 it('Burn item in ReFungible collection', async function() {86 await requirePallets(this, [Pallets.ReFungible]);8788 const createMode = 'ReFungible';89 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});90 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);9192 await usingApi(async (api) => {93 const tx = api.tx.unique.burnItem(collectionId, tokenId, 100);94 const events = await submitTransactionAsync(alice, tx);95 const result = getGenericResult(events);9697 // Get alice balance98 const balance = await getBalance(api, collectionId, alice.address, tokenId);99100 // What to expect101 expect(result.success).to.be.true;102 expect(balance).to.be.equal(0n);103 });104 });105106 it('Burn owned portion of item in ReFungible collection', async function() {107 await requirePallets(this, [Pallets.ReFungible]);108109 const createMode = 'ReFungible';110 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});111 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);112113 await usingApi(async (api) => {114 // Transfer 1/100 of the token to Bob115 const transfertx = api.tx.unique.transfer(normalizeAccountId(bob.address), collectionId, tokenId, 1);116 const events1 = await submitTransactionAsync(alice, transfertx);117 const result1 = getGenericResult(events1);118119 // Get balances120 const bobBalanceBefore = await getBalance(api, collectionId, bob.address, tokenId);121 const aliceBalanceBefore = await getBalance(api, collectionId, alice.address, tokenId);122123 // Bob burns his portion124 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);125 const events2 = await submitTransactionAsync(bob, tx);126 const result2 = getGenericResult(events2);127128 // Get balances129 const bobBalanceAfter = await getBalance(api, collectionId, bob.address, tokenId);130 const aliceBalanceAfter = await getBalance(api, collectionId, alice.address, tokenId);131 // console.log(balance);132133 // What to expect before burning134 expect(result1.success).to.be.true;135 expect(aliceBalanceBefore).to.be.equal(99n);136 expect(bobBalanceBefore).to.be.equal(1n);137138 // What to expect after burning139 expect(result2.success).to.be.true;140 expect(aliceBalanceAfter).to.be.equal(99n);141 expect(bobBalanceAfter).to.be.equal(0n);142 });143144 });145146});147148describe('integration test: ext. burnItem() with admin permissions:', () => {149 before(async () => {150 await usingApi(async (api, privateKeyWrapper) => {151 alice = privateKeyWrapper('//Alice');152 bob = privateKeyWrapper('//Bob');153 });154 });155156 it('Burn item in NFT collection', async () => {157 const createMode = 'NFT';158 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});159 await setCollectionLimitsExpectSuccess(alice, collectionId, {ownerCanTransfer: true});160 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);161 await addCollectionAdminExpectSuccess(alice, collectionId, bob.address);162163 await usingApi(async (api) => {164 const tx = api.tx.unique.burnFrom(collectionId, {Substrate: alice.address}, tokenId, 1);165 const events = await submitTransactionAsync(bob, tx);166 const result = getGenericResult(events);167168 expect(result.success).to.be.true;169 // Get the item170 expect(await isTokenExists(api, collectionId, tokenId)).to.be.false;171 });172 });173174 // TODO: burnFrom175 it('Burn item in Fungible collection', async () => {176 const createMode = 'Fungible';177 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode, decimalPoints: 0}});178 await setCollectionLimitsExpectSuccess(alice, collectionId, {ownerCanTransfer: true});179 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode); // Helper creates 10 fungible tokens180 await addCollectionAdminExpectSuccess(alice, collectionId, bob.address);181182 await usingApi(async (api) => {183 // Destroy 1 of 10184 const tx = api.tx.unique.burnFrom(collectionId, normalizeAccountId(alice.address), tokenId, 1);185 const events = await submitTransactionAsync(bob, tx);186 const result = getGenericResult(events);187188 // Get alice balance189 const balance = await getBalance(api, collectionId, alice.address, 0);190191 // What to expect192 expect(result.success).to.be.true;193 expect(balance).to.be.equal(9n);194 });195 });196197 // TODO: burnFrom198 it('Burn item in ReFungible collection', async function() {199 await requirePallets(this, [Pallets.ReFungible]);200201 const createMode = 'ReFungible';202 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});203 await setCollectionLimitsExpectSuccess(alice, collectionId, {ownerCanTransfer: true});204 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);205 await addCollectionAdminExpectSuccess(alice, collectionId, bob.address);206207 await usingApi(async (api) => {208 const tx = api.tx.unique.burnFrom(collectionId, normalizeAccountId(alice.address), tokenId, 100);209 const events = await submitTransactionAsync(bob, tx);210 const result = getGenericResult(events);211 // Get alice balance212 expect(result.success).to.be.true;213 // Get the item214 expect(await isTokenExists(api, collectionId, tokenId)).to.be.false;215 });216 });217});218219describe('Negative integration test: ext. burnItem():', () => {220 before(async () => {221 await usingApi(async (api, privateKeyWrapper) => {222 alice = privateKeyWrapper('//Alice');223 bob = privateKeyWrapper('//Bob');224 });225 });226227 it('Burn a token that was never created', async () => {228 const createMode = 'NFT';229 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});230 const tokenId = 10;231232 await usingApi(async (api) => {233 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);234 const badTransaction = async function () {235 await submitTransactionExpectFailAsync(alice, tx);236 };237 await expect(badTransaction()).to.be.rejected;238 });239240 });241242 it('Burn a token using the address that does not own it', async () => {243 const createMode = 'NFT';244 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});245 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);246247 await usingApi(async (api) => {248 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);249 const badTransaction = async function () {250 await submitTransactionExpectFailAsync(bob, tx);251 };252 await expect(badTransaction()).to.be.rejected;253 });254255 });256257 it('Transfer a burned a token', async () => {258 const createMode = 'NFT';259 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});260 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);261262 await usingApi(async (api) => {263264 const burntx = api.tx.unique.burnItem(collectionId, tokenId, 1);265 const events1 = await submitTransactionAsync(alice, burntx);266 const result1 = getGenericResult(events1);267 expect(result1.success).to.be.true;268269 const tx = api.tx.unique.transfer(normalizeAccountId(bob.address), collectionId, tokenId, 1);270 const badTransaction = async function () {271 await submitTransactionExpectFailAsync(alice, tx);272 };273 await expect(badTransaction()).to.be.rejected;274 });275276 });277278 it('Burn more than owned in Fungible collection', async () => {279 const createMode = 'Fungible';280 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode, decimalPoints: 0}});281 // Helper creates 10 fungible tokens282 await createItemExpectSuccess(alice, collectionId, createMode);283 const tokenId = 0; // ignored284285 await usingApi(async (api) => {286 // Destroy 11 of 10287 const tx = api.tx.unique.burnItem(collectionId, tokenId, 11);288 const badTransaction = async function () {289 await submitTransactionExpectFailAsync(alice, tx);290 };291 await expect(badTransaction()).to.be.rejected;292293 // Get alice balance294 const balance = await getBalance(api, collectionId, alice.address, 0);295296 // What to expect297 expect(balance).to.be.equal(10n);298 });299300 });301302});1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617import {default as usingApi, submitTransactionAsync, submitTransactionExpectFailAsync} from './substrate/substrate-api';18import {IKeyringPair} from '@polkadot/types/types';19import {20 createCollectionExpectSuccess,21 createItemExpectSuccess,22 getGenericResult,23 normalizeAccountId,24 addCollectionAdminExpectSuccess,25 getBalance,26 setCollectionLimitsExpectSuccess,27 isTokenExists,28 requirePallets,29 Pallets,30} from './util/helpers';3132import chai from 'chai';33import chaiAsPromised from 'chai-as-promised';34chai.use(chaiAsPromised);35const expect = chai.expect;3637let alice: IKeyringPair;38let bob: IKeyringPair;3940describe('integration test: ext. burnItem():', () => {41 before(async () => {42 await usingApi(async (api, privateKeyWrapper) => {43 alice = privateKeyWrapper('//Alice');44 bob = privateKeyWrapper('//Bob');45 });46 });4748 it('Burn item in NFT collection', async () => {49 const createMode = 'NFT';50 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});51 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);5253 await usingApi(async (api) => {54 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);55 const events = await submitTransactionAsync(alice, tx);56 const result = getGenericResult(events);5758 expect(result.success).to.be.true;59 // Get the item60 expect(await isTokenExists(api, collectionId, tokenId)).to.be.false;61 });62 });6364 it('Burn item in Fungible collection', async () => {65 const createMode = 'Fungible';66 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode, decimalPoints: 0}});67 await createItemExpectSuccess(alice, collectionId, createMode); // Helper creates 10 fungible tokens68 const tokenId = 0; // ignored6970 await usingApi(async (api) => {71 // Destroy 1 of 1072 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);73 const events = await submitTransactionAsync(alice, tx);74 const result = getGenericResult(events);7576 // Get alice balance77 const balance = await getBalance(api, collectionId, alice.address, 0);7879 // What to expect80 expect(result.success).to.be.true;81 expect(balance).to.be.equal(9n);82 });83 });8485 it('Burn item in ReFungible collection', async function() {86 await requirePallets(this, [Pallets.ReFungible]);8788 const createMode = 'ReFungible';89 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});90 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);9192 await usingApi(async (api) => {93 const tx = api.tx.unique.burnItem(collectionId, tokenId, 100);94 const events = await submitTransactionAsync(alice, tx);95 const result = getGenericResult(events);9697 // Get alice balance98 const balance = await getBalance(api, collectionId, alice.address, tokenId);99100 // What to expect101 expect(result.success).to.be.true;102 expect(balance).to.be.equal(0n);103 });104 });105106 it('Burn owned portion of item in ReFungible collection', async function() {107 await requirePallets(this, [Pallets.ReFungible]);108109 const createMode = 'ReFungible';110 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});111 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);112113 await usingApi(async (api) => {114 // Transfer 1/100 of the token to Bob115 const transfertx = api.tx.unique.transfer(normalizeAccountId(bob.address), collectionId, tokenId, 1);116 const events1 = await submitTransactionAsync(alice, transfertx);117 const result1 = getGenericResult(events1);118119 // Get balances120 const bobBalanceBefore = await getBalance(api, collectionId, bob.address, tokenId);121 const aliceBalanceBefore = await getBalance(api, collectionId, alice.address, tokenId);122123 // Bob burns his portion124 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);125 const events2 = await submitTransactionAsync(bob, tx);126 const result2 = getGenericResult(events2);127128 // Get balances129 const bobBalanceAfter = await getBalance(api, collectionId, bob.address, tokenId);130 const aliceBalanceAfter = await getBalance(api, collectionId, alice.address, tokenId);131 // console.log(balance);132133 // What to expect before burning134 expect(result1.success).to.be.true;135 expect(aliceBalanceBefore).to.be.equal(99n);136 expect(bobBalanceBefore).to.be.equal(1n);137138 // What to expect after burning139 expect(result2.success).to.be.true;140 expect(aliceBalanceAfter).to.be.equal(99n);141 expect(bobBalanceAfter).to.be.equal(0n);142 });143144 });145146});147148describe('integration test: ext. burnItem() with admin permissions:', () => {149 before(async () => {150 await usingApi(async (api, privateKeyWrapper) => {151 alice = privateKeyWrapper('//Alice');152 bob = privateKeyWrapper('//Bob');153 });154 });155156 it('Burn item in NFT collection', async () => {157 const createMode = 'NFT';158 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});159 await setCollectionLimitsExpectSuccess(alice, collectionId, {ownerCanTransfer: true});160 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);161 await addCollectionAdminExpectSuccess(alice, collectionId, bob.address);162163 await usingApi(async (api) => {164 const tx = api.tx.unique.burnFrom(collectionId, {Substrate: alice.address}, tokenId, 1);165 const events = await submitTransactionAsync(bob, tx);166 const result = getGenericResult(events);167168 expect(result.success).to.be.true;169 // Get the item170 expect(await isTokenExists(api, collectionId, tokenId)).to.be.false;171 });172 });173174 // TODO: burnFrom175 it('Burn item in Fungible collection', async () => {176 const createMode = 'Fungible';177 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode, decimalPoints: 0}});178 await setCollectionLimitsExpectSuccess(alice, collectionId, {ownerCanTransfer: true});179 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode); // Helper creates 10 fungible tokens180 await addCollectionAdminExpectSuccess(alice, collectionId, bob.address);181182 await usingApi(async (api) => {183 // Destroy 1 of 10184 const tx = api.tx.unique.burnFrom(collectionId, normalizeAccountId(alice.address), tokenId, 1);185 const events = await submitTransactionAsync(bob, tx);186 const result = getGenericResult(events);187188 // Get alice balance189 const balance = await getBalance(api, collectionId, alice.address, 0);190191 // What to expect192 expect(result.success).to.be.true;193 expect(balance).to.be.equal(9n);194 });195 });196197 // TODO: burnFrom198 it('Burn item in ReFungible collection', async function() {199 await requirePallets(this, [Pallets.ReFungible]);200201 const createMode = 'ReFungible';202 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});203 await setCollectionLimitsExpectSuccess(alice, collectionId, {ownerCanTransfer: true});204 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);205 await addCollectionAdminExpectSuccess(alice, collectionId, bob.address);206207 await usingApi(async (api) => {208 const tx = api.tx.unique.burnFrom(collectionId, normalizeAccountId(alice.address), tokenId, 100);209 const events = await submitTransactionAsync(bob, tx);210 const result = getGenericResult(events);211 // Get alice balance212 expect(result.success).to.be.true;213 // Get the item214 expect(await isTokenExists(api, collectionId, tokenId)).to.be.false;215 });216 });217});218219describe('Negative integration test: ext. burnItem():', () => {220 before(async () => {221 await usingApi(async (api, privateKeyWrapper) => {222 alice = privateKeyWrapper('//Alice');223 bob = privateKeyWrapper('//Bob');224 });225 });226227 it('Burn a token that was never created', async () => {228 const createMode = 'NFT';229 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});230 const tokenId = 10;231232 await usingApi(async (api) => {233 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);234 const badTransaction = async function () {235 await submitTransactionExpectFailAsync(alice, tx);236 };237 await expect(badTransaction()).to.be.rejected;238 });239240 });241242 it('Burn a token using the address that does not own it', async () => {243 const createMode = 'NFT';244 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});245 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);246247 await usingApi(async (api) => {248 const tx = api.tx.unique.burnItem(collectionId, tokenId, 1);249 const badTransaction = async function () {250 await submitTransactionExpectFailAsync(bob, tx);251 };252 await expect(badTransaction()).to.be.rejected;253 });254255 });256257 it('Transfer a burned a token', async () => {258 const createMode = 'NFT';259 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode}});260 const tokenId = await createItemExpectSuccess(alice, collectionId, createMode);261262 await usingApi(async (api) => {263264 const burntx = api.tx.unique.burnItem(collectionId, tokenId, 1);265 const events1 = await submitTransactionAsync(alice, burntx);266 const result1 = getGenericResult(events1);267 expect(result1.success).to.be.true;268269 const tx = api.tx.unique.transfer(normalizeAccountId(bob.address), collectionId, tokenId, 1);270 const badTransaction = async function () {271 await submitTransactionExpectFailAsync(alice, tx);272 };273 await expect(badTransaction()).to.be.rejected;274 });275276 });277278 it('Burn more than owned in Fungible collection', async () => {279 const createMode = 'Fungible';280 const collectionId = await createCollectionExpectSuccess({mode: {type: createMode, decimalPoints: 0}});281 // Helper creates 10 fungible tokens282 await createItemExpectSuccess(alice, collectionId, createMode);283 const tokenId = 0; // ignored284285 await usingApi(async (api) => {286 // Destroy 11 of 10287 const tx = api.tx.unique.burnItem(collectionId, tokenId, 11);288 const badTransaction = async function () {289 await submitTransactionExpectFailAsync(alice, tx);290 };291 await expect(badTransaction()).to.be.rejected;292293 // Get alice balance294 const balance = await getBalance(api, collectionId, alice.address, 0);295296 // What to expect297 expect(balance).to.be.equal(10n);298 });299300 });301302});tests/src/confirmSponsorship.test.tsdiffbeforeafterboth--- a/tests/src/confirmSponsorship.test.ts
+++ b/tests/src/confirmSponsorship.test.ts
@@ -34,7 +34,7 @@
getCreatedCollectionCount,
UNIQUE,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
import {IKeyringPair} from '@polkadot/types/types';
tests/src/createItem.test.tsdiffbeforeafterboth--- a/tests/src/createItem.test.ts
+++ b/tests/src/createItem.test.ts
@@ -30,7 +30,7 @@
normalizeAccountId,
getCreateItemResult,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
const expect = chai.expect;
tests/src/createMultipleItems.test.tsdiffbeforeafterboth--- a/tests/src/createMultipleItems.test.ts
+++ b/tests/src/createMultipleItems.test.ts
@@ -35,7 +35,7 @@
getTokenProperties,
requirePallets,
Pallets,
- checkPalletsPresence
+ checkPalletsPresence,
} from './util/helpers';
chai.use(chaiAsPromised);
@@ -416,7 +416,7 @@
await usingApi(async (api: ApiPromise) => {
const collectionId = await createCollectionExpectSuccess();
- let types = ['NFT', 'Fungible'];
+ const types = ['NFT', 'Fungible'];
if (await checkPalletsPresence([Pallets.ReFungible])) {
types.push('ReFungible');
tests/src/destroyCollection.test.tsdiffbeforeafterboth--- a/tests/src/destroyCollection.test.ts
+++ b/tests/src/destroyCollection.test.ts
@@ -26,7 +26,7 @@
getCreatedCollectionCount,
createItemExpectSuccess,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
chai.use(chaiAsPromised);
tests/src/limits.test.tsdiffbeforeafterboth--- a/tests/src/limits.test.ts
+++ b/tests/src/limits.test.ts
@@ -28,7 +28,7 @@
getFreeBalance,
waitNewBlocks, burnItemExpectSuccess,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
import {expect} from 'chai';
tests/src/nesting/nest.test.tsdiffbeforeafterboth--- a/tests/src/nesting/nest.test.ts
+++ b/tests/src/nesting/nest.test.ts
@@ -18,7 +18,7 @@
transferFromExpectSuccess,
setCollectionLimitsExpectSuccess,
requirePallets,
- Pallets
+ Pallets,
} from '../util/helpers';
import {IKeyringPair} from '@polkadot/types/types';
tests/src/nesting/properties.test.tsdiffbeforeafterboth--- a/tests/src/nesting/properties.test.ts
+++ b/tests/src/nesting/properties.test.ts
@@ -9,7 +9,7 @@
getCreateCollectionResult,
transferExpectSuccess,
requirePallets,
- Pallets
+ Pallets,
} from '../util/helpers';
import {IKeyringPair} from '@polkadot/types/types';
import {tokenIdToAddress} from '../eth/util/helpers';
tests/src/nesting/unnest.test.tsdiffbeforeafterboth--- a/tests/src/nesting/unnest.test.ts
+++ b/tests/src/nesting/unnest.test.ts
@@ -11,7 +11,7 @@
transferExpectSuccess,
transferFromExpectSuccess,
requirePallets,
- Pallets
+ Pallets,
} from '../util/helpers';
import {IKeyringPair} from '@polkadot/types/types';
tests/src/nextSponsoring.test.tsdiffbeforeafterboth--- a/tests/src/nextSponsoring.test.ts
+++ b/tests/src/nextSponsoring.test.ts
@@ -28,7 +28,7 @@
normalizeAccountId,
getNextSponsored,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
chai.use(chaiAsPromised);
tests/src/refungible.test.tsdiffbeforeafterboth--- a/tests/src/refungible.test.ts
+++ b/tests/src/refungible.test.ts
@@ -38,7 +38,7 @@
getDestroyItemsResult,
getModuleNames,
Pallets,
- requirePallets
+ requirePallets,
} from './util/helpers';
import chai from 'chai';
tests/src/rmrk/acceptNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/acceptNft.test.ts
+++ b/tests/src/rmrk/acceptNft.test.ts
@@ -8,7 +8,7 @@
} from './util/tx';
import {NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
describe('integration test: accept NFT', () => {
let api: any;
tests/src/rmrk/addResource.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/addResource.test.ts
+++ b/tests/src/rmrk/addResource.test.ts
@@ -12,7 +12,7 @@
addNftComposableResource,
} from './util/tx';
import {RmrkTraitsResourceResourceInfo as ResourceInfo} from '@polkadot/types/lookup';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
describe('integration test: add NFT resource', () => {
const Alice = '//Alice';
tests/src/rmrk/addTheme.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/addTheme.test.ts
+++ b/tests/src/rmrk/addTheme.test.ts
@@ -3,7 +3,7 @@
import {createBase, addTheme} from './util/tx';
import {expectTxFailure} from './util/helpers';
import {getThemeNames} from './util/fetch';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
describe('integration test: add Theme to Base', () => {
let api: any;
tests/src/rmrk/burnNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/burnNft.test.ts
+++ b/tests/src/rmrk/burnNft.test.ts
@@ -5,7 +5,7 @@
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
chai.use(chaiAsPromised);
const expect = chai.expect;
tests/src/rmrk/changeCollectionIssuer.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/changeCollectionIssuer.test.ts
+++ b/tests/src/rmrk/changeCollectionIssuer.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {
changeIssuer,
tests/src/rmrk/createBase.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/createBase.test.ts
+++ b/tests/src/rmrk/createBase.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {createCollection, createBase} from './util/tx';
describe('integration test: create new Base', () => {
tests/src/rmrk/deleteCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/deleteCollection.test.ts
+++ b/tests/src/rmrk/deleteCollection.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, deleteCollection} from './util/tx';
tests/src/rmrk/getOwnedNfts.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/getOwnedNfts.test.ts
+++ b/tests/src/rmrk/getOwnedNfts.test.ts
@@ -1,6 +1,6 @@
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {getOwnedNfts} from './util/fetch';
import {mintNft, createCollection} from './util/tx';
tests/src/rmrk/lockCollection.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/lockCollection.test.ts
+++ b/tests/src/rmrk/lockCollection.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, lockCollection, mintNft} from './util/tx';
tests/src/rmrk/mintNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/mintNft.test.ts
+++ b/tests/src/rmrk/mintNft.test.ts
@@ -1,6 +1,6 @@
import {expect} from 'chai';
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {getNft} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {createCollection, mintNft} from './util/tx';
tests/src/rmrk/rejectNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/rejectNft.test.ts
+++ b/tests/src/rmrk/rejectNft.test.ts
@@ -8,7 +8,7 @@
} from './util/tx';
import {getChildren, NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
describe('integration test: reject NFT', () => {
let api: any;
tests/src/rmrk/removeResource.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/removeResource.test.ts
+++ b/tests/src/rmrk/removeResource.test.ts
@@ -1,7 +1,7 @@
import {expect} from 'chai';
import privateKey from '../substrate/privateKey';
import {executeTransaction, getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {getNft, NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {
tests/src/rmrk/sendNft.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/sendNft.test.ts
+++ b/tests/src/rmrk/sendNft.test.ts
@@ -3,7 +3,7 @@
import {createCollection, mintNft, sendNft} from './util/tx';
import {NftIdTuple} from './util/fetch';
import {isNftChildOfAnother, expectTxFailure} from './util/helpers';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
describe('integration test: send NFT', () => {
let api: any;
tests/src/rmrk/setCollectionProperty.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setCollectionProperty.test.ts
+++ b/tests/src/rmrk/setCollectionProperty.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, setPropertyCollection} from './util/tx';
tests/src/rmrk/setEquippableList.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setEquippableList.test.ts
+++ b/tests/src/rmrk/setEquippableList.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {createCollection, createBase, setEquippableList} from './util/tx';
tests/src/rmrk/setNftProperty.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setNftProperty.test.ts
+++ b/tests/src/rmrk/setNftProperty.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {NftIdTuple} from './util/fetch';
import {expectTxFailure} from './util/helpers';
import {createCollection, mintNft, sendNft, setNftProperty} from './util/tx';
tests/src/rmrk/setResourcePriorities.test.tsdiffbeforeafterboth--- a/tests/src/rmrk/setResourcePriorities.test.ts
+++ b/tests/src/rmrk/setResourcePriorities.test.ts
@@ -1,5 +1,5 @@
import {getApiConnection} from '../substrate/substrate-api';
-import { requirePallets, Pallets } from '../util/helpers';
+import {requirePallets, Pallets} from '../util/helpers';
import {expectTxFailure} from './util/helpers';
import {mintNft, createCollection, setResourcePriorities} from './util/tx';
tests/src/setCollectionSponsor.test.tsdiffbeforeafterboth--- a/tests/src/setCollectionSponsor.test.ts
+++ b/tests/src/setCollectionSponsor.test.ts
@@ -24,7 +24,7 @@
addCollectionAdminExpectSuccess,
getCreatedCollectionCount,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
import {IKeyringPair} from '@polkadot/types/types';
tests/src/transfer.test.tsdiffbeforeafterboth--- a/tests/src/transfer.test.ts
+++ b/tests/src/transfer.test.ts
@@ -42,7 +42,7 @@
subToEth,
itWeb3,
} from './eth/util/helpers';
-import { request } from 'https';
+import {request} from 'https';
let alice: IKeyringPair;
let bob: IKeyringPair;
tests/src/transferFrom.test.tsdiffbeforeafterboth--- a/tests/src/transferFrom.test.ts
+++ b/tests/src/transferFrom.test.ts
@@ -32,7 +32,7 @@
setCollectionLimitsExpectSuccess,
getCreatedCollectionCount,
requirePallets,
- Pallets
+ Pallets,
} from './util/helpers';
chai.use(chaiAsPromised);
tests/src/util/helpers.tsdiffbeforeafterboth--- a/tests/src/util/helpers.ts
+++ b/tests/src/util/helpers.ts
@@ -28,7 +28,7 @@
import {hexToStr, strToUTF16, utf16ToStr} from './util';
import {UpDataStructsRpcCollection, UpDataStructsCreateItemData, UpDataStructsProperty} from '@polkadot/types/lookup';
import {UpDataStructsTokenChild} from '../interfaces';
-import { Context } from 'mocha';
+import {Context} from 'mocha';
chai.use(chaiAsPromised);
const expect = chai.expect;