Skip to content

Commit

Permalink
Merge pull request #54 from hexaonelabs/hot/rpc-url
Browse files Browse the repository at this point in the history
Hot/rpc url
  • Loading branch information
FazioNico authored Aug 27, 2024
2 parents a26ab7a + f3c034c commit 80bbb54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hexa-lite",
"version": "1.2.1",
"version": "1.2.2",
"homepage": ".",
"private": false,
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions src/constants/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const ALL_CHAINS: IChain[] = [
rpcUrl:
[
{ primary: false, url: "https://eth-mainnet-public.unifra.io" },
{ primary: true, url: "https://rpc.ankr.com/eth" },
{ primary: true, url: "https://ethereum-rpc.publicnode.com" },
].find((rpc) => rpc.primary)?.url || "",
type: "evm",
},
Expand All @@ -59,7 +59,7 @@ export const ALL_CHAINS: IChain[] = [
rpcUrl:
[
{ primary: false, url: "https://rpc.ankr.com/bsc" },
{ primary: true, url: "https://1rpc.io/bnb" },
{ primary: true, url: "https://binance.llamarpc.com" },
].find((rpc) => rpc.primary)?.url || "",
type: "evm",
},
Expand All @@ -84,7 +84,7 @@ export const ALL_CHAINS: IChain[] = [
logo: "/assets/icons/arb.svg",
rpcUrl:
[
{ primary: true, url: "https://1rpc.io/arb" },
{ primary: true, url: "https://arbitrum-one.publicnode.com" },
{ primary: false, url: "https://rpc.ankr.com/arbitrum_one" },
].find((rpc) => rpc.primary)?.url || "",
type: "evm",
Expand Down Expand Up @@ -114,7 +114,7 @@ export const ALL_CHAINS: IChain[] = [
primary: false,
url: "https://endpoints.omniatech.io/v1/base/mainnet/public",
},
{ primary: true, url: "https://1rpc.io/base" },
{ primary: true, url: "https://base-rpc.publicnode.com" },
].find((rpc) => rpc.primary)?.url || "",
type: "evm",
},
Expand All @@ -127,7 +127,7 @@ export const ALL_CHAINS: IChain[] = [
rpcUrl:
[
{ primary: false, url: "https://scroll-mainnet.public.blastapi.io" },
{ primary: true, url: "https://1rpc.io/scroll" },
{ primary: true, url: "https://scroll.drpc.org" },
].find((rpc) => rpc.primary)?.url || "",
type: "evm",
},
Expand Down

0 comments on commit 80bbb54

Please sign in to comment.