UNPKG

@fil-b/filfox-verifier

Version:

CLI tool for verifying smart contracts on Filfox explorer from hardhat and foundry projects

16 lines 542 B
#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const commander_1 = require("commander"); const verify_filfox_1 = require("../commands/verify-filfox"); const program = new commander_1.Command(); program .name("filfox-verifier") .description("CLI tool for verifying smart contracts on Filfox") .version("1.0.0"); program.addCommand(verify_filfox_1.verifyFilfoxCommand); if (require.main === module) { program.parse(); } exports.default = program; //# sourceMappingURL=cli.js.map