Skip to content

Commit

Permalink
tests: added gasless testcase for RicMoo-controlled domain
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 3, 2024
1 parent 0f1434b commit c2d5346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src.ts/_tests/test-providers-wildcard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ describe("Test EIP-2544 ENS wildcards", function() {
});

describe("Test ENS-DNS gasless resolver", function() {
it("Resolved almonit.org", async function() {
it("Resolved firefly.app", async function() {
this.timeout(10000);

const provider = connect("mainnet");
const addr = await provider.resolveName("almonit.org");
assert.equal(addr, "0x0D59d0f7DcC0fBF0A3305cE0261863aAf7Ab685c", "addr");
const addr = await provider.resolveName("firefly.app");
assert.equal(addr, "0x643aA0A61eADCC9Cc202D1915D942d35D005400C", "addr");
});
});

0 comments on commit c2d5346

Please sign in to comment.