From 68035dd8291c62f010f0d6b44edfc3576b1af6cb Mon Sep 17 00:00:00 2001 From: Trubnikov Sergey Date: Fri, 26 Aug 2022 14:41:17 +0000 Subject: [PATCH] fix: test erc165 --- --- a/tests/src/eth/base.test.ts +++ b/tests/src/eth/base.test.ts @@ -94,7 +94,7 @@ }); itWeb3('ERC721 support', async ({web3}) => { - expect(await contract(web3).methods.supportsInterface('0x58800161').call()).to.be.true; + expect(await contract(web3).methods.supportsInterface('0x780e9d63').call()).to.be.true; }); itWeb3('ERC721Metadata support', async ({web3}) => { -- gitstuff