Skip to content

Commit

Permalink
Update constants
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed Jan 27, 2022
1 parent 0b70107 commit 8cefc39
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require('dotenv').config()

import { BigNumber } from 'ethers'
import { parseEther } from 'ethers/lib/utils'

Expand Down Expand Up @@ -121,8 +123,8 @@ export const DEFAULT_SWAP_ADMIN_FEE: string = '0'
export const DEFAULT_SWAP_WITHDRAWAL_FEE: string = '0'

export const POLYGON_RPC_ENDPOINTS: any = {
MAINNET: 'https://polygon.rpc.hop.exchange',
GOERLI: 'https://mumbai.rpc.hop.exchange'
MAINNET: process.env.RPC_ENDPOINT_POLYGON,
GOERLI: process.env.RPC_ENDPOINT_GOERLI
}

export const FX_ROOT_ADDRESSES: any = {
Expand Down

0 comments on commit 8cefc39

Please sign in to comment.