1import {expect} from 'chai';2import {tokenIdToAddress} from '../eth/util/helpers';3import privateKey from '../substrate/privateKey';4import usingApi, {executeTransaction} from '../substrate/substrate-api';5import {6 addToAllowListExpectSuccess,7 createCollectionExpectSuccess,8 createItemExpectSuccess,9 enableAllowListExpectSuccess,10 enablePublicMintingExpectSuccess,11 getTokenChildren,12 getTokenOwner,13 getTopmostTokenOwner,14 normalizeAccountId,15 setCollectionPermissionsExpectSuccess,16 transferExpectFailure,17 transferExpectSuccess,18 transferFromExpectSuccess,19} from '../util/helpers';20import {IKeyringPair} from '@polkadot/types/types';2122let alice: IKeyringPair;23let bob: IKeyringPair;2425describe('Integration Test: Nesting', () => {26 before(async () => {27 await usingApi(async () => {28 alice = privateKey('//Alice');29 bob = privateKey('//Bob');30 });31 });3233 it('Performs the full suite: bundles a token, transfers, and unnests', async () => {34 await usingApi(async api => {35 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});36 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Owner'});37 const targetToken = await createItemExpectSuccess(alice, collection, 'NFT');3839 40 const nestedToken = await createItemExpectSuccess(alice, collection, 'NFT', {Ethereum: tokenIdToAddress(collection, targetToken)});41 expect(await getTopmostTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Substrate: alice.address});42 expect(await getTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});4344 45 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');4647 48 await transferExpectSuccess(collection, newToken, alice, {Ethereum: tokenIdToAddress(collection, targetToken)});49 expect(await getTopmostTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});50 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});5152 53 await transferExpectSuccess(collection, targetToken, alice, {Substrate: bob.address});54 expect(await getTopmostTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Substrate: bob.address});55 expect(await getTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});5657 58 await transferFromExpectSuccess(collection, newToken, bob, {Ethereum: tokenIdToAddress(collection, targetToken)}, {Substrate: bob.address});59 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: bob.address});60 });61 });6263 it('Transfers an already bundled token', async () => {64 await usingApi(async api => {65 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});66 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Owner'});6768 const tokenA = await createItemExpectSuccess(alice, collection, 'NFT');69 const tokenB = await createItemExpectSuccess(alice, collection, 'NFT');7071 72 const tokenC = await createItemExpectSuccess(alice, collection, 'NFT', {Ethereum: tokenIdToAddress(collection, tokenA)});73 expect(await getTopmostTokenOwner(api, collection, tokenC)).to.be.deep.equal({Substrate: alice.address});74 expect(await getTokenOwner(api, collection, tokenC)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, tokenA).toLowerCase()});7576 77 await expect(executeTransaction(78 api,79 alice,80 api.tx.unique.transferFrom(81 normalizeAccountId({Ethereum: tokenIdToAddress(collection, tokenA)}), 82 normalizeAccountId({Ethereum: tokenIdToAddress(collection, tokenB)}), 83 collection,84 tokenC,85 1,86 ),87 )).to.not.be.rejected;88 expect(await getTopmostTokenOwner(api, collection, tokenC)).to.be.deep.equal({Substrate: alice.address});89 expect(await getTokenOwner(api, collection, tokenC)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, tokenB).toLowerCase()});90 });91 });9293 it('Checks token children', async () => {94 await usingApi(async api => {95 const collectionA = await createCollectionExpectSuccess({mode: {type: 'NFT'}});96 await setCollectionPermissionsExpectSuccess(alice, collectionA, {nesting: 'Owner'});97 const collectionB = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});9899 const targetToken = await createItemExpectSuccess(alice, collectionA, 'NFT');100 const targetAddress = {Ethereum: tokenIdToAddress(collectionA, targetToken)};101 let children = await getTokenChildren(api, collectionA, targetToken);102 expect(children.length).to.be.equal(0, 'Children length check at creation');103104 105 const tokenA = await createItemExpectSuccess(alice, collectionA, 'NFT', targetAddress);106 children = await getTokenChildren(api, collectionA, targetToken);107 expect(children.length).to.be.equal(1, 'Children length check at nesting #1');108 expect(children).to.have.deep.members([109 {token: tokenA, collection: collectionA},110 ], 'Children contents check at nesting #1');111112 113 const tokenB = await createItemExpectSuccess(alice, collectionA, 'NFT');114 await transferExpectSuccess(collectionA, tokenB, alice, targetAddress);115 children = await getTokenChildren(api, collectionA, targetToken);116 expect(children.length).to.be.equal(2, 'Children length check at nesting #2');117 expect(children).to.have.deep.members([118 {token: tokenA, collection: collectionA},119 {token: tokenB, collection: collectionA},120 ], 'Children contents check at nesting #2');121122 123 await transferFromExpectSuccess(collectionA, tokenB, alice, targetAddress, bob);124 children = await getTokenChildren(api, collectionA, targetToken);125 expect(children.length).to.be.equal(1, 'Children length check at unnesting');126 expect(children).to.be.have.deep.members([127 {token: tokenA, collection: collectionA},128 ], 'Children contents check at unnesting');129 130 131 const tokenC = await createItemExpectSuccess(alice, collectionB, 'Fungible');132 await transferExpectSuccess(collectionB, tokenC, alice, targetAddress, 1, 'Fungible');133 children = await getTokenChildren(api, collectionA, targetToken);134 expect(children.length).to.be.equal(2, 'Children length check at nesting #3 (from another collection)');135 expect(children).to.be.have.deep.members([136 {token: tokenA, collection: collectionA},137 {token: tokenC, collection: collectionB},138 ], 'Children contents check at nesting #3 (from another collection)');139140 141 await transferFromExpectSuccess(collectionB, tokenC, alice, targetAddress, {Ethereum: tokenIdToAddress(collectionA, tokenA)}, 1, 'Fungible');142 children = await getTokenChildren(api, collectionA, targetToken);143 expect(children.length).to.be.equal(1, 'Children length check at deeper nesting');144 expect(children).to.be.have.deep.members([145 {token: tokenA, collection: collectionA},146 ], 'Children contents check at deeper nesting');147 });148 });149150 151152 it('NFT: allows an Owner to nest/unnest their token', async () => {153 await usingApi(async api => {154 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});155 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Owner'});156 const targetToken = await createItemExpectSuccess(alice, collection, 'NFT');157158 159 const nestedToken = await createItemExpectSuccess(alice, collection, 'NFT', {Ethereum: tokenIdToAddress(collection, targetToken)});160 expect(await getTopmostTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Substrate: alice.address});161 expect(await getTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});162163 164 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');165 await transferExpectSuccess(collection, newToken, alice, {Ethereum: tokenIdToAddress(collection, targetToken)});166 expect(await getTopmostTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});167 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});168 });169 });170171 it('NFT: allows an Owner to nest/unnest their token (Restricted nesting)', async () => {172 await usingApi(async api => {173 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});174 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: {OwnerRestricted:[collection]}});175 const targetToken = await createItemExpectSuccess(alice, collection, 'NFT');176177 178 const nestedToken = await createItemExpectSuccess(alice, collection, 'NFT', {Ethereum: tokenIdToAddress(collection, targetToken)});179 expect(await getTopmostTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Substrate: alice.address});180 expect(await getTokenOwner(api, collection, nestedToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});181182 183 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');184 await transferExpectSuccess(collection, newToken, alice, {Ethereum: tokenIdToAddress(collection, targetToken)});185 expect(await getTopmostTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});186 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Ethereum: tokenIdToAddress(collection, targetToken).toLowerCase()});187 });188 });189190 191192 it('Fungible: allows an Owner to nest/unnest their token', async () => {193 await usingApi(async api => {194 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});195 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: 'Owner'});196 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT', {Substrate: alice.address});197 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};198199 const collectionFT = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});200201 202 await expect(executeTransaction(api, alice, api.tx.unique.createItem(203 collectionFT,204 targetAddress,205 {Fungible: {Value: 10}},206 ))).to.not.be.rejected;207208 209 const newToken = await createItemExpectSuccess(alice, collectionFT, 'Fungible');210 await transferExpectSuccess(collectionFT, newToken, alice, targetAddress, 1, 'Fungible');211 });212 });213214 it('Fungible: allows an Owner to nest/unnest their token (Restricted nesting)', async () => {215 await usingApi(async api => {216 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});217 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT', {Substrate: alice.address});218 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};219220 const collectionFT = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});221222 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: {OwnerRestricted: [collectionFT]}});223224 225 await expect(executeTransaction(api, alice, api.tx.unique.createItem(226 collectionFT,227 targetAddress,228 {Fungible: {Value: 10}},229 ))).to.not.be.rejected;230231 232 const newToken = await createItemExpectSuccess(alice, collectionFT, 'Fungible');233 await transferExpectSuccess(collectionFT, newToken, alice, targetAddress, 1, 'Fungible');234 });235 });236237 238239 it('ReFungible: allows an Owner to nest/unnest their token', async () => {240 await usingApi(async api => {241 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});242 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: 'Owner'});243 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT', {Substrate: alice.address});244 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};245246 const collectionRFT = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});247248 249 await expect(executeTransaction(api, alice, api.tx.unique.createItem(250 collectionRFT,251 targetAddress,252 {ReFungible: {const_data: [], pieces: 100}},253 ))).to.not.be.rejected;254255 256 const newToken = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');257 await transferExpectSuccess(collectionRFT, newToken, alice, targetAddress, 100, 'ReFungible');258 });259 });260261 it('ReFungible: allows an Owner to nest/unnest their token (Restricted nesting)', async () => {262 await usingApi(async api => {263 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});264 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT', {Substrate: alice.address});265 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};266267 const collectionRFT = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});268269 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: {OwnerRestricted:[collectionRFT]}});270271 272 await expect(executeTransaction(api, alice, api.tx.unique.createItem(273 collectionRFT,274 targetAddress,275 {ReFungible: {const_data: [], pieces: 100}},276 ))).to.not.be.rejected;277278 279 const newToken = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');280 await transferExpectSuccess(collectionRFT, newToken, alice, targetAddress, 100, 'ReFungible');281 });282 });283});284285describe('Negative Test: Nesting', async() => {286 before(async () => {287 await usingApi(async () => {288 alice = privateKey('//Alice');289 bob = privateKey('//Bob');290 });291 });292293 294 295 it('Affirms that transfer is disallowed to transfer nested tokens', async () => {296 await usingApi(async () => {297 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});298 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Owner'});299300 const tokenA = await createItemExpectSuccess(alice, collection, 'NFT');301 const tokenB = await createItemExpectSuccess(alice, collection, 'NFT', {Ethereum: tokenIdToAddress(collection, tokenA)});302 303 await transferExpectFailure(collection, tokenB, alice, bob);304 });305 });306307 it('Disallows excessive token nesting', async () => {308 await usingApi(async api => {309 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});310 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Owner'});311 const targetToken = await createItemExpectSuccess(alice, collection, 'NFT');312313 const maxNestingLevel = 5;314 let prevToken = targetToken;315316 317 for (let i = 0; i < maxNestingLevel; i++) {318 const nestedToken = await createItemExpectSuccess(319 alice,320 collection,321 'NFT',322 {Ethereum: tokenIdToAddress(collection, prevToken)},323 );324325 prevToken = nestedToken;326 }327328 329 await expect(executeTransaction(api, alice, api.tx.unique.createItem(330 collection,331 {Ethereum: tokenIdToAddress(collection, prevToken)},332 {nft: {const_data: [], variable_data: []}} as any,333 )), 'while creating nested token').to.be.rejectedWith(/^structure\.DepthLimit$/);334335 expect(await getTopmostTokenOwner(api, collection, prevToken)).to.be.deep.equal({Substrate: alice.address});336 });337 });338339 340341 it('NFT: disallows to nest token if nesting is disabled', async () => {342 await usingApi(async api => {343 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});344 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Disabled'});345 const targetToken = await createItemExpectSuccess(alice, collection, 'NFT');346347 348 await expect(executeTransaction(api, alice, api.tx.unique.createItem(349 collection,350 {Ethereum: tokenIdToAddress(collection, targetToken)},351 {nft: {const_data: [], variable_data: []}} as any,352 )), 'while creating nested token').to.be.rejectedWith(/^common\.NestingIsDisabled$/);353354 355 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');356 357 await expect(executeTransaction(api, alice, api.tx.unique.transfer({Ethereum: tokenIdToAddress(collection, targetToken)}, collection, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.NestingIsDisabled/);358 expect(await getTopmostTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});359 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});360 });361 });362363 it('NFT: disallows a non-Owner to nest someone else\'s token', async () => {364 await usingApi(async api => {365 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});366 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: 'Owner'});367368 await addToAllowListExpectSuccess(alice, collection, bob.address);369 await enableAllowListExpectSuccess(alice, collection);370 await enablePublicMintingExpectSuccess(alice, collection);371372 373 const targetToken = await createItemExpectSuccess(bob, collection, 'NFT');374375 376 await expect(executeTransaction(api, alice, api.tx.unique.createItem(377 collection,378 {Ethereum: tokenIdToAddress(collection, targetToken)},379 {nft: {const_data: [], variable_data: []}} as any,380 )), 'while creating nested token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);381382 383 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');384 await expect(executeTransaction(api, alice, api.tx.unique.transfer({Ethereum: tokenIdToAddress(collection, targetToken)}, collection, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.AddressNotInAllowlist/);385 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});386 });387 });388389 it('NFT: disallows a non-Owner to nest someone else\'s token (Restricted nesting)', async () => {390 await usingApi(async api => {391 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});392 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: {OwnerRestricted:[collection]}});393394 await addToAllowListExpectSuccess(alice, collection, bob.address);395 await enableAllowListExpectSuccess(alice, collection);396 await enablePublicMintingExpectSuccess(alice, collection);397398 399 const targetToken = await createItemExpectSuccess(bob, collection, 'NFT');400401 402 await expect(executeTransaction(api, alice, api.tx.unique.createItem(403 collection,404 {Ethereum: tokenIdToAddress(collection, targetToken)},405 {nft: {const_data: [], variable_data: []}} as any,406 )), 'while creating nested token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);407408 409 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');410 await expect(executeTransaction(api, alice, api.tx.unique.transfer({Ethereum: tokenIdToAddress(collection, targetToken)}, collection, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.AddressNotInAllowlist/);411 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});412 });413 });414415 it('NFT: disallows to nest token in an unlisted collection', async () => {416 await usingApi(async api => {417 const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});418 await setCollectionPermissionsExpectSuccess(alice, collection, {nesting: {OwnerRestricted:[]}});419420 421 const targetToken = await createItemExpectSuccess(alice, collection, 'NFT');422423 424 await expect(executeTransaction(api, alice, api.tx.unique.createItem(425 collection,426 {Ethereum: tokenIdToAddress(collection, targetToken)},427 {nft: {const_data: [], variable_data: []}} as any,428 )), 'while creating nested token').to.be.rejectedWith(/common\.SourceCollectionIsNotAllowedToNest/);429430 431 const newToken = await createItemExpectSuccess(alice, collection, 'NFT');432 await expect(executeTransaction(api, alice, api.tx.unique.transfer({Ethereum: tokenIdToAddress(collection, targetToken)}, collection, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.SourceCollectionIsNotAllowedToNest/);433 expect(await getTokenOwner(api, collection, newToken)).to.be.deep.equal({Substrate: alice.address});434 });435 });436437 438439 it('Fungible: disallows to nest token if nesting is disabled', async () => {440 await usingApi(async api => {441 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});442 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: 'Disabled'});443 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT');444 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};445446 const collectionFT = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});447448 449 await expect(executeTransaction(api, alice, api.tx.unique.createItem(450 collectionFT,451 targetAddress,452 {Fungible: {Value: 10}},453 )), 'while creating nested token').to.be.rejectedWith(/^common\.NestingIsDisabled$/);454455 456 const newToken = await createItemExpectSuccess(alice, collectionFT, 'Fungible');457 458 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.NestingIsDisabled/);459460 461 const newToken2 = await createItemExpectSuccess(alice, collectionFT, 'Fungible');462 463 await expect(executeTransaction(api, alice, api.tx.unique.transfer({Ethereum: tokenIdToAddress(collectionFT, newToken)}, collectionFT, newToken2, 1)), 'while nesting new token inside fungible').to.be.rejectedWith(/fungible\.FungibleDisallowsNesting/);464 });465 });466467 it('Fungible: disallows a non-Owner to nest someone else\'s token', async () => {468 await usingApi(async api => {469 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});470 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: 'Owner'});471472 await addToAllowListExpectSuccess(alice, collectionNFT, bob.address);473 await enableAllowListExpectSuccess(alice, collectionNFT);474 await enablePublicMintingExpectSuccess(alice, collectionNFT);475476 477 const targetToken = await createItemExpectSuccess(bob, collectionNFT, 'NFT');478 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};479480 const collectionFT = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});481482 483 await expect(executeTransaction(api, alice, api.tx.unique.createItem(484 collectionFT,485 targetAddress,486 {Fungible: {Value: 10}},487 )), 'while creating nested token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);488489 490 const newToken = await createItemExpectSuccess(alice, collectionFT, 'Fungible');491 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);492 });493 });494495 it('Fungible: disallows a non-Owner to nest someone else\'s token (Restricted nesting)', async () => {496 await usingApi(async api => {497 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});498 await addToAllowListExpectSuccess(alice, collectionNFT, bob.address);499 await enableAllowListExpectSuccess(alice, collectionNFT);500 await enablePublicMintingExpectSuccess(alice, collectionNFT);501502 503 const targetToken = await createItemExpectSuccess(bob, collectionNFT, 'NFT');504 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};505506 const collectionFT = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});507 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: {OwnerRestricted:[collectionFT]}});508509 510 await expect(executeTransaction(api, alice, api.tx.unique.createItem(511 collectionFT,512 targetAddress,513 {Fungible: {Value: 10}},514 )), 'while creating nested token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);515516 517 const newToken = await createItemExpectSuccess(alice, collectionFT, 'Fungible');518 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);519 });520 });521522 it('Fungible: disallows to nest token in an unlisted collection', async () => {523 await usingApi(async api => {524 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});525 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: {OwnerRestricted:[]}});526527 528 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT');529 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};530531 const collectionFT = await createCollectionExpectSuccess({mode: {type: 'Fungible', decimalPoints: 0}});532533 534 await expect(executeTransaction(api, alice, api.tx.unique.createItem(535 collectionFT,536 targetAddress,537 {Fungible: {Value: 10}},538 )), 'while creating a nested token').to.be.rejectedWith(/common\.SourceCollectionIsNotAllowedToNest/);539540 541 const newToken = await createItemExpectSuccess(alice, collectionFT, 'Fungible');542 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.SourceCollectionIsNotAllowedToNest/);543 });544 });545546 547548 it('ReFungible: disallows to nest token if nesting is disabled', async () => {549 await usingApi(async api => {550 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});551 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: 'Disabled'});552 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT');553 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};554555 const collectionRFT = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});556557 558 await expect(executeTransaction(api, alice, api.tx.unique.createItem(559 collectionRFT,560 targetAddress,561 {ReFungible: {const_data: [], pieces: 100}},562 )), 'while creating a nested token').to.be.rejectedWith(/^common\.NestingIsDisabled$/);563564 565 const newToken = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');566 567 await transferExpectFailure(collectionRFT, newToken, alice, targetAddress, 100);568 569 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionRFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.NestingIsDisabled/);570571 572 const newToken2 = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');573 574 await expect(executeTransaction(api, alice, api.tx.unique.transfer({Ethereum: tokenIdToAddress(collectionRFT, newToken)}, collectionRFT, newToken2, 1)), 'while nesting new token inside refungible').to.be.rejectedWith(/refungible\.RefungibleDisallowsNesting/);575 });576 });577578 it('ReFungible: disallows a non-Owner to nest someone else\'s token', async () => {579 await usingApi(async api => {580 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});581 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: 'Owner'});582583 await addToAllowListExpectSuccess(alice, collectionNFT, bob.address);584 await enableAllowListExpectSuccess(alice, collectionNFT);585 await enablePublicMintingExpectSuccess(alice, collectionNFT);586587 588 const targetToken = await createItemExpectSuccess(bob, collectionNFT, 'NFT');589 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};590591 const collectionRFT = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});592593 594 await expect(executeTransaction(api, alice, api.tx.unique.createItem(595 collectionRFT,596 targetAddress,597 {ReFungible: {const_data: [], pieces: 100}},598 )), 'while creating a nested token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);599600 601 const newToken = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');602 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionRFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);603 });604 });605606 it('ReFungible: disallows a non-Owner to nest someone else\'s token (Restricted nesting)', async () => {607 await usingApi(async api => {608 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});609 await addToAllowListExpectSuccess(alice, collectionNFT, bob.address);610 await enableAllowListExpectSuccess(alice, collectionNFT);611 await enablePublicMintingExpectSuccess(alice, collectionNFT);612613 614 const targetToken = await createItemExpectSuccess(bob, collectionNFT, 'NFT');615 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};616617 const collectionRFT = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});618 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: {OwnerRestricted:[collectionRFT]}});619620 621 await expect(executeTransaction(api, alice, api.tx.unique.createItem(622 collectionRFT,623 targetAddress,624 {ReFungible: {const_data: [], pieces: 100}},625 )), 'while creating a nested token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);626627 628 const newToken = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');629 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionRFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.OnlyOwnerAllowedToNest/);630 });631 });632633 it('ReFungible: disallows to nest token to an unlisted collection', async () => {634 await usingApi(async api => {635 const collectionNFT = await createCollectionExpectSuccess({mode: {type: 'NFT'}});636 await setCollectionPermissionsExpectSuccess(alice, collectionNFT, {nesting: {OwnerRestricted:[]}});637638 639 const targetToken = await createItemExpectSuccess(alice, collectionNFT, 'NFT');640 const targetAddress = {Ethereum: tokenIdToAddress(collectionNFT, targetToken)};641642 const collectionRFT = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});643644 645 await expect(executeTransaction(api, alice, api.tx.unique.createItem(646 collectionRFT,647 targetAddress,648 {ReFungible: {const_data: [], pieces: 100}},649 )), 'while creating a nested token').to.be.rejectedWith(/common\.SourceCollectionIsNotAllowedToNest/);650651 652 const newToken = await createItemExpectSuccess(alice, collectionRFT, 'ReFungible');653 await expect(executeTransaction(api, alice, api.tx.unique.transfer(targetAddress, collectionRFT, newToken, 1)), 'while nesting new token').to.be.rejectedWith(/common\.SourceCollectionIsNotAllowedToNest/);654 });655 });656});