Skip to content

Commit

Permalink
Allow ENS wildcards with labels up to 255 bytes wide; discussed with …
Browse files Browse the repository at this point in the history
…ENS and deemed safe (#4543).
  • Loading branch information
ricmoo committed Feb 14, 2024
1 parent f45bb87 commit 7f14bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src.ts/providers/ens-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export class EnsResolver {
});

params = [
dnsEncode(this.name),
dnsEncode(this.name, 255),
iface.encodeFunctionData(fragment, params)
];

Expand Down

0 comments on commit 7f14bde

Please sign in to comment.