Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit 023519f

Browse files
committed
Merge branch 'master' into develop
2 parents 07848ed + 9f68f4a commit 023519f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metronome-desktop-wallet",
3-
"version": "0.11.0",
3+
"version": "1.1.0",
44
"private": true,
55
"author": {
66
"name": "Autonomous Software",

public/main/settings/defaultSettings.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"app": {
3-
"chain": "ropsten",
3+
"chain": "mainnet",
44
"node": {
5-
"jsonRpcApiUrl": "https://eth.met.bloqrock.net:8545",
6-
"websocketApiUrl": "wss://eth.met.bloqrock.net:8546"
5+
"jsonRpcApiUrl": "https://eth.wallet.metronome.io:8545",
6+
"websocketApiUrl": "wss://eth.wallet.metronome.io:8546"
77
},
88
"defaultDerivationPath": "m/44'/60'/0'/0",
9-
"indexerApiUrl": "https://indexer.met.bloqrock.net",
10-
"tracerApiUrl": "https://tracer.met.bloqrock.net"
9+
"indexerApiUrl": "https://indexer.metronome.io",
10+
"tracerApiUrl": "https://tracer.metronome.io"
1111
},
1212
"coincap": {
1313
"ethPriceEmitRate": 5
1414
},
1515
"tokens": {
16-
"0xf3e9a687fdf24112745d4d7dee150ba87a07ecc3": {
16+
"0xa3d58c4E56fedCae3a7c43A725aeE9A71F0ece4e": {
1717
"decimals": 18,
1818
"name": "Metronome",
1919
"symbol": "MET"

src/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import MetronomeContracts from 'metronome-contracts'
22

3-
const addresses = MetronomeContracts.addresses[process.env.REACT_APP_ETH_CHAIN || 'ropsten']
4-
const defaultExplorerUrl = 'https://explorer.met.bloqrock.net'
3+
const addresses = MetronomeContracts.addresses[process.env.REACT_APP_ETH_CHAIN || 'main']
4+
const defaultExplorerUrl = 'https://explorer.metronome.io'
55

66
export default {
77
MET_TOKEN_ADDR: addresses.metToken.toLowerCase(),
88
CONVERTER_ADDR: addresses.autonomousConverter.toLowerCase(),
99
MET_EXPLORER_URL: process.env.REACT_APP_MET_EXPLORER_URL || defaultExplorerUrl,
10-
SENTRY_DSN: process.env.REACT_APP_SENTRY_DSN,
10+
SENTRY_DSN: process.env.REACT_APP_SENTRY_DSN || 'https://d9905c2eec994071935593d4085d3547@sentry.io/290706',
1111
ETH_DEFAULT_GAS_LIMIT: '21000',
1212
MET_DEFAULT_GAS_LIMIT: '250000',
1313
DEFAULT_GAS_PRICE: '1000000000',

0 commit comments

Comments
 (0)