You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/public/data/appConfig.json

83 lines
2.5 KiB

6 years ago
{
"coins": [
{
"name": "Ethereum",
"symbol": "ETH",
"network": "eth",
"bip44": "m/44'/60'/0'/0",
"chainId": 1,
"defaultGasPrice": 64,
"defaultGasLimit": 21000,
"defaultGasLimitTokens": 200000,
"tokens": "./data/ethereumTokens.json",
"web3": [
"wss://eth2.trezor.io/geth"
],
6 years ago
"explorer": {
"tx": "https://etherscan.io/tx/",
"address": "https://etherscan.io/address/"
}
},
{
"name": "Ethereum Classic",
"symbol": "ETC",
"network": "etc",
"chainId": 61,
"bip44": "m/44'/61'/0'/0",
"defaultGasPrice": 64,
"defaultGasLimit": 21000,
"defaultGasLimitTokens": 200000,
"tokens": "./data/ethereumClassicTokens.json",
"web3": [
"wss://etc2.trezor.io/geth"
],
6 years ago
"explorer": {
"tx": "https://gastracker.io/tx/",
"address": "https://gastracker.io/addr/"
}
},
6 years ago
{
"name": "Ethereum Ropsten",
"symbol": "tROP",
"network": "trop",
"chainId": 3,
6 years ago
"bip44": "m/44'/60'/0'/0",
"defaultGasPrice": 64,
"defaultGasLimit": 21000,
"defaultGasLimitTokens": 200000,
"tokens": "./data/ropstenTokens.json",
"web3": [
"wss://ropsten1.trezor.io/geth"
],
6 years ago
"explorer": {
"tx": "https://ropsten.etherscan.io/tx/",
"address": "https://ropsten.etherscan.io/address/"
6 years ago
}
6 years ago
}
],
"fiatValueTickers": [
6 years ago
{
"network": "eth",
6 years ago
"url": "https://api.coinmarketcap.com/v1/ticker/ethereum/"
},
{
"network": "etc",
6 years ago
"url": "https://api.coinmarketcap.com/v1/ticker/ethereum-classic/"
}
6 years ago
],
6 years ago
"supportedBrowsers": {
"chrome": {
"version": 59,
"download": "https://www.google.com/chrome/",
"update": "https://support.google.com/chrome/answer/95414"
},
"firefox": {
"version": 54,
"download": "https://www.mozilla.org/en-US/firefox/new/",
"update": "https://support.mozilla.org/en-US/kb/update-firefox-latest-version"
}
}
6 years ago
}