(typeName: AbiType)
| 108 | `get${field.originalName.toPascalCase()}`; |
| 109 | |
| 110 | const uintAllowed = (typeName: AbiType) => { |
| 111 | return ( |
| 112 | typeName.meta === 'enum' || ( |
| 113 | typeName.meta === 'elementary' && typeName.type === 'uint' |
| 114 | ) |
| 115 | ) |
| 116 | } |
| 117 | |
| 118 | const intAllowed = (typeName: AbiType) => ( |
| 119 | typeName.meta === 'elementary' && typeName.type === 'int' |
no outgoing calls
no test coverage detected