Skip to content

Commit 8f99601

Browse files
committedJan 16, 2024
Fixed normalization and abstracted EIP-712 Array parsing (#4541).
1 parent 92cb3e4 commit 8f99601

File tree

2 files changed

+105
-13
lines changed

2 files changed

+105
-13
lines changed
 

‎src.ts/_tests/test-hash-typeddata.ts

+60
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,66 @@ describe("Tests Typed Data (EIP-712) aliases", function() {
6868
},
6969
encoded: "0xa272ada5f88085e4cb18acdb87bd057a8cbfec249fee53de0149409080947cf500000000000000000000000000000000000000000000000000000000000000231c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8"
7070
},
71+
{
72+
name: "array-uint",
73+
types: {
74+
foo: [
75+
{ name: "a", type: "uint256[]" },
76+
{ name: "b", type: "string" },
77+
],
78+
},
79+
typesAlias: {
80+
foo: [
81+
{ name: "a", type: "uint[]" },
82+
{ name: "b", type: "string" },
83+
],
84+
},
85+
data: {
86+
a: [ 35, 36, 37 ],
87+
b: "hello"
88+
},
89+
encoded: "0x1a961843d0002bdd66ec21afd6e4a5b0aac34a4b6112890378c6e3a38b752e0b0c22b846886e98aeffc1f1166d4b35868da4d4da853dcb3b2856cfc233fd10c81c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8"
90+
},
91+
{
92+
name: "array-int",
93+
types: {
94+
foo: [
95+
{ name: "a", type: "int256[]" },
96+
{ name: "b", type: "string" },
97+
],
98+
},
99+
typesAlias: {
100+
foo: [
101+
{ name: "a", type: "int[]" },
102+
{ name: "b", type: "string" },
103+
],
104+
},
105+
data: {
106+
a: [ 35, 36, 37 ],
107+
b: "hello"
108+
},
109+
encoded: "0x0b89085a01a3b67d2231c6a136f9c8eea75d7d479a83a127356f8540ee15af010c22b846886e98aeffc1f1166d4b35868da4d4da853dcb3b2856cfc233fd10c81c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8"
110+
},
111+
{
112+
name: "nested-array-uint",
113+
types: {
114+
foo: [
115+
{ name: "a", type: "uint256[][]" },
116+
{ name: "b", type: "string" },
117+
],
118+
},
119+
typesAlias: {
120+
foo: [
121+
{ name: "a", type: "uint[][]" },
122+
{ name: "b", type: "string" },
123+
],
124+
},
125+
data: {
126+
a: [ [ 35, 36 ], [ 37 ] ],
127+
b: "hello"
128+
},
129+
encoded: "0x5efa7c4b66979cf78fcc7c3e71cbfa04ec2c7529002642082bf20a91552c1147fa5ffe3a0504d850bc7c9eeda1cf960b596b73f4dc0272a6fa89dace08e320291c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8"
130+
},
71131
];
72132

73133
for (const test of tests) {

‎src.ts/hash/typed-data.ts

+45-13
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,35 @@ function encodeType(name: string, fields: Array<TypedDataField>): string {
181181
return `${ name }(${ fields.map(({ name, type }) => (type + " " + name)).join(",") })`;
182182
}
183183

184+
type ArrayResult = {
185+
base: string; // The base type
186+
index?: string; // the full Index (if any)
187+
array?: { // The Array... (if index)
188+
base: string; // ...base type (same as above)
189+
prefix: string; // ...sans the final Index
190+
count: number; // ...the final Index (-1 for dynamic)
191+
}
192+
};
193+
194+
// foo[][3] => { base: "foo", index: "[][3]", array: {
195+
// base: "foo", prefix: "foo[]", count: 3 } }
196+
function splitArray(type: string): ArrayResult {
197+
const match = type.match(/^([^\x5b]*)((\x5b\d*\x5d)*)(\x5b(\d*)\x5d)$/);
198+
if (match) {
199+
return {
200+
base: match[1],
201+
index: (match[2] + match[4]),
202+
array: {
203+
base: match[1],
204+
prefix: (match[1] + match[2]),
205+
count: (match[5] ? parseInt(match[5]): -1),
206+
}
207+
};
208+
}
209+
210+
return { base: type };
211+
}
212+
184213
/**
185214
* A **TypedDataEncode** prepares and encodes [[link-eip-712]] payloads
186215
* for signed typed data.
@@ -235,11 +264,14 @@ export class TypedDataEncoder {
235264

236265
const types: Record<string, Array<TypedDataField>> = { };
237266
Object.keys(_types).forEach((type) => {
238-
// Normalize int/uint unless they are a complex type themselves
239267
types[type] = _types[type].map(({ name, type }) => {
240-
if (type === "int" && !_types["int"]) { type = "int256"; }
241-
if (type === "uint" && !_types["uint"]) { type = "uint256"; }
242-
return { name, type };
268+
269+
// Normalize the base type (unless name conflict)
270+
let { base, index } = splitArray(type);
271+
if (base === "int" && !_types["int"]) { base = "int256"; }
272+
if (base === "uint" && !_types["uint"]) { base = "uint256"; }
273+
274+
return { name, type: (base + (index || "")) };
243275
});
244276

245277
links.set(type, new Set());
@@ -258,7 +290,7 @@ export class TypedDataEncoder {
258290
uniqueNames.add(field.name);
259291

260292
// Get the base type (drop any array specifiers)
261-
const baseType = (<any>(field.type.match(/^([^\x5b]*)(\x5b|$)/)))[1] || null;
293+
const baseType = splitArray(field.type).base;
262294
assertArgument(baseType !== name, `circular type reference to ${ JSON.stringify(baseType) }`, "types", _types);
263295

264296
// Is this a base encoding type?
@@ -331,12 +363,12 @@ export class TypedDataEncoder {
331363
}
332364

333365
// Array
334-
const match = type.match(/^(.*)(\x5b(\d*)\x5d)$/);
335-
if (match) {
336-
const subtype = match[1];
366+
const array = splitArray(type).array;
367+
if (array) {
368+
const subtype = array.prefix;
337369
const subEncoder = this.getEncoder(subtype);
338370
return (value: Array<any>) => {
339-
assertArgument(!match[3] || parseInt(match[3]) === value.length, `array length mismatch; expected length ${ parseInt(match[3]) }`, "value", value);
371+
assertArgument(array.count === -1 || array.count === value.length, `array length mismatch; expected length ${ array.count }`, "value", value);
340372

341373
let result = value.map(subEncoder);
342374
if (this.#fullTypes.has(subtype)) {
@@ -413,10 +445,10 @@ export class TypedDataEncoder {
413445
}
414446

415447
// Array
416-
const match = type.match(/^(.*)(\x5b(\d*)\x5d)$/);
417-
if (match) {
418-
assertArgument(!match[3] || parseInt(match[3]) === value.length, `array length mismatch; expected length ${ parseInt(match[3]) }`, "value", value);
419-
return value.map((v: any) => this._visit(match[1], v, callback));
448+
const array = splitArray(type).array;
449+
if (array) {
450+
assertArgument(array.count === -1 || array.count === value.length, `array length mismatch; expected length ${ array.count }`, "value", value);
451+
return value.map((v: any) => this._visit(array.prefix, v, callback));
420452
}
421453

422454
// Struct

0 commit comments

Comments
 (0)
Please sign in to comment.