1234567891011121314151617import {Pallets, requirePalletsOrSkip} from '../util';18import {expect, itEth, usingEthPlaygrounds} from './util';19import {IKeyringPair} from '@polkadot/types/types';2021describe('Refungible: Information getting', () => {22 let donor: IKeyringPair;2324 before(async function() {25 await usingEthPlaygrounds(async (helper, privateKey) => {26 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);2728 donor = await privateKey({filename: __filename});29 });30 });3132 itEth('totalSupply', async ({helper}) => {33 const caller = await helper.eth.createAccountWithBalance(donor);34 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'TotalSupply', '6', '6');35 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);3637 await contract.methods.mint(caller).send();3839 const totalSupply = await contract.methods.totalSupply().call();40 expect(totalSupply).to.equal('1');41 });4243 itEth('balanceOf', async ({helper}) => {44 const caller = await helper.eth.createAccountWithBalance(donor);45 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'BalanceOf', '6', '6');46 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);4748 await contract.methods.mint(caller).send();49 await contract.methods.mint(caller).send();50 await contract.methods.mint(caller).send();5152 const balance = await contract.methods.balanceOf(caller).call();53 expect(balance).to.equal('3');54 });5556 itEth('ownerOf', async ({helper}) => {57 const caller = await helper.eth.createAccountWithBalance(donor);58 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'OwnerOf', '6', '6');59 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);6061 const result = await contract.methods.mint(caller).send();62 const tokenId = result.events.Transfer.returnValues.tokenId;6364 const owner = await contract.methods.ownerOf(tokenId).call();65 expect(owner).to.equal(caller);66 });6768 itEth('ownerOf after burn', async ({helper}) => {69 const caller = await helper.eth.createAccountWithBalance(donor);70 const receiver = helper.eth.createAccount();71 const {collectionId, collectionAddress} = await helper.eth.createRFTCollection(caller, 'OwnerOf-AfterBurn', '6', '6');72 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);7374 const result = await contract.methods.mint(caller).send();75 const tokenId = result.events.Transfer.returnValues.tokenId;76 const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, caller);7778 await tokenContract.methods.repartition(2).send();79 await tokenContract.methods.transfer(receiver, 1).send();8081 await tokenContract.methods.burnFrom(caller, 1).send();8283 const owner = await contract.methods.ownerOf(tokenId).call();84 expect(owner).to.equal(receiver);85 });8687 itEth('ownerOf for partial ownership', async ({helper}) => {88 const caller = await helper.eth.createAccountWithBalance(donor);89 const receiver = helper.eth.createAccount();90 const {collectionId, collectionAddress} = await helper.eth.createRFTCollection(caller, 'Partial-OwnerOf', '6', '6');91 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);9293 const result = await contract.methods.mint(caller).send();94 const tokenId = result.events.Transfer.returnValues.tokenId;95 const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, caller);9697 await tokenContract.methods.repartition(2).send();98 await tokenContract.methods.transfer(receiver, 1).send();99100 const owner = await contract.methods.ownerOf(tokenId).call();101 expect(owner).to.equal('0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF');102 });103});104105describe('Refungible: Plain calls', () => {106 let donor: IKeyringPair;107108 before(async function() {109 await usingEthPlaygrounds(async (helper, privateKey) => {110 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);111112 donor = await privateKey({filename: __filename});113 });114 });115116 itEth('Can perform mint()', async ({helper}) => {117 const owner = await helper.eth.createAccountWithBalance(donor);118 const receiver = helper.eth.createAccount();119 const {collectionAddress} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner, 'Minty', '6', '6', '');120 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);121122 const result = await contract.methods.mintWithTokenURI(receiver, 'Test URI').send();123124 const event = result.events.Transfer;125 expect(event.address).to.equal(collectionAddress);126 expect(event.returnValues.from).to.equal('0x0000000000000000000000000000000000000000');127 expect(event.returnValues.to).to.equal(receiver);128 const tokenId = event.returnValues.tokenId;129 expect(tokenId).to.be.equal('1');130131 expect(await contract.methods.tokenURI(tokenId).call()).to.be.equal('Test URI');132 });133134 itEth.skip('Can perform mintBulk()', async ({helper}) => {135 const owner = await helper.eth.createAccountWithBalance(donor);136 const receiver = helper.eth.createAccount();137 const {collectionAddress} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner, 'MintBulky', '6', '6', '');138 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);139140 {141 const nextTokenId = await contract.methods.nextTokenId().call();142 expect(nextTokenId).to.be.equal('1');143 const result = await contract.methods.mintBulkWithTokenURI(144 receiver,145 [146 [nextTokenId, 'Test URI 0'],147 [+nextTokenId + 1, 'Test URI 1'],148 [+nextTokenId + 2, 'Test URI 2'],149 ],150 ).send();151152 const events = result.events.Transfer;153 for (let i = 0; i < 2; i++) {154 const event = events[i];155 expect(event.address).to.equal(collectionAddress);156 expect(event.returnValues.from).to.equal('0x0000000000000000000000000000000000000000');157 expect(event.returnValues.to).to.equal(receiver);158 expect(event.returnValues.tokenId).to.equal(String(+nextTokenId + i));159 }160161 expect(await contract.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI 0');162 expect(await contract.methods.tokenURI(+nextTokenId + 1).call()).to.be.equal('Test URI 1');163 expect(await contract.methods.tokenURI(+nextTokenId + 2).call()).to.be.equal('Test URI 2');164 }165 });166167 itEth('Can perform burn()', async ({helper}) => {168 const caller = await helper.eth.createAccountWithBalance(donor);169 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'Burny', '6', '6');170 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);171172 const result = await contract.methods.mint(caller).send();173 const tokenId = result.events.Transfer.returnValues.tokenId;174 {175 const result = await contract.methods.burn(tokenId).send();176 const event = result.events.Transfer;177 expect(event.address).to.equal(collectionAddress);178 expect(event.returnValues.from).to.equal(caller);179 expect(event.returnValues.to).to.equal('0x0000000000000000000000000000000000000000');180 expect(event.returnValues.tokenId).to.equal(tokenId.toString());181 }182 });183184 itEth('Can perform transferFrom()', async ({helper}) => {185 const caller = await helper.eth.createAccountWithBalance(donor);186 const receiver = helper.eth.createAccount();187 const {collectionId, collectionAddress} = await helper.eth.createRFTCollection(caller, 'TransferFromy', '6', '6');188 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);189190 const result = await contract.methods.mint(caller).send();191 const tokenId = result.events.Transfer.returnValues.tokenId;192193 const tokenAddress = helper.ethAddress.fromTokenId(collectionId, tokenId);194195 const tokenContract = helper.ethNativeContract.rftToken(tokenAddress, caller);196 await tokenContract.methods.repartition(15).send();197198 {199 const tokenEvents: any = [];200 tokenContract.events.allEvents((_: any, event: any) => {201 tokenEvents.push(event);202 });203 const result = await contract.methods.transferFrom(caller, receiver, tokenId).send();204 if (tokenEvents.length == 0) await helper.wait.newBlocks(1);205206 let event = result.events.Transfer;207 expect(event.address).to.equal(collectionAddress);208 expect(event.returnValues.from).to.equal(caller);209 expect(event.returnValues.to).to.equal(receiver);210 expect(event.returnValues.tokenId).to.equal(tokenId.toString());211212 event = tokenEvents[0];213 expect(event.address).to.equal(tokenAddress);214 expect(event.returnValues.from).to.equal(caller);215 expect(event.returnValues.to).to.equal(receiver);216 expect(event.returnValues.value).to.equal('15');217 }218219 {220 const balance = await contract.methods.balanceOf(receiver).call();221 expect(+balance).to.equal(1);222 }223224 {225 const balance = await contract.methods.balanceOf(caller).call();226 expect(+balance).to.equal(0);227 }228 });229230 itEth('Can perform burnFrom()', async ({helper, privateKey}) => {231 const alice = privateKey('//Alice');232 const collection = await helper.rft.mintCollection(alice, {name: 'A', description: 'B', tokenPrefix: 'C'});233234 const owner = await helper.eth.createAccountWithBalance(alice, 100n);235 const spender = await helper.eth.createAccountWithBalance(alice, 100n);236237 const token = await collection.mintToken(alice, 100n, {Ethereum: owner});238239 const address = helper.ethAddress.fromCollectionId(collection.collectionId);240 const contract = helper.ethNativeContract.collection(address, 'rft');241242 const tokenAddress = helper.ethAddress.fromTokenId(collection.collectionId, token.tokenId);243 const tokenContract = helper.ethNativeContract.rftToken(tokenAddress, owner);244 await tokenContract.methods.repartition(15).send();245 await tokenContract.methods.approve(spender, 15).send();246247 {248 const result = await contract.methods.burnFrom(owner, token.tokenId).send({from: spender});249 const event = result.events.Transfer;250 expect(event).to.be.like({251 address: helper.ethAddress.fromCollectionId(collection.collectionId),252 event: 'Transfer',253 returnValues: {254 from: owner,255 to: '0x0000000000000000000000000000000000000000',256 tokenId: token.tokenId.toString(),257 },258 });259 }260261 expect(await collection.getTokenBalance(token.tokenId, {Ethereum: owner})).to.be.eq(0n);262 });263264 itEth('Can perform burnFromCross()', async ({helper, privateKey}) => {265 const alice = privateKey('//Alice');266 const collection = await helper.rft.mintCollection(alice, {name: 'A', description: 'B', tokenPrefix: 'C'});267268 const owner = privateKey('//Bob');269 const spender = await helper.eth.createAccountWithBalance(alice, 100n);270271 const token = await collection.mintToken(alice, 100n, {Substrate: owner.address});272273 const address = helper.ethAddress.fromCollectionId(collection.collectionId);274 const contract = helper.ethNativeContract.collection(address, 'rft');275276 await token.repartition(owner, 15n);277 await token.approve(owner, {Ethereum: spender}, 15n);278279 {280 const ownerCross = helper.ethCrossAccount.fromKeyringPair(owner);281 const result = await contract.methods.burnFromCross(ownerCross, token.tokenId).send({from: spender});282 const event = result.events.Transfer;283 expect(event).to.be.like({284 address: helper.ethAddress.fromCollectionId(collection.collectionId),285 event: 'Transfer',286 returnValues: {287 from: helper.address.substrateToEth(owner.address),288 to: '0x0000000000000000000000000000000000000000',289 tokenId: token.tokenId.toString(),290 },291 });292 }293294 expect(await collection.getTokenBalance(token.tokenId, {Substrate: owner.address})).to.be.eq(0n);295 });296297 itEth('Can perform transferFromCross()', async ({helper, privateKey}) => {298 const collection = await helper.rft.mintCollection(donor, {name: 'A', description: 'B', tokenPrefix: 'C'});299300 const owner = privateKey('//Bob');301 const spender = await helper.eth.createAccountWithBalance(donor, 100n);302 const receiver = privateKey('//Charlie');303304 const token = await collection.mintToken(donor, 100n, {Substrate: owner.address});305306 const address = helper.ethAddress.fromCollectionId(collection.collectionId);307 const contract = helper.ethNativeContract.collection(address, 'rft');308309 await token.repartition(owner, 15n);310 await token.approve(owner, {Ethereum: spender}, 15n);311312 {313 const ownerCross = helper.ethCrossAccount.fromKeyringPair(owner);314 const recieverCross = helper.ethCrossAccount.fromKeyringPair(receiver);315 const result = await contract.methods.transferFromCross(ownerCross, recieverCross, token.tokenId).send({from: spender});316 const event = result.events.Transfer;317 expect(event).to.be.like({318 address: helper.ethAddress.fromCollectionId(collection.collectionId),319 event: 'Transfer',320 returnValues: {321 from: helper.address.substrateToEth(owner.address),322 to: helper.address.substrateToEth(receiver.address),323 tokenId: token.tokenId.toString(),324 },325 });326 }327328 expect(await token.getTop10Owners()).to.be.like([{Substrate: receiver.address}]);329 });330331 itEth('Can perform transfer()', async ({helper}) => {332 const caller = await helper.eth.createAccountWithBalance(donor);333 const receiver = helper.eth.createAccount();334 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'Transferry', '6', '6');335 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);336337 const result = await contract.methods.mint(caller).send();338 const tokenId = result.events.Transfer.returnValues.tokenId;339340 {341 const result = await contract.methods.transfer(receiver, tokenId).send();342343 const event = result.events.Transfer;344 expect(event.address).to.equal(collectionAddress);345 expect(event.returnValues.from).to.equal(caller);346 expect(event.returnValues.to).to.equal(receiver);347 expect(event.returnValues.tokenId).to.equal(tokenId.toString());348 }349350 {351 const balance = await contract.methods.balanceOf(caller).call();352 expect(+balance).to.equal(0);353 }354355 {356 const balance = await contract.methods.balanceOf(receiver).call();357 expect(+balance).to.equal(1);358 }359 });360361 itEth('transfer event on transfer from partial ownership to full ownership', async ({helper}) => {362 const caller = await helper.eth.createAccountWithBalance(donor);363 const receiver = helper.eth.createAccount();364 const {collectionId, collectionAddress} = await helper.eth.createRFTCollection(caller, 'Transferry-Partial-to-Full', '6', '6');365 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);366367 const result = await contract.methods.mint(caller).send();368 const tokenId = result.events.Transfer.returnValues.tokenId;369370 const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, caller);371372 await tokenContract.methods.repartition(2).send();373 await tokenContract.methods.transfer(receiver, 1).send();374375 const events: any = [];376 contract.events.allEvents((_: any, event: any) => {377 events.push(event);378 });379380 await tokenContract.methods.transfer(receiver, 1).send();381 if (events.length == 0) await helper.wait.newBlocks(1);382 const event = events[0];383384 expect(event.address).to.equal(collectionAddress);385 expect(event.returnValues.from).to.equal('0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF');386 expect(event.returnValues.to).to.equal(receiver);387 expect(event.returnValues.tokenId).to.equal(tokenId.toString());388 });389390 itEth('transfer event on transfer from full ownership to partial ownership', async ({helper}) => {391 const caller = await helper.eth.createAccountWithBalance(donor);392 const receiver = helper.eth.createAccount();393 const {collectionId, collectionAddress} = await helper.eth.createRFTCollection(caller, 'Transferry-Full-to-Partial', '6', '6');394 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);395396 const result = await contract.methods.mint(caller).send();397 const tokenId = result.events.Transfer.returnValues.tokenId;398399 const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, caller);400401 await tokenContract.methods.repartition(2).send();402403 const events: any = [];404 contract.events.allEvents((_: any, event: any) => {405 events.push(event);406 });407408 await tokenContract.methods.transfer(receiver, 1).send();409 if (events.length == 0) await helper.wait.newBlocks(1);410 const event = events[0];411412 expect(event.address).to.equal(collectionAddress);413 expect(event.returnValues.from).to.equal(caller);414 expect(event.returnValues.to).to.equal('0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF');415 expect(event.returnValues.tokenId).to.equal(tokenId.toString());416 });417});418419describe('RFT: Fees', () => {420 let donor: IKeyringPair;421422 before(async function() {423 await usingEthPlaygrounds(async (helper, privateKey) => {424 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);425426 donor = await privateKey({filename: __filename});427 });428 });429430 itEth('transferFrom() call fee is less than 0.2UNQ', async ({helper}) => {431 const caller = await helper.eth.createAccountWithBalance(donor);432 const receiver = helper.eth.createAccount();433 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'Feeful-Transfer-From', '6', '6');434 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);435436 const result = await contract.methods.mint(caller).send();437 const tokenId = result.events.Transfer.returnValues.tokenId;438439 const cost = await helper.eth.recordCallFee(caller, () => contract.methods.transferFrom(caller, receiver, tokenId).send());440 expect(cost < BigInt(0.2 * Number(helper.balance.getOneTokenNominal())));441 expect(cost > 0n);442 });443444 itEth('transfer() call fee is less than 0.2UNQ', async ({helper}) => {445 const caller = await helper.eth.createAccountWithBalance(donor);446 const receiver = helper.eth.createAccount();447 const {collectionAddress} = await helper.eth.createRFTCollection(caller, 'Feeful-Transfer', '6', '6');448 const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', caller);449450 const result = await contract.methods.mint(caller).send();451 const tokenId = result.events.Transfer.returnValues.tokenId;452453 const cost = await helper.eth.recordCallFee(caller, () => contract.methods.transfer(receiver, tokenId).send());454 expect(cost < BigInt(0.2 * Number(helper.balance.getOneTokenNominal())));455 expect(cost > 0n);456 });457});458459describe('Common metadata', () => {460 let donor: IKeyringPair;461 let alice: IKeyringPair;462463 before(async function() {464 await usingEthPlaygrounds(async (helper, privateKey) => {465 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);466467 donor = await privateKey({filename: __filename});468 [alice] = await helper.arrange.createAccounts([20n], donor);469 });470 });471472 itEth('Returns collection name', async ({helper}) => {473 const caller = helper.eth.createAccount();474 const tokenPropertyPermissions = [{475 key: 'URI',476 permission: {477 mutable: true,478 collectionAdmin: true,479 tokenOwner: false,480 },481 }];482 const collection = await helper.rft.mintCollection(483 alice,484 {485 name: 'Leviathan',486 tokenPrefix: '11',487 properties: [{key: 'ERC721Metadata', value: '1'}],488 tokenPropertyPermissions,489 },490 );491492 const contract = helper.ethNativeContract.collectionById(collection.collectionId, 'rft', caller);493 const name = await contract.methods.name().call();494 expect(name).to.equal('Leviathan');495 });496497 itEth('Returns symbol name', async ({helper}) => {498 const caller = await helper.eth.createAccountWithBalance(donor);499 const tokenPropertyPermissions = [{500 key: 'URI',501 permission: {502 mutable: true,503 collectionAdmin: true,504 tokenOwner: false,505 },506 }];507 const {collectionId} = await helper.rft.mintCollection(508 alice,509 {510 name: 'Leviathan',511 tokenPrefix: '12',512 properties: [{key: 'ERC721Metadata', value: '1'}],513 tokenPropertyPermissions,514 },515 );516517 const contract = helper.ethNativeContract.collectionById(collectionId, 'rft', caller);518 const symbol = await contract.methods.symbol().call();519 expect(symbol).to.equal('12');520 });521});