|
| 1 | +import { MinaEnv } from '@shared/types/core/environment/mina-env.type'; |
| 2 | + |
| 3 | +export const environment: Readonly<MinaEnv> = { |
| 4 | + production: true, |
| 5 | + identifier: 'Web Node FE', |
| 6 | + canAddNodes: true, |
| 7 | + showWebNodeLandingPage: false, |
| 8 | + showLeaderboard: false, |
| 9 | + hidePeersPill: true, |
| 10 | + hideTxPill: true, |
| 11 | + globalConfig: { |
| 12 | + features: { |
| 13 | + dashboard: [], |
| 14 | + // nodes: ['overview', 'live', 'bootstrap'], |
| 15 | + state: ['actions'], |
| 16 | + // network: ['messages', 'connections', 'blocks', 'topology', 'node-dht', 'graph-overview', 'bootstrap-stats'], |
| 17 | + // snarks: ['scan-state', 'work-pool'], |
| 18 | + // resources: ['memory'], |
| 19 | + 'block-production': ['won-slots'], |
| 20 | + mempool: [], |
| 21 | + benchmarks: ['wallets'], |
| 22 | + // fuzzing: [], |
| 23 | + }, |
| 24 | + firebase: { |
| 25 | + apiKey: 'AIzaSyBZzFsHjIbQVbBP0N-KkUsEvHRVU_wwd7g', |
| 26 | + authDomain: 'webnode-gtm-test.firebaseapp.com', |
| 27 | + projectId: 'webnode-gtm-test', |
| 28 | + storageBucket: 'webnode-gtm-test.firebasestorage.app', |
| 29 | + messagingSenderId: '1016673359357', |
| 30 | + appId: '1:1016673359357:web:bbd2cbf3f031756aec7594', |
| 31 | + measurementId: 'G-ENDBL923XT', |
| 32 | + }, |
| 33 | + heartbeats: true, |
| 34 | + graphQL: 'https://adonagy.com/graphql', |
| 35 | + // graphQL: 'https://api.minascan.io/node/devnet/v1/graphql', |
| 36 | + // graphQL: 'http://65.109.105.40:5000/graphql', |
| 37 | + }, |
| 38 | + configs: [ |
| 39 | + // { |
| 40 | + // name: 'staging-devnet-bp-0', |
| 41 | + // url: 'https://staging-devnet-openmina-bp-0.minaprotocol.network', |
| 42 | + // }, |
| 43 | + // { |
| 44 | + // name: 'staging-devnet-bp-1', |
| 45 | + // url: 'https://staging-devnet-openmina-bp-1.minaprotocol.network', |
| 46 | + // }, |
| 47 | + // { |
| 48 | + // name: 'staging-devnet-bp-2', |
| 49 | + // url: 'https://staging-devnet-openmina-bp-2.minaprotocol.network', |
| 50 | + // }, |
| 51 | + // { |
| 52 | + // name: 'staging-devnet-bp-3', |
| 53 | + // url: 'https://staging-devnet-openmina-bp-3.minaprotocol.network', |
| 54 | + // }, |
| 55 | + { |
| 56 | + name: 'Web Node', |
| 57 | + isWebNode: true, |
| 58 | + }, |
| 59 | + ], |
| 60 | +}; |
| 61 | + |
0 commit comments