(name: string, value: string)
| 5 | export type ProjectType = 'hardhat.ts' | 'hardhat.js' | 'foundry' |
| 6 | |
| 7 | export const getDeclareConstant = (name: string, value: string) => |
| 8 | `uint256 constant ${name} = ${value};`; |
| 9 | |
| 10 | export type GeneratorOptions = { |
| 11 | oversizedInputs?: boolean; |