Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lifayi2008 committed Nov 29, 2022
1 parent 90debbc commit 547c6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const DidResolverUrl = 'https://api.elastos.io/eid'

export const { MAIN_CONTRACT, feedsContract, v1marketContract, diaContract, welaContract, glideContract,
elkContract, ethUsdcContract, bunnyContract, bnbBusdContract, elaOnEthContract, pasarVestingContract, pasarStakingContract, pasarMiningContract, pasarERC20Contract, blockchain } = process.env.REACT_APP_ENV === "production" ? addressForProduction : addressForTest
export const mainDiaContract = addressForProduction.diaContract
export const mainDiaContract = process.env.REACT_APP_ENV === "production" ? addressForProduction.diaContract: addressForTest.diaContract;

export const ipfsURL = process.env.REACT_APP_ENV === "production" ? process.env.REACT_APP_IPFS_URL_PRODUCTION : process.env.REACT_APP_IPFS_URL_TEST
export const rpcURL = process.env.REACT_APP_ENV === "production" ? rpcUrlForMain : rpcUrlForTest
Expand Down

1 comment on commit 547c6eb

@vercel
Copy link

@vercel vercel bot commented on 547c6eb Nov 29, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.