@solidstate/hardhat-selector-uploader
Version:
Upload local function selectors to the Ethereum Selector Database
15 lines (14 loc) • 426 B
TypeScript
import { SelectorUploaderConfig, SelectorUploaderUserConfig } from './types.js';
declare module 'hardhat/types/config' {
interface HardhatConfig {
selectorUploader: SelectorUploaderConfig;
}
interface HardhatUserConfig {
selectorUploader?: SelectorUploaderUserConfig;
}
}
declare module 'hardhat/types/global-options' {
interface GlobalOptions {
noUploadSelectors: boolean;
}
}