Skip to content

Commit

Permalink
Use new lambda rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
yuli-ferna committed Jan 13, 2025
1 parent 2281450 commit 78d8906
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/connect-v1/src/env/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const rpcs = (chains: string[], template: (chain: string) => string) =>
.map((chain: string) => ({ [chain]: template(chain) }))
.reduce((acc, cur) => ({ ...acc, ...cur }), {});
const asRpcHost = (chain: string) =>
`https://and76cjzpa.execute-api.us-east-2.amazonaws.com/${chain.toLowerCase()}/`;
`http://rpc.portalbridge.com/${chain.toLowerCase()}/`;
export const chains = [
"wormchain",
"osmosis",
Expand Down
4 changes: 2 additions & 2 deletions apps/connect/src/env/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const rpcs = (chains: string[], template: (chain: string) => string) =>
.map((chain: string) => ({ [chain]: template(chain) }))
.reduce((acc, cur) => ({ ...acc, ...cur }), {});
const asRpcHost = (chain: string) =>
`https://and76cjzpa.execute-api.us-east-2.amazonaws.com/${chain.toLowerCase()}/`;
`http://rpc.portalbridge.com/${chain.toLowerCase()}/`;
export const chains = [
"Wormchain",
"Osmosis",
Expand Down Expand Up @@ -34,7 +34,7 @@ export const MAINNET_RPCS = {
...rpcs(chains, asRpcHost),
Klaytn: "https://public-en.node.kaia.io/",
Solana: "https://wormhole.rpcpool.com/",
Aptos: "https://and76cjzpa.execute-api.us-east-2.amazonaws.com/aptos/v1",
Aptos: "http://rpc.portalbridge.com/aptos/v1",
};

export const PUBLIC_URL = envVars.VITE_PUBLIC_URL || "";
Expand Down

0 comments on commit 78d8906

Please sign in to comment.