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