Skip to content

Commit

Permalink
feat: new resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
phoax committed Jun 8, 2023
1 parent d329664 commit 18d35f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/scripts/deployL2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {
console.log(`LineaResolver deployed to, L2_RESOLVER_ADDRESS: ${lineaResolver.address}`);
// Test with subdomain with default "julink.lineatest.eth", assuming we still control lineatest.eth on L1
const name = process.env.L2_ENS_SUBDOMAIN_TEST ? process.env.L2_ENS_SUBDOMAIN_TEST : "julink.lineatest.eth";
const tx = await lineaResolver.mintSubdomain(name, owner.address, { value: ethers.utils.parseEther("0.001") });
const tx = await lineaResolver.mintSubdomain(name, owner.address, { value: ethers.utils.parseEther("0.01") });
await tx.wait();
console.log(`Subdomain minted: ${process.env.L2_ENS_SUBDOMAIN_TEST}`);

Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/.env.uat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
L1_PROVIDER_URL=https://goerli.infura.io/v3/9ed1bd75f3d14307b365c2270d2ea66f
L2_PROVIDER_URL=https://linea-goerli.infura.io/v3/16fff764ff2145c2b137fbe8013730c6
L2_RESOLVER_ADDRESS=0x117F113aEFb9AeD23d901C1fa02fDdaA1d20cCaB
L2_RESOLVER_ADDRESS=0xF368438bc8FcA55752E131568cb41704D499B68e

0 comments on commit 18d35f9

Please sign in to comment.