Skip to content

Commit 50b74b8

Browse files
committedApr 5, 2023
Fixed TypedData payloads for JSON-restricted chainId field (#3868).
1 parent 130204d commit 50b74b8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

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

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { getAddress } from "../address/index.js";
33
import { keccak256 } from "../crypto/index.js";
44
import { recoverAddress } from "../transaction/index.js";
55
import {
6-
concat, defineProperties, getBigInt, getBytes, hexlify, isHexString, mask, toBeHex, toTwos, zeroPadValue,
6+
concat, defineProperties, getBigInt, getBytes, hexlify, isHexString, mask, toBeHex, toQuantity, toTwos, zeroPadValue,
77
assertArgument
88
} from "../utils/index.js";
99

@@ -68,8 +68,11 @@ function checkString(key: string): (value: any) => string {
6868
const domainChecks: Record<string, (value: any) => any> = {
6969
name: checkString("name"),
7070
version: checkString("version"),
71-
chainId: function(value: any) {
72-
return getBigInt(value, "domain.chainId");
71+
chainId: function(_value: any) {
72+
const value = getBigInt(_value, "domain.chainId");
73+
assertArgument(value >= 0, "invalid chain ID", "domain.chainId", _value);
74+
if (Number.isSafeInteger(value)) { return Number(value); }
75+
return toQuantity(value);
7376
},
7477
verifyingContract: function(value: any) {
7578
try {

0 commit comments

Comments
 (0)
Please sign in to comment.