Skip to content

Commit

Permalink
Fix rpc urls
Browse files Browse the repository at this point in the history
  • Loading branch information
maxima-net committed Aug 11, 2022
1 parent 123279a commit b2e3686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum/config/defaultOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { EthereumSwapTransactionsProvider } from '../swapTransactionsProviders/i
import { ethereumMainnetCurrencies, ethereumTestnetCurrencies } from './currencies';

export const createDefaultEthereumBlockchainOptions = (): AtomexBlockchainOptions => {
const mainnetRpcUrl = 'https://mainnet.infura.io/v3/';
const testNetRpcUrl = 'https://goerli.infura.io/v3/';
const mainnetRpcUrl = 'https://eth-mainnet.public.blastapi.io';
const testNetRpcUrl = 'https://rpc.goerli.mudit.blog';
const balancesProvider = new EthereumBalancesProvider();
const swapTransactionsProvider = new EthereumSwapTransactionsProvider();

Expand Down

0 comments on commit b2e3686

Please sign in to comment.