@@ -3,7 +3,7 @@ import { getAddress } from "../address/index.js";
3
3
import { keccak256 } from "../crypto/index.js" ;
4
4
import { recoverAddress } from "../transaction/index.js" ;
5
5
import {
6
- concat , defineProperties , getBigInt , getBytes , hexlify , isHexString , mask , toBeHex , toTwos , zeroPadValue ,
6
+ concat , defineProperties , getBigInt , getBytes , hexlify , isHexString , mask , toBeHex , toQuantity , toTwos , zeroPadValue ,
7
7
assertArgument
8
8
} from "../utils/index.js" ;
9
9
@@ -68,8 +68,11 @@ function checkString(key: string): (value: any) => string {
68
68
const domainChecks : Record < string , ( value : any ) => any > = {
69
69
name : checkString ( "name" ) ,
70
70
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 ) ;
73
76
} ,
74
77
verifyingContract : function ( value : any ) {
75
78
try {
0 commit comments