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

difftreelog

chore fix code review requests

Grigoriy Simonov2022-12-23parent: #39a2c66.patch.diff
in: master

3 files changed

modifiedruntime/common/ethereum/sponsoring/refungible.rsdiffbeforeafterboth
--- a/runtime/common/ethereum/sponsoring/refungible.rs
+++ b/runtime/common/ethereum/sponsoring/refungible.rs
@@ -233,15 +233,22 @@
 			| TokenContractAddress { .. } => None,
 
 			// Not sponsored
-			TransferCross { .. }
-			| TransferFromCross { .. }
 			| BurnFrom { .. }
-			| BurnFromCross { .. }
-			| MintCross { .. }
+			| BurnFromCross { .. } => None,
+			
+			MintCross { .. }
 			| MintBulk { .. }
-			| MintBulkWithTokenUri { .. } => None,
+			| MintBulkWithTokenUri { .. } => {
+				withdraw_create_item::<T>(
+					&collection,
+					&who,
+					&CreateItemData::NFT(CreateNftData::default()),
+				)
+			}
 
-			Transfer { token_id, .. } => {
+			TransferCross { token_id, .. }
+			| TransferFromCross { token_id, .. }
+			| Transfer { token_id, .. } => {
 				let token_id = TokenId::try_from(token_id).ok()?;
 				withdraw_transfer::<T>(&collection, &who, &token_id)
 			}
@@ -321,8 +328,8 @@
 
 	pub fn unique_extensions_call_sponsor<T>(
 		call: ERC20UniqueExtensionsCall<T>,
-		_token: RefungibleTokenHandle<T>,
-		_who: &T::CrossAccountId,
+		token: RefungibleTokenHandle<T>,
+		who: &T::CrossAccountId,
 	) -> Option<()>
 	where
 		T: UniqueConfig + FungibleConfig + NonfungibleConfig + RefungibleConfig,
@@ -336,10 +343,20 @@
 			// Not sponsored
 			BurnFrom { .. }
 			| BurnFromCross { .. }
-			| ApproveCross { .. }
-			| TransferCross { .. }
-			| TransferFromCross { .. }
 			| Repartition { .. } => None,
+			
+			TransferCross { .. }
+			| TransferFromCross { .. } => {
+				let RefungibleTokenHandle(handle, token_id) = token;
+				let token_id = token_id.try_into().ok()?;
+				withdraw_transfer::<T>(&handle, &who, &token_id)
+			}
+
+			ApproveCross { .. } => {
+				let RefungibleTokenHandle(handle, token_id) = token;
+				let token_id = token_id.try_into().ok()?;
+				withdraw_approve::<T>(&handle, who.as_sub(), &token_id)
+			}
 		}
 	}
 }
modifiedtests/src/eth/abi/reFungibleDeprecated.jsondiffbeforeafterboth
--- a/tests/src/eth/abi/reFungibleDeprecated.json
+++ b/tests/src/eth/abi/reFungibleDeprecated.json
@@ -98,5 +98,33 @@
     "outputs": [],
     "stateMutability": "nonpayable",
     "type": "function"
+  },
+  {
+    "inputs": [
+      { "internalType": "address", "name": "to", "type": "address" },
+      { "internalType": "uint256[]", "name": "tokenIds", "type": "uint256[]" }
+    ],
+    "name": "mintBulk",
+    "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+    "stateMutability": "nonpayable",
+    "type": "function"
+  },
+  {
+    "inputs": [
+      { "internalType": "address", "name": "to", "type": "address" },
+      {
+        "components": [
+          { "internalType": "uint256", "name": "field_0", "type": "uint256" },
+          { "internalType": "string", "name": "field_1", "type": "string" }
+        ],
+        "internalType": "struct Tuple0[]",
+        "name": "tokens",
+        "type": "tuple[]"
+      }
+    ],
+    "name": "mintBulkWithTokenURI",
+    "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
+    "stateMutability": "nonpayable",
+    "type": "function"
   }
 ]
modifiedtests/src/eth/collectionSponsoring.test.tsdiffbeforeafterboth
before · tests/src/eth/collectionSponsoring.test.ts
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 {IKeyringPair} from '@polkadot/types/types';18import {Pallets, requirePalletsOrSkip, usingPlaygrounds} from '../util/index';19import {itEth, expect} from './util';2021describe('evm nft collection sponsoring', () => {22  let donor: IKeyringPair;23  let alice: IKeyringPair;24  let nominal: bigint;2526  before(async () => {27    await usingPlaygrounds(async (helper, privateKey) => {28      donor = await privateKey({filename: __filename});29      [alice] = await helper.arrange.createAccounts([100n], donor);30      nominal = helper.balance.getOneTokenNominal();31    });32  });3334  // TODO: move to substrate tests35  itEth('sponsors mint transactions', async ({helper}) => {36    const collection = await helper.nft.mintCollection(alice, {tokenPrefix: 'spnr', permissions: {mintMode: true}});37    await collection.setSponsor(alice, alice.address);38    await collection.confirmSponsorship(alice);3940    const minter = helper.eth.createAccount();41    expect(await helper.balance.getEthereum(minter)).to.equal(0n);4243    const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);44    const contract = await helper.ethNativeContract.collection(collectionAddress, 'nft', minter);4546    await collection.addToAllowList(alice, {Ethereum: minter});4748    const result = await contract.methods.mint(minter).send();4950    const events = helper.eth.normalizeEvents(result.events);51    expect(events).to.be.deep.equal([52      {53        address: collectionAddress,54        event: 'Transfer',55        args: {56          from: '0x0000000000000000000000000000000000000000',57          to: minter,58          tokenId: '1',59        },60      },61    ]);62  });6364  // TODO: Temprorary off. Need refactor65  // itWeb3('Set substrate sponsor', async ({api, web3, privateKeyWrapper}) => {66  //   const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);67  //   const collectionHelpers = evmCollectionHelpers(web3, owner);68  //   let result = await collectionHelpers.methods.createNFTCollection('Sponsor collection', '1', '1').send();69  //   const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);70  //   const sponsor = privateKeyWrapper('//Alice');71  //   const collectionEvm = evmCollection(web3, owner, collectionIdAddress);7273  //   expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;74  //   result = await collectionEvm.methods.setCollectionSponsorSubstrate(sponsor.addressRaw).send({from: owner});75  //   expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.true;7677  //   const confirmTx = await api.tx.unique.confirmSponsorship(collectionId);78  //   await submitTransactionAsync(sponsor, confirmTx);79  //   expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;8081  //   const sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});82  //   expect(bigIntToSub(api, BigInt(sponsorTuple[1]))).to.be.eq(sponsor.address);83  // });8485  [86    'setCollectionSponsorCross',87    'setCollectionSponsor', // Soft-deprecated88  ].map(testCase =>89    itEth(`[${testCase}] can remove collection sponsor`, async ({helper}) => {90      const owner = await helper.eth.createAccountWithBalance(donor);91      const collectionHelpers = await helper.ethNativeContract.collectionHelpers(owner);9293      let result = await collectionHelpers.methods.createNFTCollection('Sponsor collection', '1', '1').send({value: Number(2n * nominal)});94      const collectionIdAddress = helper.ethAddress.normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);95      const sponsor = await helper.eth.createAccountWithBalance(donor);96      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);97      const collectionEvm = await helper.ethNativeContract.collection(collectionIdAddress, 'nft', owner, testCase === 'setCollectionSponsor');9899      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;100      result = await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send({from: owner});101      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.true;102103      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});104      let sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});105      expect(helper.address.restoreCrossAccountFromBigInt(BigInt(sponsorTuple.sub))).to.be.eq(helper.address.ethToSubstrate(sponsor, true));106      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;107108      await collectionEvm.methods.removeCollectionSponsor().send({from: owner});109110      sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});111      expect(sponsorTuple.eth).to.be.eq('0x0000000000000000000000000000000000000000');112    }));113114  [115    'setCollectionSponsorCross',116    'setCollectionSponsor', // Soft-deprecated117  ].map(testCase =>118    itEth(`[${testCase}] Can sponsor from evm address via access list`, async ({helper}) => {119      const owner = await helper.eth.createAccountWithBalance(donor);120      const sponsorEth = await helper.eth.createAccountWithBalance(donor);121      const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);122123      const {collectionId, collectionAddress} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner, 'Sponsor collection', '1', '1', '');124125      const collectionSub = helper.nft.getCollectionObject(collectionId);126      const collectionEvm = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner, testCase === 'setCollectionSponsor');127128      // Set collection sponsor:129      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsorEth : sponsorCrossEth).send({from: owner});130      let sponsorship = (await collectionSub.getData())!.raw.sponsorship;131      expect(sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));132      // Account cannot confirm sponsorship if it is not set as a sponsor133      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');134135      // Sponsor can confirm sponsorship:136      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});137      sponsorship = (await collectionSub.getData())!.raw.sponsorship;138      expect(sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));139140      // Create user with no balance:141      const user = helper.eth.createAccount();142      const userCross = helper.ethCrossAccount.fromAddress(user);143      const nextTokenId = await collectionEvm.methods.nextTokenId().call();144      expect(nextTokenId).to.be.equal('1');145146      // Set collection permissions:147      const oldPermissions = (await collectionSub.getData())!.raw.permissions;148      expect(oldPermissions.mintMode).to.be.false;149      expect(oldPermissions.access).to.be.equal('Normal');150151      await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});152      await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});153      await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});154  155      const newPermissions = (await collectionSub.getData())!.raw.permissions;156      expect(newPermissions.mintMode).to.be.true;157      expect(newPermissions.access).to.be.equal('AllowList');158159      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));160      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));161162      // User can mint token without balance:163      {164        const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});165        const event = helper.eth.normalizeEvents(result.events)166          .find(event => event.event === 'Transfer');167168        expect(event).to.be.deep.equal({169          address: collectionAddress,170          event: 'Transfer',171          args: {172            from: '0x0000000000000000000000000000000000000000',173            to: user,174            tokenId: '1',175          },176        });177178        const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));179        const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));180        const userBalanceAfter =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));181182        expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');183        expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);184        expect(userBalanceAfter).to.be.eq(0n);185        expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;186      }187    }));188189  // TODO: Temprorary off. Need refactor190  // itWeb3('Sponsoring collection from substrate address via access list', async ({api, web3, privateKeyWrapper}) => {191  //   const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);192  //   const collectionHelpers = evmCollectionHelpers(web3, owner);193  //   const result = await collectionHelpers.methods.createERC721MetadataCompatibleNFTCollection('Sponsor collection', '1', '1', '').send();194  //   const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);195  //   const sponsor = privateKeyWrapper('//Alice');196  //   const collectionEvm = evmCollection(web3, owner, collectionIdAddress);197198  //   await collectionEvm.methods.setCollectionSponsorSubstrate(sponsor.addressRaw).send({from: owner});199200  //   const confirmTx = await api.tx.unique.confirmSponsorship(collectionId);201  //   await submitTransactionAsync(sponsor, confirmTx);202203  //   const user = createEthAccount(web3);204  //   const nextTokenId = await collectionEvm.methods.nextTokenId().call();205  //   expect(nextTokenId).to.be.equal('1');206207  //   await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});208  //   await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});209  //   await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});210211  //   const ownerBalanceBefore = await ethBalanceViaSub(api, owner);212  //   const sponsorBalanceBefore = (await getBalance(api, [sponsor.address]))[0];213214  //   {215  //     const nextTokenId = await collectionEvm.methods.nextTokenId().call();216  //     expect(nextTokenId).to.be.equal('1');217  //     const result = await collectionEvm.methods.mintWithTokenURI(218  //       user,219  //       nextTokenId,220  //       'Test URI',221  //     ).send({from: user});222  //     const events = normalizeEvents(result.events);223224  //     expect(events).to.be.deep.equal([225  //       {226  //         address: collectionIdAddress,227  //         event: 'Transfer',228  //         args: {229  //           from: '0x0000000000000000000000000000000000000000',230  //           to: user,231  //           tokenId: nextTokenId,232  //         },233  //       },234  //     ]);235236  //     const ownerBalanceAfter = await ethBalanceViaSub(api, owner);237  //     const sponsorBalanceAfter = (await getBalance(api, [sponsor.address]))[0];238239  //     expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');240  //     expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);241  //     expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;242  //   }243  // });244245  [246    'setCollectionSponsorCross',247    'setCollectionSponsor', // Soft-deprecated248  ].map(testCase =>249    itEth(`[${testCase}] Check that transaction via EVM spend money from sponsor address`, async ({helper}) => {250      const owner = await helper.eth.createAccountWithBalance(donor);251      const sponsor = await helper.eth.createAccountWithBalance(donor);252      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);253254      const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner,'Sponsor collection', '1', '1', '');255256      const collectionSub = helper.nft.getCollectionObject(collectionId);257      const collectionEvm = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner, testCase === 'setCollectionSponsor');258      // Set collection sponsor:259      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send();260      let collectionData = (await collectionSub.getData())!;261      expect(collectionData.raw.sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));262      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');263264      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});265      collectionData = (await collectionSub.getData())!;266      expect(collectionData.raw.sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));267268      const user = helper.eth.createAccount();269      const userCross = helper.ethCrossAccount.fromAddress(user);270      await collectionEvm.methods.addCollectionAdminCross(userCross).send();271272      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));273      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));274275      const mintingResult = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});276      const tokenId = mintingResult.events.Transfer.returnValues.tokenId;277278      const event = helper.eth.normalizeEvents(mintingResult.events)279        .find(event => event.event === 'Transfer');280      const address = helper.ethAddress.fromCollectionId(collectionId);281282      expect(event).to.be.deep.equal({283        address,284        event: 'Transfer',285        args: {286          from: '0x0000000000000000000000000000000000000000',287          to: user,288          tokenId: '1',289        },290      });291      expect(await collectionEvm.methods.tokenURI(tokenId).call({from: user})).to.be.equal('Test URI');292293      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));294      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);295      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));296      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;297    }));298299  itEth('Can reassign collection sponsor', async ({helper}) => {300    const owner = await helper.eth.createAccountWithBalance(donor);301    const sponsorEth = await helper.eth.createAccountWithBalance(donor);302    const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);303    const [sponsorSub] = await helper.arrange.createAccounts([100n], donor);304    const sponsorCrossSub = helper.ethCrossAccount.fromKeyringPair(sponsorSub);305306    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner,'Sponsor collection', '1', '1', '');307    const collectionSub = helper.nft.getCollectionObject(collectionId);308    const collectionEvm = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner);309310    // Set and confirm sponsor:311    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossEth).send({from: owner});312    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});313314    // Can reassign sponsor:315    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossSub).send({from: owner});316    const collectionSponsor = (await collectionSub.getData())?.raw.sponsorship;317    expect(collectionSponsor).to.deep.eq({Unconfirmed: sponsorSub.address});318  });319});320321describe('evm RFT collection sponsoring', () => {322  let donor: IKeyringPair;323  let alice: IKeyringPair;324  let nominal: bigint;325326  before(async function() {327    await usingPlaygrounds(async (helper, privateKey) => {328      requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);329      donor = await privateKey({filename: __filename});330      [alice] = await helper.arrange.createAccounts([100n], donor);331      nominal = helper.balance.getOneTokenNominal();332    });333  });334  335  itEth('sponsors mint transactions', async ({helper}) => {336    const collection = await helper.rft.mintCollection(alice, {tokenPrefix: 'spnr', permissions: {mintMode: true}});337    await collection.setSponsor(alice, alice.address);338    await collection.confirmSponsorship(alice);339340    const minter = helper.eth.createAccount();341    expect(await helper.balance.getEthereum(minter)).to.equal(0n);342343    const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);344    const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', minter);345346    await collection.addToAllowList(alice, {Ethereum: minter});347348    const result = await contract.methods.mint(minter).send();349350    const events = helper.eth.normalizeEvents(result.events);351    expect(events).to.deep.include({352      address: collectionAddress,353      event: 'Transfer',354      args: {355        from: '0x0000000000000000000000000000000000000000',356        to: minter,357        tokenId: '1',358      },359    });360  });361362  [363    'setCollectionSponsorCross',364    'setCollectionSponsor', // Soft-deprecated365  ].map(testCase => 366    itEth(`[${testCase}] can remove collection sponsor`, async ({helper}) => {367      const owner = await helper.eth.createAccountWithBalance(donor);368      const collectionHelpers = helper.ethNativeContract.collectionHelpers(owner);369  370      let result = await collectionHelpers.methods.createRFTCollection('Sponsor collection', '1', '1').send({value: Number(2n * nominal)});371      const collectionIdAddress = helper.ethAddress.normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);372      const sponsor = await helper.eth.createAccountWithBalance(donor);373      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);374      const collectionEvm = helper.ethNativeContract.collection(collectionIdAddress, 'rft', owner, testCase === 'setCollectionSponsor');375  376      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;377      result = await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send({from: owner});378      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.true;379  380      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});381      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;382  383      await collectionEvm.methods.removeCollectionSponsor().send({from: owner});384  385      const sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});386      expect(sponsorTuple.eth).to.be.eq('0x0000000000000000000000000000000000000000');387    }));388389  [390    'setCollectionSponsorCross',391    'setCollectionSponsor', // Soft-deprecated392  ].map(testCase => 393    itEth(`[${testCase}] Can sponsor from evm address via access list`, async ({helper}) => {394      const owner = await helper.eth.createAccountWithBalance(donor);395      const sponsorEth = await helper.eth.createAccountWithBalance(donor);396      const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);397  398      const {collectionId, collectionAddress} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner, 'Sponsor collection', '1', '1', '');399  400      const collectionSub = helper.rft.getCollectionObject(collectionId);401      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, testCase === 'setCollectionSponsor');402  403      // Set collection sponsor:404      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsorEth : sponsorCrossEth).send({from: owner});405      let sponsorship = (await collectionSub.getData())!.raw.sponsorship;406      expect(sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));407      // Account cannot confirm sponsorship if it is not set as a sponsor408      //await collectionEvm.methods.confirmCollectionSponsorship().call();409      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');410      411      // Sponsor can confirm sponsorship:412      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});413      sponsorship = (await collectionSub.getData())!.raw.sponsorship;414      expect(sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));415  416      // Create user with no balance:417      const user = helper.eth.createAccount();418      const userCross = helper.ethCrossAccount.fromAddress(user);419      const nextTokenId = await collectionEvm.methods.nextTokenId().call();420      expect(nextTokenId).to.be.equal('1');421  422      // Set collection permissions:423      const oldPermissions = (await collectionSub.getData())!.raw.permissions;424      expect(oldPermissions.mintMode).to.be.false;425      expect(oldPermissions.access).to.be.equal('Normal');426427      await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});428      await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});429      await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});430  431      const newPermissions = (await collectionSub.getData())!.raw.permissions;432      expect(newPermissions.mintMode).to.be.true;433      expect(newPermissions.access).to.be.equal('AllowList');434  435      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));436      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));437438      // User can mint token without balance:439      {440        const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});441        const events = helper.eth.normalizeEvents(result.events);442443        expect(events).to.deep.include({444          address: collectionAddress,445          event: 'Transfer',446          args: {447            from: '0x0000000000000000000000000000000000000000',448            to: user,449            tokenId: '1',450          },451        });452  453        const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));454        const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));455        const userBalanceAfter =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));456  457        expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');458        expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);459        expect(userBalanceAfter).to.be.eq(0n);460        expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;461      }462    }));463464  [465    'setCollectionSponsorCross',466    'setCollectionSponsor', // Soft-deprecated467  ].map(testCase => 468    itEth(`[${testCase}] Check that transaction via EVM spend money from sponsor address`, async ({helper}) => {469      const owner = await helper.eth.createAccountWithBalance(donor);470      const sponsor = await helper.eth.createAccountWithBalance(donor);471      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);472  473      const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');474475      const collectionSub = helper.rft.getCollectionObject(collectionId);476      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, testCase === 'setCollectionSponsor');477      // Set collection sponsor:478      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send();479      let collectionData = (await collectionSub.getData())!;480      expect(collectionData.raw.sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));481      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');482  483      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});484      collectionData = (await collectionSub.getData())!;485      expect(collectionData.raw.sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));486  487      const user = helper.eth.createAccount();488      const userCross = helper.ethCrossAccount.fromAddress(user);489      await collectionEvm.methods.addCollectionAdminCross(userCross).send();490  491      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));492      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));493    494      const mintingResult = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});495      const tokenId = mintingResult.events.Transfer.returnValues.tokenId;496  497      const events = helper.eth.normalizeEvents(mintingResult.events);498      const address = helper.ethAddress.fromCollectionId(collectionId);499  500      expect(events).to.deep.include({501        address,502        event: 'Transfer',503        args: {504          from: '0x0000000000000000000000000000000000000000',505          to: user,506          tokenId: '1',507        },508      });509      expect(await collectionEvm.methods.tokenURI(tokenId).call({from: user})).to.be.equal('Test URI');510  511      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));512      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);513      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));514      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;515    }));516517  itEth('Check that transaction via EVM spend money from substrate sponsor address', async ({helper}) => {518    const owner = await helper.eth.createAccountWithBalance(donor);519    const sponsor = alice;520    const sponsorCross = helper.ethCrossAccount.fromKeyringPair(sponsor);521522    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');523524    const collectionSub = helper.rft.getCollectionObject(collectionId);525    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, false);526    // Set collection sponsor:527    expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.false;528    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();529    expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.true;530531    await collectionSub.confirmSponsorship(sponsor);532    expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.false;533534    const user = helper.eth.createAccount();535    const userCross = helper.ethCrossAccount.fromAddress(user);536    await collectionEvm.methods.addCollectionAdminCross(userCross).send();537538    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));539    const sponsorBalanceBefore = await helper.balance.getSubstrate(sponsor.address);540  541    const mintingResult = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});542    const tokenId = mintingResult.events.Transfer.returnValues.tokenId;543544    const events = helper.eth.normalizeEvents(mintingResult.events);545546    expect(events).to.deep.include({547      address: collectionAddress,548      event: 'Transfer',549      args: {550        from: '0x0000000000000000000000000000000000000000',551        to: user,552        tokenId: '1',553      },554    });555    expect(await collectionEvm.methods.tokenURI(tokenId).call({from: user})).to.be.equal('Test URI');556557    const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));558    expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);559    const sponsorBalanceAfter = await helper.balance.getSubstrate(sponsor.address);560    expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;561  });562563  itEth('Sponsoring collection from substrate address via access list', async ({helper}) => {564    const owner = await helper.eth.createAccountWithBalance(donor);565    const user = helper.eth.createAccount();566    const userCross =  helper.ethCrossAccount.fromAddress(user);567    const sponsor = alice;568    const sponsorCross = helper.ethCrossAccount.fromKeyringPair(sponsor);569570    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');571    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, false);572573    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send({from: owner});574575    const collectionSub = helper.rft.getCollectionObject(collectionId);576    await collectionSub.confirmSponsorship(sponsor);577578    const nextTokenId = await collectionEvm.methods.nextTokenId().call();579    expect(nextTokenId).to.be.equal('1');580581    await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});582    583    await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});584    await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});585586    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));587    const sponsorBalanceBefore = await helper.balance.getSubstrate(sponsor.address);588589    {590      const nextTokenId = await collectionEvm.methods.nextTokenId().call();591      expect(nextTokenId).to.be.equal('1');592      const mintingResult = await collectionEvm.methods.mintWithTokenURI(593        user,594        'Test URI',595      ).send({from: user});596597      const events = helper.eth.normalizeEvents(mintingResult.events);598      599600      expect(events).to.deep.include({601        address: collectionAddress,602        event: 'Transfer',603        args: {604          from: '0x0000000000000000000000000000000000000000',605          to: user,606          tokenId: nextTokenId,607        },608      });609610      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));611      const sponsorBalanceAfter = await helper.balance.getSubstrate(sponsor.address);612613      expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');614      expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);615      expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;616    }617  });618619  itEth('Can reassign collection sponsor', async ({helper}) => {620    const owner = await helper.eth.createAccountWithBalance(donor);621    const sponsorEth = await helper.eth.createAccountWithBalance(donor);622    const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);623    const [sponsorSub] = await helper.arrange.createAccounts([100n], donor);624    const sponsorCrossSub = helper.ethCrossAccount.fromKeyringPair(sponsorSub);625626    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');627    const collectionSub = helper.rft.getCollectionObject(collectionId);628    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);629630    // Set and confirm sponsor:631    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossEth).send({from: owner});632    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});633634    // Can reassign sponsor:635    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossSub).send({from: owner});636    const collectionSponsor = (await collectionSub.getData())?.raw.sponsorship;637    expect(collectionSponsor).to.deep.eq({Unconfirmed: sponsorSub.address});638  });639});640641describe('evm RFT token sponsoring', () => {642  let donor: IKeyringPair;643644  before(async function() {645    await usingPlaygrounds(async (helper, privateKey) => {646      requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);647      donor = await privateKey({filename: __filename});648    });649  });650651  itEth('[cross] Check that transfer via EVM spend money from sponsor address', async ({helper}) => {652    const owner = await helper.eth.createAccountWithBalance(donor);653654    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');655    const sponsor = await helper.eth.createAccountWithBalance(donor);656    const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);657    const receiver = await helper.eth.createAccountWithBalance(donor);658    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);659660    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();661    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});662663    const user = await helper.eth.createAccountWithBalance(donor);664    const userCross = helper.ethCrossAccount.fromAddress(user);665    await collectionEvm.methods.addCollectionAdminCross(userCross).send();666667    const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});668    const tokenId = result.events.Transfer.returnValues.tokenId;669670    const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, user);    671    await tokenContract.methods.repartition(2).send();672    673    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));674    const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));675    const userBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));676677    await tokenContract.methods.transfer(receiver, 1).send();678679    const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));680    expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);681    const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));682    expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;683    const userBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));684    expect(userBalanceAfter).to.be.eq(userBalanceBefore);685  });686687  itEth('[cross] Check that approve via EVM spend money from sponsor address', async ({helper}) => {688    const owner = await helper.eth.createAccountWithBalance(donor);689690    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');691    const sponsor = await helper.eth.createAccountWithBalance(donor);692    const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);693    const receiver = await helper.eth.createAccountWithBalance(donor);694    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);695696    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();697    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});698699    const user = await helper.eth.createAccountWithBalance(donor);700    const userCross = helper.ethCrossAccount.fromAddress(user);701    await collectionEvm.methods.addCollectionAdminCross(userCross).send();702703    const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});704    const tokenId = result.events.Transfer.returnValues.tokenId;705706    const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, user);    707    await tokenContract.methods.repartition(2).send();708    709    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));710    const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));711    const userBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));712713    await tokenContract.methods.approve(receiver, 1).send();714715    const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));716    expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);717    const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));718    expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;719    const userBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));720    expect(userBalanceAfter).to.be.eq(userBalanceBefore);721  });722  723724  itEth('[cross] Check that transferFrom via EVM spend money from sponsor address', async ({helper}) => {725    const owner = await helper.eth.createAccountWithBalance(donor);726727    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');728    const sponsor = await helper.eth.createAccountWithBalance(donor);729    const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);730    const receiver = await helper.eth.createAccountWithBalance(donor);731    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);732733    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();734    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});735736    const user = await helper.eth.createAccountWithBalance(donor);737    const userCross = helper.ethCrossAccount.fromAddress(user);738    await collectionEvm.methods.addCollectionAdminCross(userCross).send();739740    const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});741    const tokenId = result.events.Transfer.returnValues.tokenId;742743    const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, user);    744    await tokenContract.methods.repartition(2).send();745    await tokenContract.methods.approve(receiver, 1).send();746    747    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));748    const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));749    const userBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));750    const receiverBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(receiver));751752    const receiverTokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, receiver);   753    await receiverTokenContract.methods.transferFrom(user, receiver, 1).send();754755    const receiverBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(receiver));756    expect(receiverBalanceAfter).to.be.eq(receiverBalanceBefore);757    const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));758    expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);759    const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));760    expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;761    const userBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));762    expect(userBalanceAfter).to.be.eq(userBalanceBefore);763  });764});
after · tests/src/eth/collectionSponsoring.test.ts
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 {IKeyringPair} from '@polkadot/types/types';18import {Pallets, requirePalletsOrSkip, usingPlaygrounds} from '../util/index';19import { CrossAccountId } from '../util/playgrounds/unique';20import {itEth, expect} from './util';2122describe('evm nft collection sponsoring', () => {23  let donor: IKeyringPair;24  let alice: IKeyringPair;25  let nominal: bigint;2627  before(async () => {28    await usingPlaygrounds(async (helper, privateKey) => {29      donor = await privateKey({filename: __filename});30      [alice] = await helper.arrange.createAccounts([100n], donor);31      nominal = helper.balance.getOneTokenNominal();32    });33  });3435  // TODO: move to substrate tests36  itEth('sponsors mint transactions', async ({helper}) => {37    const collection = await helper.nft.mintCollection(alice, {tokenPrefix: 'spnr', permissions: {mintMode: true}});38    await collection.setSponsor(alice, alice.address);39    await collection.confirmSponsorship(alice);4041    const minter = helper.eth.createAccount();42    expect(await helper.balance.getEthereum(minter)).to.equal(0n);4344    const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);45    const contract = await helper.ethNativeContract.collection(collectionAddress, 'nft', minter);4647    await collection.addToAllowList(alice, {Ethereum: minter});4849    const result = await contract.methods.mint(minter).send();5051    const events = helper.eth.normalizeEvents(result.events);52    expect(events).to.be.deep.equal([53      {54        address: collectionAddress,55        event: 'Transfer',56        args: {57          from: '0x0000000000000000000000000000000000000000',58          to: minter,59          tokenId: '1',60        },61      },62    ]);63  });6465  // TODO: Temprorary off. Need refactor66  // itWeb3('Set substrate sponsor', async ({api, web3, privateKeyWrapper}) => {67  //   const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);68  //   const collectionHelpers = evmCollectionHelpers(web3, owner);69  //   let result = await collectionHelpers.methods.createNFTCollection('Sponsor collection', '1', '1').send();70  //   const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);71  //   const sponsor = privateKeyWrapper('//Alice');72  //   const collectionEvm = evmCollection(web3, owner, collectionIdAddress);7374  //   expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;75  //   result = await collectionEvm.methods.setCollectionSponsorSubstrate(sponsor.addressRaw).send({from: owner});76  //   expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.true;7778  //   const confirmTx = await api.tx.unique.confirmSponsorship(collectionId);79  //   await submitTransactionAsync(sponsor, confirmTx);80  //   expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;8182  //   const sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});83  //   expect(bigIntToSub(api, BigInt(sponsorTuple[1]))).to.be.eq(sponsor.address);84  // });8586  [87    'setCollectionSponsorCross',88    'setCollectionSponsor', // Soft-deprecated89  ].map(testCase =>90    itEth(`[${testCase}] can remove collection sponsor`, async ({helper}) => {91      const owner = await helper.eth.createAccountWithBalance(donor);92      const collectionHelpers = await helper.ethNativeContract.collectionHelpers(owner);9394      let result = await collectionHelpers.methods.createNFTCollection('Sponsor collection', '1', '1').send({value: Number(2n * nominal)});95      const collectionIdAddress = helper.ethAddress.normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);96      const sponsor = await helper.eth.createAccountWithBalance(donor);97      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);98      const collectionEvm = await helper.ethNativeContract.collection(collectionIdAddress, 'nft', owner, testCase === 'setCollectionSponsor');99100      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;101      result = await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send({from: owner});102      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.true;103104      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});105      let sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});106      expect(helper.address.restoreCrossAccountFromBigInt(BigInt(sponsorTuple.sub))).to.be.eq(helper.address.ethToSubstrate(sponsor, true));107      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;108109      await collectionEvm.methods.removeCollectionSponsor().send({from: owner});110111      sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});112      expect(sponsorTuple.eth).to.be.eq('0x0000000000000000000000000000000000000000');113    }));114115  [116    'setCollectionSponsorCross',117    'setCollectionSponsor', // Soft-deprecated118  ].map(testCase =>119    itEth(`[${testCase}] Can sponsor from evm address via access list`, async ({helper}) => {120      const owner = await helper.eth.createAccountWithBalance(donor);121      const sponsorEth = await helper.eth.createAccountWithBalance(donor);122      const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);123124      const {collectionId, collectionAddress} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner, 'Sponsor collection', '1', '1', '');125126      const collectionSub = helper.nft.getCollectionObject(collectionId);127      const collectionEvm = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner, testCase === 'setCollectionSponsor');128129      // Set collection sponsor:130      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsorEth : sponsorCrossEth).send({from: owner});131      let sponsorship = (await collectionSub.getData())!.raw.sponsorship;132      expect(sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));133      // Account cannot confirm sponsorship if it is not set as a sponsor134      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');135136      // Sponsor can confirm sponsorship:137      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});138      sponsorship = (await collectionSub.getData())!.raw.sponsorship;139      expect(sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));140141      // Create user with no balance:142      const user = helper.eth.createAccount();143      const userCross = helper.ethCrossAccount.fromAddress(user);144      const nextTokenId = await collectionEvm.methods.nextTokenId().call();145      expect(nextTokenId).to.be.equal('1');146147      // Set collection permissions:148      const oldPermissions = (await collectionSub.getData())!.raw.permissions;149      expect(oldPermissions.mintMode).to.be.false;150      expect(oldPermissions.access).to.be.equal('Normal');151152      await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});153      await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});154      await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});155  156      const newPermissions = (await collectionSub.getData())!.raw.permissions;157      expect(newPermissions.mintMode).to.be.true;158      expect(newPermissions.access).to.be.equal('AllowList');159160      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));161      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));162      const userBalanceBefore =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));163164      // User can mint token without balance:165      {166        const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});167        const event = helper.eth.normalizeEvents(result.events)168          .find(event => event.event === 'Transfer');169170        expect(event).to.be.deep.equal({171          address: collectionAddress,172          event: 'Transfer',173          args: {174            from: '0x0000000000000000000000000000000000000000',175            to: user,176            tokenId: '1',177          },178        });179180        const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));181        const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));182        const userBalanceAfter =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));183184        expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');185        expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);186        expect(userBalanceAfter).to.be.eq(userBalanceBefore);187        expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;188      }189    }));190191  // TODO: Temprorary off. Need refactor192  // itWeb3('Sponsoring collection from substrate address via access list', async ({api, web3, privateKeyWrapper}) => {193  //   const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);194  //   const collectionHelpers = evmCollectionHelpers(web3, owner);195  //   const result = await collectionHelpers.methods.createERC721MetadataCompatibleNFTCollection('Sponsor collection', '1', '1', '').send();196  //   const {collectionIdAddress, collectionId} = await getCollectionAddressFromResult(api, result);197  //   const sponsor = privateKeyWrapper('//Alice');198  //   const collectionEvm = evmCollection(web3, owner, collectionIdAddress);199200  //   await collectionEvm.methods.setCollectionSponsorSubstrate(sponsor.addressRaw).send({from: owner});201202  //   const confirmTx = await api.tx.unique.confirmSponsorship(collectionId);203  //   await submitTransactionAsync(sponsor, confirmTx);204205  //   const user = createEthAccount(web3);206  //   const nextTokenId = await collectionEvm.methods.nextTokenId().call();207  //   expect(nextTokenId).to.be.equal('1');208209  //   await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});210  //   await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});211  //   await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});212213  //   const ownerBalanceBefore = await ethBalanceViaSub(api, owner);214  //   const sponsorBalanceBefore = (await getBalance(api, [sponsor.address]))[0];215216  //   {217  //     const nextTokenId = await collectionEvm.methods.nextTokenId().call();218  //     expect(nextTokenId).to.be.equal('1');219  //     const result = await collectionEvm.methods.mintWithTokenURI(220  //       user,221  //       nextTokenId,222  //       'Test URI',223  //     ).send({from: user});224  //     const events = normalizeEvents(result.events);225226  //     expect(events).to.be.deep.equal([227  //       {228  //         address: collectionIdAddress,229  //         event: 'Transfer',230  //         args: {231  //           from: '0x0000000000000000000000000000000000000000',232  //           to: user,233  //           tokenId: nextTokenId,234  //         },235  //       },236  //     ]);237238  //     const ownerBalanceAfter = await ethBalanceViaSub(api, owner);239  //     const sponsorBalanceAfter = (await getBalance(api, [sponsor.address]))[0];240241  //     expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');242  //     expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);243  //     expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;244  //   }245  // });246247  [248    'setCollectionSponsorCross',249    'setCollectionSponsor', // Soft-deprecated250  ].map(testCase =>251    itEth(`[${testCase}] Check that transaction via EVM spend money from sponsor address`, async ({helper}) => {252      const owner = await helper.eth.createAccountWithBalance(donor);253      const sponsor = await helper.eth.createAccountWithBalance(donor);254      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);255256      const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner,'Sponsor collection', '1', '1', '');257258      const collectionSub = helper.nft.getCollectionObject(collectionId);259      const collectionEvm = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner, testCase === 'setCollectionSponsor');260      // Set collection sponsor:261      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send();262      let collectionData = (await collectionSub.getData())!;263      expect(collectionData.raw.sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));264      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');265266      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});267      collectionData = (await collectionSub.getData())!;268      expect(collectionData.raw.sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));269270      const user = helper.eth.createAccount();271      const userCross = helper.ethCrossAccount.fromAddress(user);272      await collectionEvm.methods.addCollectionAdminCross(userCross).send();273274      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));275      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));276277      const mintingResult = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});278      const tokenId = mintingResult.events.Transfer.returnValues.tokenId;279280      const event = helper.eth.normalizeEvents(mintingResult.events)281        .find(event => event.event === 'Transfer');282      const address = helper.ethAddress.fromCollectionId(collectionId);283284      expect(event).to.be.deep.equal({285        address,286        event: 'Transfer',287        args: {288          from: '0x0000000000000000000000000000000000000000',289          to: user,290          tokenId: '1',291        },292      });293      expect(await collectionEvm.methods.tokenURI(tokenId).call({from: user})).to.be.equal('Test URI');294295      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));296      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);297      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));298      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;299    }));300301  itEth('Can reassign collection sponsor', async ({helper}) => {302    const owner = await helper.eth.createAccountWithBalance(donor);303    const sponsorEth = await helper.eth.createAccountWithBalance(donor);304    const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);305    const [sponsorSub] = await helper.arrange.createAccounts([100n], donor);306    const sponsorCrossSub = helper.ethCrossAccount.fromKeyringPair(sponsorSub);307308    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner,'Sponsor collection', '1', '1', '');309    const collectionSub = helper.nft.getCollectionObject(collectionId);310    const collectionEvm = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner);311312    // Set and confirm sponsor:313    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossEth).send({from: owner});314    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});315316    // Can reassign sponsor:317    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossSub).send({from: owner});318    const collectionSponsor = (await collectionSub.getData())?.raw.sponsorship;319    expect(collectionSponsor).to.deep.eq({Unconfirmed: sponsorSub.address});320  });321});322323describe('evm RFT collection sponsoring', () => {324  let donor: IKeyringPair;325  let alice: IKeyringPair;326  let nominal: bigint;327328  before(async function() {329    await usingPlaygrounds(async (helper, privateKey) => {330      requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);331      donor = await privateKey({filename: __filename});332      [alice] = await helper.arrange.createAccounts([100n], donor);333      nominal = helper.balance.getOneTokenNominal();334    });335  });336  337  [338    'mintCross',339    'mintWithTokenURI',340    'mintBulk',341    'mintBulkWithTokenUri',342  ].map(testCase => 343    itEth(`[${testCase}] sponsors mint transactions`, async ({helper}) => {344      const collection = await helper.rft.mintCollection(alice, {tokenPrefix: 'spnr', permissions: {mintMode: true}, tokenPropertyPermissions: [345        {key: 'URI', permission: {tokenOwner: true, mutable: true, collectionAdmin: true}},346      ]});347      348      const owner = await helper.eth.createAccountWithBalance(donor);349      await collection.setSponsor(alice, alice.address);350      await collection.confirmSponsorship(alice);351352      const minter = helper.eth.createAccount();353      const minterCross = helper.ethCrossAccount.fromAddress(minter);354      expect(await helper.balance.getEthereum(minter)).to.equal(0n);355356      const collectionAddress = helper.ethAddress.fromCollectionId(collection.collectionId);357      const contract = helper.ethNativeContract.collection(collectionAddress, 'rft', minter, true);358359      await collection.addToAllowList(alice, {Ethereum: minter});360      helper.collection.addAdmin(alice, collection.collectionId, {Ethereum: owner});361      const collectionHelpers = helper.ethNativeContract.collectionHelpers(owner);362      await collectionHelpers.methods.makeCollectionERC721MetadataCompatible(collectionAddress, 'base/')363        .send();364365      let mintingResult;366      let tokenId;367      const nextTokenId = await contract.methods.nextTokenId().call();368      switch (testCase) {369        case 'mintCross':370          mintingResult = await contract.methods.mintCross(minterCross, []).send();371          break;372        case 'mintWithTokenURI':373          mintingResult = await contract.methods.mintWithTokenURI(minter, 'Test URI').send();374          tokenId = mintingResult.events.Transfer.returnValues.tokenId;375          expect(await contract.methods.tokenURI(tokenId).call()).to.be.equal('Test URI');376          break;377        case 'mintBulk':378          mintingResult = await contract.methods.mintBulk(minter, [nextTokenId]).send();379          break;380        case 'mintBulkWithTokenUri':381          mintingResult = await contract.methods.mintBulkWithTokenURI(minter, [[nextTokenId, 'Test URI']]).send();382          tokenId = mintingResult.events.Transfer.returnValues.tokenId;383          expect(await contract.methods.tokenURI(tokenId).call()).to.be.equal('Test URI');384          break;385      }386387      const events = helper.eth.normalizeEvents(mintingResult.events);388      expect(events).to.deep.include({389        address: collectionAddress,390        event: 'Transfer',391        args: {392          from: '0x0000000000000000000000000000000000000000',393          to: minter,394          tokenId: '1',395        },396      });397    }));398399  [400    'setCollectionSponsorCross',401    'setCollectionSponsor', // Soft-deprecated402  ].map(testCase => 403    itEth(`[${testCase}] can remove collection sponsor`, async ({helper}) => {404      const owner = await helper.eth.createAccountWithBalance(donor);405      const collectionHelpers = helper.ethNativeContract.collectionHelpers(owner);406  407      let result = await collectionHelpers.methods.createRFTCollection('Sponsor collection', '1', '1').send({value: Number(2n * nominal)});408      const collectionIdAddress = helper.ethAddress.normalizeAddress(result.events.CollectionCreated.returnValues.collectionId);409      const sponsor = await helper.eth.createAccountWithBalance(donor);410      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);411      const collectionEvm = helper.ethNativeContract.collection(collectionIdAddress, 'rft', owner, testCase === 'setCollectionSponsor');412  413      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;414      result = await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send({from: owner});415      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.true;416  417      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});418      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call({from: owner})).to.be.false;419  420      await collectionEvm.methods.removeCollectionSponsor().send({from: owner});421  422      const sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});423      expect(sponsorTuple.eth).to.be.eq('0x0000000000000000000000000000000000000000');424    }));425426  [427    'setCollectionSponsorCross',428    'setCollectionSponsor', // Soft-deprecated429  ].map(testCase => 430    itEth(`[${testCase}] Can sponsor from evm address via access list`, async ({helper}) => {431      const owner = await helper.eth.createAccountWithBalance(donor);432      const sponsorEth = await helper.eth.createAccountWithBalance(donor);433      const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);434  435      const {collectionId, collectionAddress} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner, 'Sponsor collection', '1', '1', '');436  437      const collectionSub = helper.rft.getCollectionObject(collectionId);438      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, testCase === 'setCollectionSponsor');439  440      // Set collection sponsor:441      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsorEth : sponsorCrossEth).send({from: owner});442      let sponsorship = (await collectionSub.getData())!.raw.sponsorship;443      expect(sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));444      // Account cannot confirm sponsorship if it is not set as a sponsor445      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');446      447      // Sponsor can confirm sponsorship:448      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});449      sponsorship = (await collectionSub.getData())!.raw.sponsorship;450      expect(sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));451  452      // Create user with no balance:453      const user = helper.eth.createAccount();454      const userCross = helper.ethCrossAccount.fromAddress(user);455      const nextTokenId = await collectionEvm.methods.nextTokenId().call();456      expect(nextTokenId).to.be.equal('1');457  458      // Set collection permissions:459      const oldPermissions = (await collectionSub.getData())!.raw.permissions;460      expect(oldPermissions.mintMode).to.be.false;461      expect(oldPermissions.access).to.be.equal('Normal');462463      await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});464      await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});465      await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});466  467      const newPermissions = (await collectionSub.getData())!.raw.permissions;468      expect(newPermissions.mintMode).to.be.true;469      expect(newPermissions.access).to.be.equal('AllowList');470  471      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));472      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));473      const userBalanceBefore =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));474475      // User can mint token without balance:476      {477        const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});478        const events = helper.eth.normalizeEvents(result.events);479480        expect(events).to.deep.include({481          address: collectionAddress,482          event: 'Transfer',483          args: {484            from: '0x0000000000000000000000000000000000000000',485            to: user,486            tokenId: '1',487          },488        });489  490        const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));491        const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsorEth));492        const userBalanceAfter =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));493  494        expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');495        expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);496        expect(userBalanceAfter).to.be.eq(userBalanceBefore);497        expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;498      }499    }));500501  [502    'setCollectionSponsorCross',503    'setCollectionSponsor', // Soft-deprecated504  ].map(testCase => 505    itEth(`[${testCase}] Check that collection admin EVM transaction spend money from sponsor eth address`, async ({helper}) => {506      const owner = await helper.eth.createAccountWithBalance(donor);507      const sponsor = await helper.eth.createAccountWithBalance(donor);508      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);509  510      const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');511512      const collectionSub = helper.rft.getCollectionObject(collectionId);513      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, testCase === 'setCollectionSponsor');514      // Set collection sponsor:515      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.false;516      await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send();517      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.true;518      let collectionData = (await collectionSub.getData())!;519      expect(collectionData.raw.sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));520      await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');521      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.true;522  523      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});524      collectionData = (await collectionSub.getData())!;525      expect(collectionData.raw.sponsorship.Confirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));526      expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.false;527      const sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});528      expect(helper.address.restoreCrossAccountFromBigInt(BigInt(sponsorTuple.sub))).to.be.equal(helper.address.ethToSubstrate(sponsor));529530      const user = helper.eth.createAccount();531      const userCross = helper.ethCrossAccount.fromAddress(user);532      await collectionEvm.methods.addCollectionAdminCross(userCross).send();533  534      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));535      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));536    537      const mintingResult = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});538      const tokenId = mintingResult.events.Transfer.returnValues.tokenId;539  540      const events = helper.eth.normalizeEvents(mintingResult.events);541      const address = helper.ethAddress.fromCollectionId(collectionId);542  543      expect(events).to.deep.include({544        address,545        event: 'Transfer',546        args: {547          from: '0x0000000000000000000000000000000000000000',548          to: user,549          tokenId: '1',550        },551      });552      expect(await collectionEvm.methods.tokenURI(tokenId).call({from: user})).to.be.equal('Test URI');553  554      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));555      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);556      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));557      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;558    }));559560  itEth('Check that collection admin EVM transaction spend money from sponsor sub address', async ({helper}) => {561    const owner = await helper.eth.createAccountWithBalance(donor);562    const sponsor = alice;563    const sponsorCross = helper.ethCrossAccount.fromKeyringPair(sponsor);564565    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');566567    const collectionSub = helper.rft.getCollectionObject(collectionId);568    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, false);569    // Set collection sponsor:570    expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.false;571    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();572    expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.true;573    let collectionData = (await collectionSub.getData())!;574    expect(collectionData.raw.sponsorship.Unconfirmed).to.be.eq(sponsor.address);575    await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');576577    await collectionSub.confirmSponsorship(sponsor);578    collectionData = (await collectionSub.getData())!;579    expect(collectionData.raw.sponsorship.Confirmed).to.be.eq(sponsor.address);580    expect(await collectionEvm.methods.hasCollectionPendingSponsor().call()).to.be.false;581    const sponsorTuple = await collectionEvm.methods.collectionSponsor().call({from: owner});582    expect(BigInt(sponsorTuple.sub)).to.be.equal(BigInt('0x' + Buffer.from(sponsor.addressRaw).toString('hex')));583584    const user = helper.eth.createAccount();585    const userCross = helper.ethCrossAccount.fromAddress(user);586    await collectionEvm.methods.addCollectionAdminCross(userCross).send();587588    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));589    const sponsorBalanceBefore = await helper.balance.getSubstrate(sponsor.address);590  591    const mintingResult = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});592    const tokenId = mintingResult.events.Transfer.returnValues.tokenId;593594    const events = helper.eth.normalizeEvents(mintingResult.events);595596    expect(events).to.deep.include({597      address: collectionAddress,598      event: 'Transfer',599      args: {600        from: '0x0000000000000000000000000000000000000000',601        to: user,602        tokenId: '1',603      },604    });605    expect(await collectionEvm.methods.tokenURI(tokenId).call({from: user})).to.be.equal('Test URI');606607    const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));608    expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);609    const sponsorBalanceAfter = await helper.balance.getSubstrate(sponsor.address);610    expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;611  });612613  itEth('Sponsoring collection from substrate address via access list', async ({helper}) => {614    const owner = await helper.eth.createAccountWithBalance(donor);615    const user = helper.eth.createAccount();616    const userCross =  helper.ethCrossAccount.fromAddress(user);617    const sponsor = alice;618    const sponsorCross = helper.ethCrossAccount.fromKeyringPair(sponsor);619620    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');621    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner, false);622623    await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send({from: owner});624625    const collectionSub = helper.rft.getCollectionObject(collectionId);626    await collectionSub.confirmSponsorship(sponsor);627628    const nextTokenId = await collectionEvm.methods.nextTokenId().call();629    expect(nextTokenId).to.be.equal('1');630631    await collectionEvm.methods.setCollectionAccess(1 /*'AllowList'*/).send({from: owner});632    633    await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});634    await collectionEvm.methods.setCollectionMintMode(true).send({from: owner});635636    const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));637    const sponsorBalanceBefore = await helper.balance.getSubstrate(sponsor.address);638    const userBalanceBefore =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));639640    {641      const nextTokenId = await collectionEvm.methods.nextTokenId().call();642      expect(nextTokenId).to.be.equal('1');643      const mintingResult = await collectionEvm.methods.mintWithTokenURI(644        user,645        'Test URI',646      ).send({from: user});647648      const events = helper.eth.normalizeEvents(mintingResult.events);649      650651      expect(events).to.deep.include({652        address: collectionAddress,653        event: 'Transfer',654        args: {655          from: '0x0000000000000000000000000000000000000000',656          to: user,657          tokenId: nextTokenId,658        },659      });660661      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));662      const sponsorBalanceAfter = await helper.balance.getSubstrate(sponsor.address);663      const userBalanceAfter =  await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));664665      expect(await collectionEvm.methods.tokenURI(nextTokenId).call()).to.be.equal('Test URI');666      expect(ownerBalanceBefore).to.be.eq(ownerBalanceAfter);667      expect(userBalanceAfter).to.be.eq(userBalanceBefore);668      expect(sponsorBalanceBefore > sponsorBalanceAfter).to.be.true;669    }670  });671672  itEth('Can reassign collection sponsor', async ({helper}) => {673    const owner = await helper.eth.createAccountWithBalance(donor);674    const sponsorEth = await helper.eth.createAccountWithBalance(donor);675    const sponsorCrossEth = helper.ethCrossAccount.fromAddress(sponsorEth);676    const [sponsorSub] = await helper.arrange.createAccounts([100n], donor);677    const sponsorCrossSub = helper.ethCrossAccount.fromKeyringPair(sponsorSub);678679    const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');680    const collectionSub = helper.rft.getCollectionObject(collectionId);681    const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);682683    // Set and confirm sponsor:684    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossEth).send({from: owner});685    await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});686687    // Can reassign sponsor:688    await collectionEvm.methods.setCollectionSponsorCross(sponsorCrossSub).send({from: owner});689    const collectionSponsor = (await collectionSub.getData())?.raw.sponsorship;690    expect(collectionSponsor).to.deep.eq({Unconfirmed: sponsorSub.address});691  });692693  [694    'transfer',695    'transferCross',696    'transferFrom',697    'transferFromCross',698  ].map(testCase => 699    itEth(`[${testCase}] Check that transfer via EVM spend money from sponsor address`, async ({helper}) => {700      const owner = await helper.eth.createAccountWithBalance(donor);701702      const {collectionAddress} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');703      const sponsor = await helper.eth.createAccountWithBalance(donor);704      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);705      const receiver = await helper.eth.createAccountWithBalance(donor);706      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);707708      await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();709      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});710711      const user = await helper.eth.createAccountWithBalance(donor);712      const userCross = helper.ethCrossAccount.fromAddress(user);713      await collectionEvm.methods.addCollectionAdminCross(userCross).send();714715      const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});716      const tokenId = result.events.Transfer.returnValues.tokenId;717      718      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));719      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));720      const userBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));721722      switch (testCase) {723        case 'transfer':724          await collectionEvm.methods.transfer(receiver, tokenId).send({from: user});725          break;726        case 'transferCross':727          await collectionEvm.methods.transferCross(helper.ethCrossAccount.fromAddress(receiver), tokenId).send({from: user});728          break;729        case 'transferFrom':730          await collectionEvm.methods.transferFrom(user, receiver, tokenId).send({from: user});731          break;732        case 'transferFromCross':733          await collectionEvm.methods.transferFromCross(helper.ethCrossAccount.fromAddress(user), helper.ethCrossAccount.fromAddress(receiver), tokenId).send({from: user});734          break;735      }736737      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));738      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);739      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));740      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;741      const userBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));742      expect(userBalanceAfter).to.be.eq(userBalanceBefore);743    }));744});745746describe('evm RFT token sponsoring', () => {747  let donor: IKeyringPair;748749  before(async function() {750    await usingPlaygrounds(async (helper, privateKey) => {751      requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);752      donor = await privateKey({filename: __filename});753    });754  });755756  [757    'transfer',758    'transferCross',759    'transferFrom',760    'transferFromCross',761  ].map(testCase => 762    itEth(`[${testCase}] Check that token piece transfer via EVM spend money from sponsor address`, async ({helper}) => {763      const owner = await helper.eth.createAccountWithBalance(donor);764765      const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');766      const sponsor = await helper.eth.createAccountWithBalance(donor);767      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);768      const receiver = await helper.eth.createAccountWithBalance(donor);769      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);770771      await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();772      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});773774      const user = await helper.eth.createAccountWithBalance(donor);775      const userCross = helper.ethCrossAccount.fromAddress(user);776      await collectionEvm.methods.addCollectionAdminCross(userCross).send();777778      const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});779      const tokenId = result.events.Transfer.returnValues.tokenId;780781      const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, user);   782      await tokenContract.methods.repartition(2).send();783      784      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));785      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));786      const userBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));787788      switch (testCase) {789        case 'transfer':790          await tokenContract.methods.transfer(receiver, 1).send();791          break;792        case 'transferCross':793          await tokenContract.methods.transferCross(helper.ethCrossAccount.fromAddress(receiver), 1).send();794          break;795        case 'transferFrom':796          await tokenContract.methods.transferFrom(user, receiver, 1).send();797          break;798        case 'transferFromCross':799          await tokenContract.methods.transferFromCross(helper.ethCrossAccount.fromAddress(user), helper.ethCrossAccount.fromAddress(receiver), 1).send();800          break;801      }802803      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));804      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);805      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));806      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;807      const userBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));808      expect(userBalanceAfter).to.be.eq(userBalanceBefore);809    }));810811  [812    'approve',813    'approveCross',814  ].map(testCase => 815    itEth(`[${testCase}] Check that approve via EVM spend money from sponsor address`, async ({helper}) => {816      const owner = await helper.eth.createAccountWithBalance(donor);817818      const {collectionAddress, collectionId} = await helper.eth.createERC721MetadataCompatibleRFTCollection(owner,'Sponsor collection', '1', '1', '');819      const sponsor = await helper.eth.createAccountWithBalance(donor);820      const sponsorCross = helper.ethCrossAccount.fromAddress(sponsor);821      const receiver = await helper.eth.createAccountWithBalance(donor);822      const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'rft', owner);823824      await collectionEvm.methods.setCollectionSponsorCross(sponsorCross).send();825      await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});826827      const user = await helper.eth.createAccountWithBalance(donor);828      const userCross = helper.ethCrossAccount.fromAddress(user);829      await collectionEvm.methods.addCollectionAdminCross(userCross).send();830831      const result = await collectionEvm.methods.mintWithTokenURI(user, 'Test URI').send({from: user});832      const tokenId = result.events.Transfer.returnValues.tokenId;833834      const tokenContract = helper.ethNativeContract.rftTokenById(collectionId, tokenId, user);  835      await tokenContract.methods.repartition(2).send();836      837      const ownerBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));838      const sponsorBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));839      const userBalanceBefore = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));840841      switch (testCase) {842        case 'approve':843          await tokenContract.methods.approve(receiver, 1).send();844          break;845        case 'approveCross':846          await tokenContract.methods.approveCross(helper.ethCrossAccount.fromAddress(receiver), 1).send();847          break;848      }849850      const ownerBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(owner));851      expect(ownerBalanceAfter).to.be.eq(ownerBalanceBefore);852      const sponsorBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(sponsor));853      expect(sponsorBalanceAfter < sponsorBalanceBefore).to.be.true;854      const userBalanceAfter = await helper.balance.getSubstrate(helper.address.ethToSubstrate(user));855      expect(userBalanceAfter).to.be.eq(userBalanceBefore);856    }));857});858