Update ERC721 to latest 1.11.0 from OpenZeppelin-solidity (#11)
* Update ERC721 to latest 1.11.0 from OpenZeppelin-solidity * Hardcode supported interfaces instead of using lookup table. This avoids shifting storage when extending supports interface. * Update build artifacts * Fix linter errors
This commit is contained in:
committed by
GitHub
parent
8f4610e007
commit
c46f0353d1
54
test/introspection/SupportsInterface.behavior.js
Normal file
54
test/introspection/SupportsInterface.behavior.js
Normal file
@ -0,0 +1,54 @@
|
||||
import makeInterfaceId from '../helpers/makeInterfaceId';
|
||||
|
||||
const INTERFACE_IDS = {
|
||||
ERC165: makeInterfaceId([
|
||||
'supportsInterface(bytes4)',
|
||||
]),
|
||||
ERC721: makeInterfaceId([
|
||||
'balanceOf(address)',
|
||||
'ownerOf(uint256)',
|
||||
'approve(address,uint256)',
|
||||
'getApproved(uint256)',
|
||||
'setApprovalForAll(address,bool)',
|
||||
'isApprovedForAll(address,address)',
|
||||
'transferFrom(address,address,uint256)',
|
||||
'safeTransferFrom(address,address,uint256)',
|
||||
'safeTransferFrom(address,address,uint256,bytes)',
|
||||
]),
|
||||
ERC721Enumerable: makeInterfaceId([
|
||||
'totalSupply()',
|
||||
'tokenOfOwnerByIndex(address,uint256)',
|
||||
'tokenByIndex(uint256)',
|
||||
]),
|
||||
ERC721Metadata: makeInterfaceId([
|
||||
'name()',
|
||||
'symbol()',
|
||||
'tokenURI(uint256)',
|
||||
]),
|
||||
ERC721Exists: makeInterfaceId([
|
||||
'exists(uint256)',
|
||||
]),
|
||||
};
|
||||
|
||||
export default function (interfaces = []) {
|
||||
describe('ERC165\'s supportsInterface(bytes4)', function () {
|
||||
beforeEach(function () {
|
||||
this.thing = this.mock || this.token;
|
||||
});
|
||||
|
||||
for (let k of interfaces) {
|
||||
const interfaceId = INTERFACE_IDS[k];
|
||||
describe(k, function () {
|
||||
it('should use less than 30k gas', async function () {
|
||||
const gasEstimate = await this.thing.supportsInterface.estimateGas(interfaceId);
|
||||
gasEstimate.should.be.lte(30000);
|
||||
});
|
||||
|
||||
it('is supported', async function () {
|
||||
const isSupported = await this.thing.supportsInterface(interfaceId);
|
||||
isSupported.should.eq(true);
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user