Skip to content

Commit

Permalink
chore: logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Aug 8, 2024
1 parent 8c79012 commit 3ed0053
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/handlers/query-wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,12 @@ export async function resolveAddress(ensName: string) {
cacheRefreshCycles: 3,
runtimeRpcs: null,
rpcTimeout: 600,
tracking: "none",
proxySettings: { retryCount: 0, retryDelay: 1000, logTier: "verbose", logger: null, strictLogs: true },
});
console.log("2. resolveAddress");
// const provider = await rpc.getFastestRpcProvider();
const provider = new ethers.JsonRpcProvider(`https://eth.drpc.org`);
const provider = await rpc.getFastestRpcProvider();
// const provider = new ethers.JsonRpcProvider(`https://eth.drpc.org`);
console.log("3. resolveAddress");
return await provider.resolveName(ensName).catch((err) => {
console.trace({ err });
Expand Down

0 comments on commit 3ed0053

Please sign in to comment.