add filterName && nftPool test context

This commit is contained in:
owen05
2021-09-13 14:31:23 +08:00
parent 4deca2be13
commit fb64de3a04
8 changed files with 157 additions and 25 deletions

View File

@@ -8,6 +8,16 @@
pragma solidity 0.6.9;
interface IFilter {
function init(
address filterAdmin,
address nftCollection,
bool[] memory toggles,
string memory filterName,
uint256[] memory numParams,
uint256[] memory priceRules,
uint256[] memory spreadIds
) external;
function isNFTValid(address nftCollectionAddress, uint256 nftId) external view returns (bool);
function _NFT_COLLECTION_() external view returns (address);