Skip to content

Commit

Permalink
update bsc node
Browse files Browse the repository at this point in the history
  • Loading branch information
shrpne committed Nov 28, 2023
1 parent 0617099 commit 8d742a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.master
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ APP_EXPLORER_STATIC_HOST=https://explorer-static.minter.network
APP_HUB_API_URL=https://hub-api.minter.network/
APP_ETHEREUM_API_URL=https://rpc.ankr.com/eth
#APP_BSC_API_URL=https://bsc-dataseed.binance.org/
APP_BSC_API_URL=https://bscrpc.com/
APP_BSC_API_URL=https://rpc.ankr.com/bsc
APP_MEGACHAIN_API_URL=
APP_HUB_ETHEREUM_CONTRACT_ADDRESS=0x897c27Fa372AA730D4C75B1243E7EA38879194E2
APP_HUB_BSC_CONTRACT_ADDRESS=0xF5b0ed82a0b3e11567081694cC66c3df133f7C8F
Expand Down
2 changes: 1 addition & 1 deletion assets/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const HUB_API_URL = process.env.APP_HUB_API_URL;
export const ETHEREUM_API_URL = process.env.APP_ETHEREUM_API_URL;
export const BSC_API_URL = process.env.APP_BSC_API_URL;
export const MEGACHAIN_API_URL = process.env.APP_MEGACHAIN_API_URL;
export const ETHEREUM_CHAIN_ID = NETWORK === MAINNET ? 1 : 3;
export const ETHEREUM_CHAIN_ID = NETWORK === MAINNET ? 1 : 11155111;
export const BSC_CHAIN_ID = NETWORK === MAINNET ? 56 : 97;
export const MEGACHAIN_CHAIN_ID = NETWORK === MAINNET ? 0 : 3333;
export const ETHERSCAN_API_URL = NETWORK === MAINNET ? 'https://api.etherscan.io/api/' : 'https://api-sepolia.etherscan.io/api/';
Expand Down

0 comments on commit 8d742a8

Please sign in to comment.