Skip to content

Commit a32af3a

Browse files
committedMar 4, 2023
Allow null values for TypedData domain (#3623).
1 parent 287d94f commit a32af3a

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed
 

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

+13-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ const BN_1 = BigInt(1);
2020
const BN_MAX_UINT256 = BigInt("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
2121

2222
export interface TypedDataDomain {
23-
name?: string;
24-
version?: string;
25-
chainId?: BigNumberish;
26-
verifyingContract?: string;
27-
salt?: BytesLike;
23+
name?: null | string;
24+
version?: null | string;
25+
chainId?: null | BigNumberish;
26+
verifyingContract?: null | string;
27+
salt?: null | BytesLike;
2828
};
2929

3030
export interface TypedDataField {
@@ -355,6 +355,7 @@ export class TypedDataEncoder {
355355
static hashDomain(domain: TypedDataDomain): string {
356356
const domainFields: Array<TypedDataField> = [ ];
357357
for (const name in domain) {
358+
if ((<Record<string, any>>domain)[name] == null) { continue; }
358359
const type = domainFieldTypes[name];
359360
assertArgument(type, `invalid typed-data domain key: ${ JSON.stringify(name) }`, "domain", domain);
360361
domainFields.push({ name, type });
@@ -384,6 +385,13 @@ export class TypedDataEncoder {
384385
// Make a copy to isolate it from the object passed in
385386
domain = Object.assign({ }, domain);
386387

388+
// Allow passing null to ignore value
389+
for (const key in domain) {
390+
if ((<Record<string, any>>domain)[key] == null) {
391+
delete (<Record<string, any>>domain)[key];
392+
}
393+
}
394+
387395
// Look up all ENS names
388396
const ensCache: Record<string, string> = { };
389397

0 commit comments

Comments
 (0)