1234567891011121314151617import {readFile} from 'fs/promises';18import {IKeyringPair} from '@polkadot/types/types';19import {EthUniqueHelper, itEth, usingEthPlaygrounds, expect} from '../util/playgrounds';202122async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {23 24 const owner = await helper.eth.createAccountWithBalance(donor);25 const web3 = helper.getWeb3();26 const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${__dirname}/UniqueNFTProxy.abi`)).toString()), undefined, {27 from: owner,28 gas: helper.eth.DEFAULT_GAS,29 });30 const proxy = await proxyContract.deploy({data: (await readFile(`${__dirname}/UniqueNFTProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});31 return proxy;32}3334describe('NFT (Via EVM proxy): Information getting', () => {35 let alice: IKeyringPair;36 let donor: IKeyringPair;3738 before(async function() {39 await usingEthPlaygrounds(async (helper, privateKey) => {40 donor = privateKey('//Alice');41 [alice] = await helper.arrange.createAccounts([10n], donor);42 });43 });4445 itEth('totalSupply', async ({helper}) => {46 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});47 const caller = await helper.eth.createAccountWithBalance(donor);48 await collection.mintToken(alice, {Substrate: alice.address});4950 const address = helper.ethAddress.fromCollectionId(collection.collectionId);51 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);52 const contract = await proxyWrap(helper, evmCollection, donor);53 const totalSupply = await contract.methods.totalSupply().call();5455 expect(totalSupply).to.equal('1');56 });5758 itEth('balanceOf', async ({helper}) => {59 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});6061 const caller = await helper.eth.createAccountWithBalance(donor);62 await collection.mintMultipleTokens(alice, [63 {owner: {Ethereum: caller}},64 {owner: {Ethereum: caller}},65 {owner: {Ethereum: caller}},66 ]);6768 const address = helper.ethAddress.fromCollectionId(collection.collectionId);69 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);70 const contract = await proxyWrap(helper, evmCollection, donor);71 const balance = await contract.methods.balanceOf(caller).call();7273 expect(balance).to.equal('3');74 });7576 itEth('ownerOf', async ({helper}) => {77 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});7879 const caller = await helper.eth.createAccountWithBalance(donor);80 const {tokenId} = await collection.mintToken(alice, {Ethereum: caller});8182 const address = helper.ethAddress.fromCollectionId(collection.collectionId);83 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);84 const contract = await proxyWrap(helper, evmCollection, donor);85 const owner = await contract.methods.ownerOf(tokenId).call();8687 expect(owner).to.equal(caller);88 });89});9091describe('NFT (Via EVM proxy): Plain calls', () => {92 let alice: IKeyringPair;93 let donor: IKeyringPair;9495 before(async function() {96 await usingEthPlaygrounds(async (helper, privateKey) => {97 donor = privateKey('//Alice');98 [alice] = await helper.arrange.createAccounts([10n], donor);99 });100 });101102 itEth('Can perform mint()', async ({helper}) => {103 const owner = await helper.eth.createAccountWithBalance(donor);104 const {collectionAddress} = await helper.eth.createNonfungibleCollection(owner, 'A', 'A', 'A');105 const caller = await helper.eth.createAccountWithBalance(donor);106 const receiver = helper.eth.createAccount();107108 const collectionEvmOwned = helper.ethNativeContract.collection(collectionAddress, 'nft', owner);109 const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', caller);110 const contract = await proxyWrap(helper, collectionEvm, donor);111 await collectionEvmOwned.methods.addCollectionAdmin(contract.options.address).send();112113 {114 const nextTokenId = await contract.methods.nextTokenId().call();115 expect(nextTokenId).to.be.equal('1');116 const result = await contract.methods.mintWithTokenURI(117 receiver,118 nextTokenId,119 'Test URI',120 ).send({from: caller});121 const events = helper.eth.normalizeEvents(result.events);122 events[0].address = events[0].address.toLocaleLowerCase();123124 expect(events).to.be.deep.equal([125 {126 address: collectionAddress.toLocaleLowerCase(),127 event: 'Transfer',128 args: {129 from: '0x0000000000000000000000000000000000000000',130 to: receiver,131 tokenId: nextTokenId,132 },133 },134 ]);135136 expect(await contract.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');137 }138 });139140 141 itEth.skip('Can perform mintBulk()', async ({helper}) => {142 const collection = await helper.nft.mintCollection(donor, {name: 'New', description: 'New collection', tokenPrefix: 'NEW'});143144 const caller = await helper.eth.createAccountWithBalance(donor, 30n);145 const receiver = helper.eth.createAccount();146147 const address = helper.ethAddress.fromCollectionId(collection.collectionId);148 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);149 const contract = await proxyWrap(helper, evmCollection, donor);150 await collection.addAdmin(donor, {Ethereum: contract.options.address});151152 {153 const nextTokenId = await contract.methods.nextTokenId().call();154 expect(nextTokenId).to.be.equal('1');155 const result = await contract.methods.mintBulkWithTokenURI(156 receiver,157 [158 [nextTokenId, 'Test URI 0'],159 [+nextTokenId + 1, 'Test URI 1'],160 [+nextTokenId + 2, 'Test URI 2'],161 ],162 ).send({from: caller});163 const events = helper.eth.normalizeEvents(result.events);164165 expect(events).to.be.deep.equal([166 {167 address,168 event: 'Transfer',169 args: {170 from: '0x0000000000000000000000000000000000000000',171 to: receiver,172 tokenId: nextTokenId,173 },174 },175 {176 address,177 event: 'Transfer',178 args: {179 from: '0x0000000000000000000000000000000000000000',180 to: receiver,181 tokenId: String(+nextTokenId + 1),182 },183 },184 {185 address,186 event: 'Transfer',187 args: {188 from: '0x0000000000000000000000000000000000000000',189 to: receiver,190 tokenId: String(+nextTokenId + 2),191 },192 },193 ]);194195 expect(await contract.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI 0');196 expect(await contract.methods.tokenURI(+nextTokenId + 1).call()).to.be.equal('Test URI 1');197 expect(await contract.methods.tokenURI(+nextTokenId + 2).call()).to.be.equal('Test URI 2');198 }199 });200201 itEth('Can perform burn()', async ({helper}) => {202 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});203 const caller = await helper.eth.createAccountWithBalance(donor);204205 const address = helper.ethAddress.fromCollectionId(collection.collectionId);206 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);207 const contract = await proxyWrap(helper, evmCollection, donor);208 const {tokenId} = await collection.mintToken(alice, {Ethereum: contract.options.address});209 await collection.addAdmin(alice, {Ethereum: contract.options.address});210211 {212 const result = await contract.methods.burn(tokenId).send({from: caller});213 const events = helper.eth.normalizeEvents(result.events);214215 expect(events).to.be.deep.equal([216 {217 address,218 event: 'Transfer',219 args: {220 from: contract.options.address,221 to: '0x0000000000000000000000000000000000000000',222 tokenId: tokenId.toString(),223 },224 },225 ]);226 }227 });228229 itEth('Can perform approve()', async ({helper}) => {230 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});231 const caller = await helper.eth.createAccountWithBalance(donor);232 const spender = helper.eth.createAccount();233234 const address = helper.ethAddress.fromCollectionId(collection.collectionId);235 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);236 const contract = await proxyWrap(helper, evmCollection, donor);237 const {tokenId} = await collection.mintToken(alice, {Ethereum: contract.options.address});238239 {240 const result = await contract.methods.approve(spender, tokenId).send({from: caller, gas: helper.eth.DEFAULT_GAS});241 const events = helper.eth.normalizeEvents(result.events);242243 expect(events).to.be.deep.equal([244 {245 address,246 event: 'Approval',247 args: {248 owner: contract.options.address,249 approved: spender,250 tokenId: tokenId.toString(),251 },252 },253 ]);254 }255 });256257 itEth('Can perform transferFrom()', async ({helper}) => {258 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});259 const caller = await helper.eth.createAccountWithBalance(donor);260 const owner = await helper.eth.createAccountWithBalance(donor);261262 const receiver = helper.eth.createAccount();263264 const address = helper.ethAddress.fromCollectionId(collection.collectionId);265 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);266 const contract = await proxyWrap(helper, evmCollection, donor);267 const {tokenId} = await collection.mintToken(alice, {Ethereum: owner});268269 await evmCollection.methods.approve(contract.options.address, tokenId).send({from: owner});270271 {272 const result = await contract.methods.transferFrom(owner, receiver, tokenId).send({from: caller});273 const events = helper.eth.normalizeEvents(result.events);274 expect(events).to.be.deep.equal([275 {276 address,277 event: 'Transfer',278 args: {279 from: owner,280 to: receiver,281 tokenId: tokenId.toString(),282 },283 },284 ]);285 }286287 {288 const balance = await contract.methods.balanceOf(receiver).call();289 expect(+balance).to.equal(1);290 }291292 {293 const balance = await contract.methods.balanceOf(contract.options.address).call();294 expect(+balance).to.equal(0);295 }296 });297298 itEth('Can perform transfer()', async ({helper}) => {299 const collection = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'});300 const caller = await helper.eth.createAccountWithBalance(donor);301 const receiver = helper.eth.createAccount();302303 const address = helper.ethAddress.fromCollectionId(collection.collectionId);304 const evmCollection = helper.ethNativeContract.collection(address, 'nft', caller);305 const contract = await proxyWrap(helper, evmCollection, donor);306 const {tokenId} = await collection.mintToken(alice, {Ethereum: contract.options.address});307308 {309 const result = await contract.methods.transfer(receiver, tokenId).send({from: caller});310 const events = helper.eth.normalizeEvents(result.events);311 expect(events).to.be.deep.equal([312 {313 address,314 event: 'Transfer',315 args: {316 from: contract.options.address,317 to: receiver,318 tokenId: tokenId.toString(),319 },320 },321 ]);322 }323324 {325 const balance = await contract.methods.balanceOf(contract.options.address).call();326 expect(+balance).to.equal(0);327 }328329 {330 const balance = await contract.methods.balanceOf(receiver).call();331 expect(+balance).to.equal(1);332 }333 });334});