diff --git a/Sources/web3swift/Utils/EIP/EIP712/EIP712Parser.swift b/Sources/web3swift/Utils/EIP/EIP712/EIP712Parser.swift index 68d9b3a95..2f7e77e6a 100644 --- a/Sources/web3swift/Utils/EIP/EIP712/EIP712Parser.swift +++ b/Sources/web3swift/Utils/EIP/EIP712/EIP712Parser.swift @@ -125,9 +125,9 @@ internal struct EIP712TypeArray: Codable { public struct EIP712TypeProperty: Codable { /// Property name. An arbitrary string. public let name: String - /// Property type. A type that's ABI encodable. + /// Property type. A type that's ABI encodable or a custom type from ``EIP712TypedData/types``. public let type: String - /// Strips brackets (e.g. [] - denoting an array) and other characters augmenting the type. + /// Stripped of brackets ([] - denoting an array). /// If ``type`` is an array of then ``coreType`` will return the type of the array. public let coreType: String