(name: string, abiName: string, type: 'tx' | 'log')
| 155 | } |
| 156 | |
| 157 | export function generateHandlerName(name: string, abiName: string, type: 'tx' | 'log'): string { |
| 158 | return `handle${upperFirst(name)}${upperFirst(abiName)}${upperFirst(type)}`; |
| 159 | } |
| 160 | |
| 161 | function generateFormattedHandlers( |
| 162 | userInput: UserInput, |
no outgoing calls
no test coverage detected