mirror of https://github.com/lukechilds/coins.git
jl777
7 years ago
committed by
GitHub
249 changed files with 2667 additions and 100 deletions
@ -0,0 +1,7 @@ |
|||||
|
{ |
||||
|
"coin": "LXC", |
||||
|
"name": "luxcess group token", |
||||
|
"fname": "Luxcess Group Token", |
||||
|
"etomic": "0x0920af13cee692da3656e052a831e3e1fcc8097c", |
||||
|
"rpcport": 80 |
||||
|
} |
@ -1,2 +1,136 @@ |
|||||
the filenames in each subdirectory needs to match the coin's symbol exactly, that is the unique field that things are indexed by. Also for icons, please use .png files |
|
||||
|
NOTE: The filenames in each subdirectory needs to match the coin's symbol exactly, that is the unique field that things are indexed by. Also for icons, please use .png files |
||||
|
|
||||
|
### About this repository |
||||
|
This repository is the coins database which is accssed by graphical applications like [BarterDEX GUI](https://github.com/KomodoPlatform/BarterDEX). |
||||
|
|
||||
|
When submitting a pull request to add coin to BarterDEX make sure you have completed this checklist: |
||||
|
|
||||
|
### 0. The coin must be tested with BarterDEX atomic swaps |
||||
|
When submitting your coin add request please submit the three transctions (`bobdeposit`, `alicepayment` and `bobpayment`) URL which are produced by the atomic swap performed by `marketmaker` API. This means that before sumitting the further steps information to this coins database repo, you would have performaed an atomic swap, and the further steps explains the expected files/values to be submitted to this database repo. |
||||
|
|
||||
|
You can learn about performing an atomic swap from our documentation link https://docs.komodoplatform.com |
||||
|
|
||||
|
Or you can contact the team at coinintegration@komodoplatform.com to get help if required. |
||||
|
|
||||
|
Example: |
||||
|
|
||||
|
bobdeposit https://btc.example.org/tx/746179890c7cb6b10fe4fef1c835c51a648bba087d52903d9d889d84779b1b9b |
||||
|
alicepayment https://kmd.example.net/tx/2aa3cdc0000936f8fb2a5285e852a57f128913edea4d562433975fe84f6e6a8c |
||||
|
bobpayment https://btc.example.org/tx/f64ae4b56b43ab9017ccc767c16b9d9cdf438ed83de94ba0629f1213b5ecba72 |
||||
|
|
||||
|
|
||||
|
### 1. Coin info added to `coins` file (Required) |
||||
|
You need the following info in JSON format added to [coins](coins) file: |
||||
|
|
||||
|
```shell |
||||
|
# Example 1 |
||||
|
{ |
||||
|
"coin": "LTC", |
||||
|
"name": "litecoin", |
||||
|
"fname": "Litecoin", |
||||
|
"rpcport": 9332, |
||||
|
"pubtype": 48, |
||||
|
"p2shtype": 5, |
||||
|
"wiftype": 176, |
||||
|
"txfee": 100000 |
||||
|
} |
||||
|
|
||||
|
# Example 2 |
||||
|
{ |
||||
|
"coin":"PEW", |
||||
|
"name":"brofist", |
||||
|
"fname": "Brofist", |
||||
|
"confpath": "USERHOME/.brofistcore/brofist.conf" |
||||
|
"rpcport":12454, |
||||
|
"pubtype":55, |
||||
|
"p2shtype":10, |
||||
|
"wiftype":198, |
||||
|
"txfee":10000 |
||||
|
} |
||||
|
|
||||
|
# Example 3 |
||||
|
{ |
||||
|
"coin": "REP", |
||||
|
"name": "augur", |
||||
|
"fname": "Augur", |
||||
|
"etomic": "0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6", |
||||
|
"rpcport": 80 |
||||
|
} |
||||
|
``` |
||||
|
|
||||
|
#### Bitcoin Protocol specific JSON |
||||
|
|
||||
|
`"coin"` must be coin ticker. |
||||
|
|
||||
|
`"name"` must be coin's name, in all small letters. This is the value which is expected to be default data directory name for that coin. Example if coin's name is `litecoin` then it's expected data directory on Linux is `~/.litecoin/`, on Mac `~/Library/Applications Support/Litecoin/`, on Windows `%AppData%\Litecoin`. Please keep this key's value in small letters only. |
||||
|
|
||||
|
`"confpath"` must be ONLY used in case the expected data directory name of the coin/project is different to the `"name"`'s value, as explained in last point. Please refer to Example 2 for better understanding. Make sure to use the exact format for `confpath`. You don't need to change the word `USERHOME`, it remains as is. Make sure you have `/.` after `USERHOME`. And then the expected coin/project's data directory path and it's expected `.conf` file name. |
||||
|
|
||||
|
`"fname"` must be coin's full name. |
||||
|
|
||||
|
`"rpcport"` must be coin's default RPC port. It is expected that it doesn't conflict with any existing coin in the coins db. |
||||
|
|
||||
|
`"pubtype"`, `"p2shtype"`, and `"wiftype"` is the also very specific information about coin's parameters. This is specific to Bitcoin Protocol compatible coins only, and such information can be found in source code of the project. These parameters information can be expected in files like `src/init.cpp`, `src/base58.h`, and `src/chainparamsbase.h` if the project is following the **bitcoin** source code directory/files structure. If the parameters info is unclear then please have these confirmed by that coin/project's developers and make sure it's correct information. |
||||
|
|
||||
|
`"txfee"` is a value of default transactions fee, which must be specified in satoshies unit. BarterDEX uses this as the default transaction fee value when makes atomic swaps transactions. |
||||
|
|
||||
|
|
||||
|
#### Ethereum Protocol specific JSON |
||||
|
|
||||
|
Ethereum protocol specific coin/project add request are the most simplest. `"coin"`, `"name"`, and `"fname"` information is same as explained in bitcoin protocol specific json section. |
||||
|
|
||||
|
`"rpcport"` must remain default for all ERC20 token/coins. Make sure its only specified as `80`. |
||||
|
|
||||
|
`"etomic"` must be the ERC20 token/coin's smart contract address. |
||||
|
|
||||
|
|
||||
|
### 2. Icon file (Required) |
||||
|
- The icon file is required. |
||||
|
- Icon must be a .png format file. |
||||
|
- Dimentions of icon file is 82x82 pixels. |
||||
|
- Icon file name MUST be in **small letters**. |
||||
|
- Icon file location is [icons](icons) directory. |
||||
|
|
||||
|
|
||||
|
### 3. Explorer URL (Required) |
||||
|
- Explorer file name must be coin's ticker name matching the `"coin"` value as specified in [coins](coins) file. |
||||
|
- Explorer file name must not have any file extension. It is a file without any `.` extension. |
||||
|
- Explorer file name must be all in **capital** letters. |
||||
|
- It must have a valid JSON array with at least one Explorer URL in it. It's better if there are more than one explorer URLs in this JSON array. Example: `["http://example1.com/tx/","http://example2.com/tx/"]`. |
||||
|
- The URL of Explorer must be pointing to the transactions URL. Check BTC file for an example: [explorers/BTC](explorers/BTC), which has `["https://www.blocktrail.com/BTC/tx/"]`. This explorers URL is used to show in graphical applications to link to the transactions like this [example link](https://www.blocktrail.com/BTC/tx/5268d045196e940ca8ba53b442c38a0f8c159002c912f8427239153dce984cc3). Make sure this URL ends with `/`. |
||||
|
|
||||
|
### 4. Electrum Servers (Optional) |
||||
|
|
||||
|
- Electrum file name must be coin's ticker name matching the `"coin"` value as specified in [coins](coins) file. |
||||
|
- Electrum file name must not have any file extension. It is a file without any `.` extension. |
||||
|
- Electrum file name must be all in **capital** letters. |
||||
|
- It must be a valid JSON format as shown in the following example: |
||||
|
|
||||
|
```JSON |
||||
|
[ |
||||
|
{ |
||||
|
"electrum1.example.com": 12345, |
||||
|
"contact": [ |
||||
|
{"email": "electrum1_admin_email@example.com"}, |
||||
|
{"matrix": "@electrum1_admin:matrix.org"}, |
||||
|
{"skype": "example_username"}, |
||||
|
{"twitter": "example_username"}, |
||||
|
{"reddit": "example_username"}, |
||||
|
{"github": "example_username"}, |
||||
|
{"keybaseio": "example_username"} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.example.com": 12345, |
||||
|
"contact": [ |
||||
|
{"email": "electrum2_admin_email@example.com"} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
``` |
||||
|
|
||||
|
- At least minimum 2 or more Electrum servers information must be provided. |
||||
|
- Contact information must be provided in case the server admin needs to be contact in urgent cases when required. It can be any contact information out of the examples provided. Or may be add your own service/contact information as suites you. |
||||
|
- The address and port of electrum server are required. The address of electrum server can either be a DNS or an IP address. |
||||
|
|
||||
|
File diff suppressed because it is too large
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50081},{"136.243.45.140": 50081}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10068, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10068, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10068, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1 @@ |
|||||
|
[{"bsmn0.cleanblockchain.io":50001},{"bsmn1.cleanblockchain.org":50001}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10051},{"electrum1.cipig.net":10051}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10051, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10051, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10051, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10022},{"electrum1.cipig.net": 10022}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10022, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10022, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10022, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10012},{"electrum1.cipig.net":10012}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10012, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10012, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10012, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +0,0 @@ |
|||||
[{"electrum2.cipig.net":10054},{"electrum1.cipig.net":10054}] |
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10007},{"electrum1.cipig.net":10007}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10007, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10007, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10007, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"node1.komodo.rocks":50001},{"e-x.not.fyi":50001},{"helicarrier.bauerj.eu":50001},{"electrum.hsmiths.com":50001}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10000, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10000, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10000, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10020},{"electrum1.cipig.net":10020}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10020, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10020, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10020, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1 @@ |
|||||
|
[{"electrum.btcprivate.org":5222},{"electrum2.btcprivate.org":5222}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10056},{"electrum1.cipig.net":10056}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10056, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10056, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10056, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"94.130.224.11":10052},{"173.212.225.176":10052}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10052, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10052, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10052, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10057},{"electrum1.cipig.net":10057}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10057, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10057, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10057, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1 @@ |
|||||
|
[{"electrum1.chainmakers.co":55417}, {"electrum2.chainmakers.co":55417}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10053},{"electrum1.cipig.net":10053}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10053, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10053, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10053, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"78.47.146.222":10011},{"94.130.173.120":10011},{"electrum2.cipig.net":10011},{"electrum1.cipig.net":10011}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10011, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10011, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10011, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1 @@ |
|||||
[{"173.212.225.176": 50041},{"136.243.45.140": 50041}] |
[{"sgp-crwseed.crowndns.info":50001},{"blr-crwseed.crowndns.info":50001},{"sfo-crwseed.crowndns.info":50001},{"nyc-crwseed.crowndns.info":50001},{"ams-crwseed.crowndns.info":50001},{"tor-crwseed.crowndns.info":50001},{"lon-crwseed.crowndns.info":50001},{"fra-crwseed.crowndns.info":50001}] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10008},{"electrum1.cipig.net":10008}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10008, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10008, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10008, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50098},{"136.243.45.140": 50098}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10061, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10061, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10061, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10006},{"electrum1.cipig.net":10006}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10006, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10006, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10006, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"136.243.45.140": 50022},{"173.212.225.176": 50022}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10059, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10059, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10059, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1 @@ |
|||||
[{"173.254.244.122":50002},{"173.254.244.119":50002},{"155.254.33.176":50002}] |
[{"144.202.95.223":50001},{"45.77.137.111":50001}] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50015},{"136.243.45.140": 50015}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10060, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10060, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10060, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50079},{"136.243.45.140": 50079}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10062, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10062, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10062, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1 @@ |
|||||
|
[{"159.65.91.235":10801},{"167.99.204.42":10801}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10025},{"electrum1.cipig.net": 10025}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10025, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10025, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10025, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50005},{"136.243.45.140": 50005}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10063, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10063, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10063, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10074, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10074, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10074, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10072, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10072, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10072, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10073, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10073, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10073, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -0,0 +1 @@ |
|||||
|
[{"electrum1.glx.co":60012},{"electrum2.glx.co":60012}] |
@ -1 +1 @@ |
|||||
[{"electrum10.groestlcoin.org":50001},{"electrum11.groestlcoin.org":50001},{"electrum13.groestlcoin.org":50001},{"electrum14.groestlcoin.org":50001}] |
[{"electrum10.groestlcoin.org":50001},{"electrum11.groestlcoin.org":50001},{"electrum13.groestlcoin.org":50001},{"electrum14.groestlcoin.org":50001}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10009},{"electrum1.cipig.net":10009}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10009, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10009, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10009, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50013},{"136.243.45.140": 50013}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10064, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10064, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10064, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10004},{"electrum1.cipig.net": 10004}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10004, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10004, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10004, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1,2 +1,36 @@ |
|||||
[{"electrum2.cipig.net":10001},{"electrum1.cipig.net":10001}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10001, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10001, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10001, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
|
||||
|
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10016, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10016, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10016, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50012},{"136.243.45.140": 50012}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10065, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10065, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10065, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10077, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10077, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10077, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10015},{"electrum1.cipig.net":10015}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10015, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10015, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10015, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net":10002},{"electrum1.cipig.net":10002}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10002, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10002, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10002, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1 @@ |
|||||
[{"173.212.225.176": 50002},{"136.243.45.140": 50002}] |
[{"electrumx1.monacoin.nl":50001},{"electrumx2.monacoin.nl":50001},{"electrumx1.monacoin.ninja":50001},{"electrumx2.monacoin.ninja":50001}] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10013},{"electrum1.cipig.net": 10013}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10013, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10013, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10013, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50036},{"136.243.45.140": 50036}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10066, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10066, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10066, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1 @@ |
|||||
|
[{"electrum.paccoin.io":50001},{"electro-pac.paccoin.io":50001}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10010},{"electrum1.cipig.net": 10010}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10010, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10010, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10010, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10024},{"electrum1.cipig.net": 10024}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10024, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10024, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10024, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10075, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10075, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10075, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -0,0 +1 @@ |
|||||
|
[{"electrum.our-rapture.com":50001},{"electrum2.our-rapture.com":50001}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10003},{"electrum1.cipig.net": 10003}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10003, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10003, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10003, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10050},{"electrum1.cipig.net": 10050}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10050, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10050, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10050, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1 @@ |
|||||
|
[{"electrum1.smartcash.cc":50001},{"electrum2.smartcash.cc":50001},{"electrum3.smartcash.cc":50001},{"electrum4.smartcash.cc":50001}] |
@ -1 +0,0 @@ |
|||||
[{"128.199.233.38": 10001},{"45.77.254.232": 10001}] |
|
@ -0,0 +1 @@ |
|||||
|
[{"ex001-stak.qxu.io":50001},{"ex002-stak.qxu.io":50001},{"electrumx.straks.info":50001}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10005},{"electrum1.cipig.net": 10005}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10005, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10005, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10005, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50033},{"136.243.45.140": 50033}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10067, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10067, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10067, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50088},{"136.243.45.140": 50088}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10071, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10071, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10071, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10014},{"electrum1.cipig.net": 10014}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10014, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10014, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10014, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10076, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10076, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10076, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -0,0 +1 @@ |
|||||
|
[{"electrumsvr.snowgem.org":50001},{"electrumsvr2.snowgem.org":50001}] |
@ -0,0 +1 @@ |
|||||
|
[{"electrumx01.zcoin.io":50001},{"electrumx02.zcoin.io":50001},{"45.63.92.224":50001},{"45.77.67.235":50001}] |
@ -1 +1,35 @@ |
|||||
[{"electrum2.cipig.net": 10055},{"electrum1.cipig.net": 10055}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10055, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10055, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10055, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -1 +1,35 @@ |
|||||
[{"173.212.225.176": 50032},{"136.243.45.140": 50032}] |
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10058, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10058, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10058, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
@ -0,0 +1,35 @@ |
|||||
|
[ |
||||
|
{ |
||||
|
"electrum3.cipig.net": 10028, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum2.cipig.net": 10028, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
}, |
||||
|
{ |
||||
|
"electrum1.cipig.net": 10028, |
||||
|
"contact": [ |
||||
|
{ |
||||
|
"email": "cipi@komodoplatform.com" |
||||
|
}, |
||||
|
{ |
||||
|
"matrix": "@cipig:matrix.org" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
@ -0,0 +1 @@ |
|||||
|
["https://explorer.atbcoin.com/tx/"] |
@ -0,0 +1 @@ |
|||||
|
["http://207.246.65.114:3001/tx/"] |
@ -1 +1 @@ |
|||||
["http://axo.explorer.supernet.org/tx/"] |
["https://axo.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["http://be.cleanblockchain.org/tx/"] |
@ -1 +1 @@ |
|||||
["http://beer.komodochainz.info/tx/"] |
["https://beer.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://bet.explorer.supernet.org/tx/"] |
["https://bet.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://bots.explorer.supernet.org/tx/"] |
["https://bots.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://btch.explorer.supernet.org/tx/"] |
["https://btch.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["http://explorer.bitnexus.online/tx/"] |
@ -0,0 +1 @@ |
|||||
|
["https://explorer.buck.red/tx/"] |
@ -1 +1 @@ |
|||||
["http://ceal.explorer.supernet.org/tx/"] |
["https://ceal.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["https://explorer.chainmakers.co/tx/"] |
@ -1 +1 @@ |
|||||
["https://github.com/BloodyNora/coins"] |
["http://chips1.explorer.supernet.org/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["https://explorer.commercium.net/tx/"] |
@ -0,0 +1 @@ |
|||||
|
["https://chainz.cryptoid.info/colx/tx.dws?"] |
@ -0,0 +1 @@ |
|||||
|
["http://explorer.crds.co/tx/"] |
@ -1 +1 @@ |
|||||
["http://crypto.explorer.supernet.org/tx/"] |
["https://crypto.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://dex.explorer.supernet.org/tx/"] |
["https://dex.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["https://explorer.dinerocoin.org/tx/"] |
@ -0,0 +1 @@ |
|||||
|
["https://chainz.cryptoid.info/dope/tx.dws?"] |
@ -0,0 +1 @@ |
|||||
|
["https://dsec.ac/tx/"] |
@ -1 +1 @@ |
|||||
["http://etomic.kmd.host/tx/"] |
["https://etomic.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["https://chainz.cryptoid.info/gld/tx.dws?"] |
@ -0,0 +1 @@ |
|||||
|
["http://glx.info/tx/"] |
@ -0,0 +1 @@ |
|||||
|
["https://garli.co.in/tx/"] |
@ -1 +1 @@ |
|||||
["http://HODL.explorer.supernet.org/tx/"] |
["https://hodl.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["https://chainz.cryptoid.info/hxx/tx.dws?"] |
@ -1 +1 @@ |
|||||
["http://jumblr.explorer.supernet.org/tx/"] |
["https://jumblr.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["https://www.kmd.host/tx/"] |
["https://kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://kv.explorer.supernet.org/tx/"] |
["https://ceal.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://mesh.explorer.supernet.org/tx/"] |
["https://mesh.kmdexplorer.io/tx/"] |
||||
|
@ -1 +1 @@ |
|||||
["http://mgw.explorer.supernet.org/tx/"] |
["https://mgw.kmdexplorer.io/tx/"] |
||||
|
@ -0,0 +1 @@ |
|||||
|
["https://info.mktcoin.org/tx/"] |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue