Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #452 from autonomoussoftware/etc-config
Browse files Browse the repository at this point in the history
Add ETC mainnet config file
  • Loading branch information
gabmontes authored Jun 21, 2019
2 parents d5156d8 + 809d8b9 commit 6041a72
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions public/config/etcMainnet.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
'use strict'

const MetronomeContracts = require('metronome-contracts')
const contracts = MetronomeContracts['classic']

module.exports = {
displayName: 'Classic',
chainId: 61,
symbol: 'ETC',

// contracts addresses
tokenPorterAddress: contracts.TokenPorter.address,
converterAddress: contracts.AutonomousConverter.address,
validatorAddress: contracts.Validator.address,
metTokenAddress: contracts.METToken.address,
auctionAddress: contracts.Auctions.address,

// urls
explorerUrl: 'https://blockscout.com/etc/mainnet/tx/{{hash}}/internal_transactions',
indexerUrl: 'https://etc.indexer.metronome.io',
metApiUrl: 'https://etc.api.metronome.io/',
wsApiUrl: 'wss://etc.wallet.metronome.io:8546',

// defauls
coinDefaultGasLimit: '21000',
metDefaultGasLimit: '250000',
defaultGasPrice: '10000000000',
maxGasPrice: '200000000000000000'
}

0 comments on commit 6041a72

Please sign in to comment.