(abiType: AbiType)
| 24 | * @returns Boolean. |
| 25 | */ |
| 26 | export function isAztecAddressStruct(abiType: AbiType) { |
| 27 | return abiType.kind === 'struct' && abiType.path.endsWith('address::AztecAddress'); |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Returns whether the ABI type is an Function Selector defined in Aztec.nr. |
no outgoing calls
no test coverage detected