Skip to content

Commit

Permalink
reverted config to use public testnets instead
Browse files Browse the repository at this point in the history
  • Loading branch information
dsawali committed Apr 30, 2024
1 parent cc3a98a commit 53a7235
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/taquito-test-dapp/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export type SupportedNetworks = NetworkType.OXFORDNET | NetworkType.GHOSTNET | N

const rpcUrls: Record<SupportedNetworks, string> = {
[NetworkType.MAINNET]: "https://mainnet.ecadinfra.com",
[NetworkType.GHOSTNET]: "http://ecad-ghostnet-rolling-2.i.tez.ie:8732/",
[NetworkType.OXFORDNET]: "http://ecad-oxfordnet-full.i.tez.ie:8732",
[NetworkType.CUSTOM]: "http://ecad-ghostnet-rolling-2.i.tez.ie:8732/",
[NetworkType.GHOSTNET]: "https://ghostnet.ecadinfra.com/",
[NetworkType.OXFORDNET]: "https://oxfordnet.ecadinfra.com/",
[NetworkType.CUSTOM]: "https://ghostnet.ecadinfra.com/",
};

export const getRpcUrl = (networkType: SupportedNetworks): string => {
Expand Down

0 comments on commit 53a7235

Please sign in to comment.