Skip to content

Commit

Permalink
refactor: chainbase fixed their API (#10364)
Browse files Browse the repository at this point in the history
  • Loading branch information
guanbinrui committed Aug 11, 2023
1 parent bc27cb8 commit 892d55b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web3-providers/src/ENS/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class ENS_API implements NameServiceAPI.Provider {

async reverse(address: string) {
return attemptUntil(
[this.R2D2Domain, this.ChainbaseDomain, this.TheGraphDomain].map(
[this.ChainbaseDomain, this.R2D2Domain, this.TheGraphDomain].map(
(x) => () => x.reverse(ChainId.Mainnet, address),
),
undefined,
Expand Down

0 comments on commit 892d55b

Please sign in to comment.