mirror of https://github.com/lukechilds/Agama.git
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.
98 lines
1.5 KiB
98 lines
1.5 KiB
const nativeCoind = {
|
|
'btc': {
|
|
name: 'Bitcoin',
|
|
bin: 'bitcoin',
|
|
fullMode: true,
|
|
port: 8332,
|
|
},
|
|
'btcd': {
|
|
name: 'BitcoinDark',
|
|
bin: 'bitcoindarkd',
|
|
fullMode: true,
|
|
port: 14632,
|
|
},
|
|
'ltc': {
|
|
name: 'Litecoin',
|
|
bin: 'litecoin',
|
|
fullMode: true,
|
|
port: 9332,
|
|
},
|
|
'sys': {
|
|
name: 'Syscoin',
|
|
bin: 'syscoin',
|
|
fullMode: true,
|
|
port: 8368,
|
|
},
|
|
'uno': {
|
|
name: 'Unobtanium',
|
|
bin: 'unobtanium',
|
|
fullMode: true,
|
|
port: 65535,
|
|
},
|
|
'nmc': {
|
|
name: 'Namecoin',
|
|
bin: 'namecoin',
|
|
fullMode: true,
|
|
port: 8336,
|
|
},
|
|
'game': {
|
|
name: 'GameCredits',
|
|
bin: 'gamecredits',
|
|
fullMode: true,
|
|
port: 40001,
|
|
},
|
|
'mzc': {
|
|
name: 'MazaCoin',
|
|
bin: 'maza',
|
|
fullMode: true,
|
|
port: 12832,
|
|
},
|
|
'frk': {
|
|
name: 'Franko',
|
|
bin: 'franko',
|
|
fullMode: true,
|
|
port: 7913,
|
|
},
|
|
'doge': {
|
|
name: 'Dogecoin',
|
|
bin: 'dogecoin',
|
|
fullMode: true,
|
|
port: 22555,
|
|
},
|
|
'dgb': {
|
|
name: 'Digibyte',
|
|
bin: 'digibyte',
|
|
port: 14022,
|
|
},
|
|
'zet': {
|
|
name: 'Zetacoin',
|
|
bin: 'zetacoin',
|
|
fullMode: true,
|
|
port: 17335,
|
|
},
|
|
'btm': {
|
|
name: 'Bitmark',
|
|
bin: 'bitmark',
|
|
fullMode: true,
|
|
port: 9266,
|
|
},
|
|
'carb': {
|
|
name: 'Carboncoin',
|
|
bin: 'carboncoin',
|
|
fullMode: true,
|
|
port: 9351,
|
|
},
|
|
'anc': {
|
|
name: 'Anoncoin',
|
|
bin: 'anoncoin',
|
|
fullMode: true,
|
|
port: 28332,
|
|
},
|
|
'lbc': {
|
|
name: 'LBRY Credits',
|
|
bin: 'lbrycrd',
|
|
port: 9245,
|
|
}
|
|
};
|
|
|
|
module.exports = nativeCoind;
|