@solidstate/hardhat-selector-uploader
Version:
Upload local function selectors to the Ethereum Selector Database
11 lines (10 loc) • 406 B
JavaScript
import { TASK_UPLOAD_SELECTORS } from '../task_names.js';
import { task } from 'hardhat/config';
export default task(TASK_UPLOAD_SELECTORS)
.setDescription('Upload local function selectors to the Ethereum Selector Database')
.addFlag({
name: 'noCompile',
description: "Don't compile before running this task",
})
.setAction(() => import('../actions/upload_selectors.js'))
.build();