Skip to content

Commit a851b24

Browse files
committedApr 5, 2023
Fixed TypedData unsigned value range (#3873).
1 parent 356ff2b commit a851b24

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function getBaseEncoder(type: string): null | ((value: any) => string) {
105105

106106
assertArgument(value >= boundsLower && value <= boundsUpper, `value out-of-bounds for ${ type }`, "value", value);
107107

108-
return toBeHex(toTwos(value, 256), 32);
108+
return toBeHex(signed ? toTwos(value, 256): value, 32);
109109
};
110110
}
111111
}

‎testcases/typed-data.json.gz

464 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.