const Wrapper = artifacts.require("CurioERC1155Wrapper"); const interfaceId = process.argv[6]; module.exports = async (callback) => { const wrapper = await Wrapper.deployed(); const supports = await wrapper.supportsInterface(interfaceId); console.log(`Supports interface: ${supports}`); callback(); }