hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
10 lines (9 loc) • 338 B
text/typescript
export interface RawInlineOverride {
inputSourceName: string;
contractName: string;
functionName: string;
functionSelector?: string; // from AST, hex without 0x prefix
key: string; // parsed camelCase key, without profile prefix
rawKey: string; // original key as written by the user, for error messages
rawValue: string;
}