We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb8b755 + 9dde19d commit 58eae3eCopy full SHA for 58eae3e
1 file changed
src/endpoints/dapp-config/dapp.config.service.ts
@@ -25,6 +25,16 @@ export class DappConfigService {
25
const chainId = networkConfig.erd_chain_id;
26
27
const overrides: Partial<DappConfig> = {};
28
+
29
+ //TODO: remove after battle of nodes
30
+ if (chainId === 'B') {
31
+ overrides.walletAddress = "https://bon-wallet.multiversx.com";
32
+ overrides.apiAddress = "https://api.battleofnodes.com";
33
+ overrides.explorerAddress = "https://bon-explorer.multiversx.com";
34
+ overrides.id = "bon";
35
+ overrides.name = "BattleOfNodes";
36
+ }
37
38
if (refreshRate != null) {
39
overrides.refreshRate = refreshRate;
40
}
0 commit comments