diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e8a73947f..b6ce3ec05 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -48,6 +48,10 @@ jobs:
run: |
cp android/app/src/main/cpp/libs/armeabi-v7a/libmm2.a build/api-binaries/libmm2-armeabi-v7a.a
cp android/app/src/main/cpp/libs/arm64-v8a/libmm2.a build/api-binaries/libmm2-arm64-v8a.a
+ # Download coins assets
+ - name: Download coins assets
+ shell: bash
+ run: ${GITHUB_WORKSPACE}/fetch_coin_assets.py
# Upload API binaries
- name: Upload API binaries
uses: actions/upload-artifact@v3
diff --git a/.github/workflows/validate_coins.yml b/.github/workflows/validate_coins.yml
index 2f6021cd3..2d7a67647 100644
--- a/.github/workflows/validate_coins.yml
+++ b/.github/workflows/validate_coins.yml
@@ -31,9 +31,17 @@ jobs:
- name: Get coins repo commit
id: coins
run: |
- echo "hash=$(jq -r .coins_repo_commit coins_ci.json)" >> $GITHUB_ENV
+ export commit_hash="$(jq -r .bundled_coins_repo_commit assets/coins_ci.json)"
+ if [ -z "${commit_hash}" ]; then
+ echo "No coins repo commit found in coins_ci.json"
+ exit 1
+ fi
+ echo "hash=${commit_hash}" >> $GITHUB_ENV
shell: bash
+ - name: Get coins asset files
+ run: python3 fetch_coin_assets.py
+
- name: Get coins.json and coins_config.json from KomodoPlatform/coins repo
run: |
curl -O https://raw.githubusercontent.com/KomodoPlatform/coins/${hash}/coins
diff --git a/.gitignore b/.gitignore
index 6739ab05f..cbf851cba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,7 +19,9 @@
.svn/
# coins file extras
-# /assets/coins.json
+/assets/coins.json
+/assets/coins_config.json
+/assets/coin-icons
/app_assets
/coins_assets
diff --git a/README.md b/README.md
index 3a394f0c7..fd699e263 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
# Komodo Wallet - Open Source GitHub Repository 🚀
+
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/komodoplatform/atomicdex-mobile/build.yml)
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/komodoplatform/atomicdex-mobile)
![GitHub contributors](https://img.shields.io/github/contributors-anon/komodoplatform/atomicdex-mobile)
@@ -13,7 +14,7 @@ Welcome to the Komodo Wallet open-source repository! This cutting-edge project i
-
+
@@ -21,9 +22,11 @@ Welcome to the Komodo Wallet open-source repository! This cutting-edge project i
## Unleashing the Power of Komodo DeFi Framework 💡
+
We've made this repository public to showcase the incredible potential of the Komodo DeFi Framework and to spark interest among companies looking to integrate this game-changing technology into their own applications. Our goal is to drive innovation and expand the reach of decentralised exchange technology worldwide.
## Exciting Features 🌟
+
- **Non-custodial wallet:** You're in control - only you can access your private keys.
- **Decentralized exchange:** Trade cryptocurrencies effortlessly across blockchain networks with atomic swap technology, bypassing the need for a middleman.
- **500+ Listed Cryptocurrencies:** A vast and ever-growing list of supported cryptocurrencies.
@@ -34,40 +37,39 @@ We've made this repository public to showcase the incredible potential of the Ko
- **Frequent updates:** Our dedicated developers are constantly working to enhance the app's user experience, security, and feature set.
## Download Komodo Wallet 📲
+
Embrace financial freedom at your fingertips by downloading the Komodo Wallet:
- [iOS](https://testflight.apple.com/join/c2mOLEoC)
- [Android](https://play.google.com/store/apps/details?id=com.komodoplatform.atomicdex)
## Get Involved 🤝
+
We welcome developers, designers, and testers' contributions to our open-source project. If you'd like to contribute, please review the [contribution guidelines](CONTRIBUTING.md) and [code of conduct](CODE_OF_CONDUCT.md).
For any questions about the Komodo Wallet or the exchange, join our lively [Discord Support channel](https://komodoplatform.com/discord). Official team members are identifiable by the "Komodo Team" role.
-# NB (Forkers/contributors):
+# NB (Forkers/contributors)
This repository is currently in the process of undergoing safety and Flutter version upgrades. Expect major merge conflicts in the near future for any files updated from this repository. Please note that this software is under active development and provided "as is" without warranties or guarantees. Use at your own risk, as the authors and maintainers shall not be held liable for any issues, damages, or losses resulting from its use.
## Getting Started
-Build requires up-to-date version of coins file from https://github.com/KomodoPlatform/coins
+Build requires up-to-date version of coins file from
Commit hash and sha256sum of coins file is specified in `coins_ci.json`.
-You may download one manually or use `fetch_coins.sh` script on Linux and macOS or `fetch_coins.ps1` PowerShell script on Windows.
-
-The `fetch_coins` script depends on sha256sum and jq utils:
+You may download one manually, use the `fetch_coin_assets.py` python script.
-Ubuntu: `sudo apt-get update && sudo apt-get install -y coreutils jq`
-
-MacOS: `brew install coreutils jq`, [Brew software](https://brew.sh/)
-
-Windows: `choco install jq`, [Choco software](https://chocolatey.org/)
+The `fetch_coin_assets.py` script requires python 3.8 or later. MacOS users might need to run the [following post-install commands](https://stackoverflow.com/a/42334357/5019115) for SSL certificate verification to work with their version of python:
+```bash
+pip install certifi
+/Applications/Python\ 3.12/Install\ Certificates.command
+```
## Build and run
-https://github.com/KomodoPlatform/AtomicDEX-mobile/wiki/Project-Setup#build-and-run
-
+
## Run/Build with screenshot and video recording ON
@@ -75,17 +77,14 @@ https://github.com/KomodoPlatform/AtomicDEX-mobile/wiki/Project-Setup#build-and-
flutter run --dart-define=screenshot=true
```
-
-## Komodo DeFi Framework Library Setup:
+## Komodo DeFi Framework Library Setup
Komodo Wallet runs the Komodo DeFi Framework locally on the user's device. The API binary is platform-specific and must be manually set up by the developer instead of a typical Flutter dependency.
Ensure you run the most recent Komodo DeFi Framework [stable release](https://github.com/KomodoPlatform/atomicDEX-API/releases). Download the API binary for each platform and extract its `libmm2.a` file into the applicable platform's API folder.
-
-
### [Stable API releases](https://github.com/KomodoPlatform/atomicDEX-API/releases)
-
+
| API Build | API Path* |
|--|--|
| android-aarch64 | `android/app/src/main/cpp/libs/arm64-v8a/libmm2.a` |
@@ -104,21 +103,27 @@ See [our wiki](https://github.com/KomodoPlatform/atomicdex-mobile/wiki/Project-S
## Localization
1. Extract messages to the .arb file:
+
```bash
flutter pub run intl_generator:extract_to_arb --output-dir=lib/l10n lib/localizations.dart
```
+
2. Sync generated `intl_messages.arb` with existing locale `intl_*.arb` files:
+
```bash
dart run sync_arb_files.dart
```
+
3. ARB files can be used for input to translation tools like [Arbify](https://github.com/Arbify/Arbify), [Localizely](https://localizely.com/) etc.
4. The resulting translations can be used to generate a set of libraries:
+
```bash
flutter pub run intl_generator:generate_from_arb --output-dir=lib/l10n lib/localizations.dart lib/l10n/intl_*.arb
```
+
5. Manual editing of generated `messages_*.dart` files might be needed to delete nullable syntax (`?` symbol), since the app doesn't support it yet.
-## Generate latest coin config:
+## Generate latest coin config
Clone the latest version of [coins](https://github.com/KomodoPlatform/coins)
@@ -134,20 +139,23 @@ Copy the generated `coins_config.json` file from the Utils folder and paste it i
## Audio samples sources
- - [ticking sound](https://freesound.org/people/FoolBoyMedia/sounds/264498/)
- - [silence](https://freesound.org/people/Mullabfuhr/sounds/540483/)
- - [start (iOS)](https://freesound.org/people/pizzaiolo/sounds/320664/)
+- [ticking sound](https://freesound.org/people/FoolBoyMedia/sounds/264498/)
+- [silence](https://freesound.org/people/Mullabfuhr/sounds/540483/)
+- [start (iOS)](https://freesound.org/people/pizzaiolo/sounds/320664/)
- ## Testing
+## Testing
+
+### 1. Manual testing
- ### 1. Manual testing
Manual testing plan:
[https://docs.google.com/spreadsheets/d/1jeIkGe2CmJ7YmuoVi6Rlc9KRr3wiBPf44Qy0Nd8qtOY/edit?usp=sharing](https://docs.google.com/spreadsheets/d/1jeIkGe2CmJ7YmuoVi6Rlc9KRr3wiBPf44Qy0Nd8qtOY/edit?usp=sharing)
- ### 2. Integration testing
+### 2. Integration testing
+
[Guide and coverage](integration_test/README.md)
- ### 3. Unit/Widget testing
+### 3. Unit/Widget testing
+
Not supported
## License 📄
diff --git a/assets/coin-icons/1inch.png b/assets/coin-icons/1inch.png
deleted file mode 100644
index 45b5403f3..000000000
Binary files a/assets/coin-icons/1inch.png and /dev/null differ
diff --git a/assets/coin-icons/aave.png b/assets/coin-icons/aave.png
deleted file mode 100644
index f719b01fc..000000000
Binary files a/assets/coin-icons/aave.png and /dev/null differ
diff --git a/assets/coin-icons/aby.png b/assets/coin-icons/aby.png
deleted file mode 100644
index 864711abd..000000000
Binary files a/assets/coin-icons/aby.png and /dev/null differ
diff --git a/assets/coin-icons/actn.png b/assets/coin-icons/actn.png
deleted file mode 100644
index 775aeb91d..000000000
Binary files a/assets/coin-icons/actn.png and /dev/null differ
diff --git a/assets/coin-icons/ada.png b/assets/coin-icons/ada.png
deleted file mode 100644
index b2416744a..000000000
Binary files a/assets/coin-icons/ada.png and /dev/null differ
diff --git a/assets/coin-icons/adx.png b/assets/coin-icons/adx.png
deleted file mode 100644
index 02433f717..000000000
Binary files a/assets/coin-icons/adx.png and /dev/null differ
diff --git a/assets/coin-icons/ageur.png b/assets/coin-icons/ageur.png
deleted file mode 100644
index 561905744..000000000
Binary files a/assets/coin-icons/ageur.png and /dev/null differ
diff --git a/assets/coin-icons/agix.png b/assets/coin-icons/agix.png
deleted file mode 100644
index 814457cc1..000000000
Binary files a/assets/coin-icons/agix.png and /dev/null differ
diff --git a/assets/coin-icons/ankr.png b/assets/coin-icons/ankr.png
deleted file mode 100644
index fd5cba7f8..000000000
Binary files a/assets/coin-icons/ankr.png and /dev/null differ
diff --git a/assets/coin-icons/ant.png b/assets/coin-icons/ant.png
deleted file mode 100644
index ab0a8b4f3..000000000
Binary files a/assets/coin-icons/ant.png and /dev/null differ
diff --git a/assets/coin-icons/ape.png b/assets/coin-icons/ape.png
deleted file mode 100644
index e04947f44..000000000
Binary files a/assets/coin-icons/ape.png and /dev/null differ
diff --git a/assets/coin-icons/arpa.png b/assets/coin-icons/arpa.png
deleted file mode 100644
index aa3d2fcd9..000000000
Binary files a/assets/coin-icons/arpa.png and /dev/null differ
diff --git a/assets/coin-icons/arrr.png b/assets/coin-icons/arrr.png
deleted file mode 100644
index e144d9824..000000000
Binary files a/assets/coin-icons/arrr.png and /dev/null differ
diff --git a/assets/coin-icons/aslp.png b/assets/coin-icons/aslp.png
deleted file mode 100644
index 9798c4b21..000000000
Binary files a/assets/coin-icons/aslp.png and /dev/null differ
diff --git a/assets/coin-icons/atom.png b/assets/coin-icons/atom.png
deleted file mode 100644
index bcdf48fe2..000000000
Binary files a/assets/coin-icons/atom.png and /dev/null differ
diff --git a/assets/coin-icons/aud.png b/assets/coin-icons/aud.png
deleted file mode 100644
index 8a62bcf05..000000000
Binary files a/assets/coin-icons/aud.png and /dev/null differ
diff --git a/assets/coin-icons/aur.png b/assets/coin-icons/aur.png
deleted file mode 100644
index efb27d33d..000000000
Binary files a/assets/coin-icons/aur.png and /dev/null differ
diff --git a/assets/coin-icons/ava.png b/assets/coin-icons/ava.png
deleted file mode 100644
index 79bc6460f..000000000
Binary files a/assets/coin-icons/ava.png and /dev/null differ
diff --git a/assets/coin-icons/avax.png b/assets/coin-icons/avax.png
deleted file mode 100644
index be2ca084d..000000000
Binary files a/assets/coin-icons/avax.png and /dev/null differ
diff --git a/assets/coin-icons/avaxt.png b/assets/coin-icons/avaxt.png
deleted file mode 100644
index 05e6891cb..000000000
Binary files a/assets/coin-icons/avaxt.png and /dev/null differ
diff --git a/assets/coin-icons/avn.png b/assets/coin-icons/avn.png
deleted file mode 100644
index 0fa014411..000000000
Binary files a/assets/coin-icons/avn.png and /dev/null differ
diff --git a/assets/coin-icons/awc.png b/assets/coin-icons/awc.png
deleted file mode 100644
index 895dc56be..000000000
Binary files a/assets/coin-icons/awc.png and /dev/null differ
diff --git a/assets/coin-icons/axe.png b/assets/coin-icons/axe.png
deleted file mode 100644
index e67aa26a6..000000000
Binary files a/assets/coin-icons/axe.png and /dev/null differ
diff --git a/assets/coin-icons/axs.png b/assets/coin-icons/axs.png
deleted file mode 100644
index 6bc23278d..000000000
Binary files a/assets/coin-icons/axs.png and /dev/null differ
diff --git a/assets/coin-icons/aya.png b/assets/coin-icons/aya.png
deleted file mode 100644
index 819e34c0e..000000000
Binary files a/assets/coin-icons/aya.png and /dev/null differ
diff --git a/assets/coin-icons/babydoge.png b/assets/coin-icons/babydoge.png
deleted file mode 100644
index 6287321d1..000000000
Binary files a/assets/coin-icons/babydoge.png and /dev/null differ
diff --git a/assets/coin-icons/bal.png b/assets/coin-icons/bal.png
deleted file mode 100644
index 777b5a6fc..000000000
Binary files a/assets/coin-icons/bal.png and /dev/null differ
diff --git a/assets/coin-icons/banano.png b/assets/coin-icons/banano.png
deleted file mode 100644
index 3ba5c3c8d..000000000
Binary files a/assets/coin-icons/banano.png and /dev/null differ
diff --git a/assets/coin-icons/band.png b/assets/coin-icons/band.png
deleted file mode 100644
index 833552a59..000000000
Binary files a/assets/coin-icons/band.png and /dev/null differ
diff --git a/assets/coin-icons/bat.png b/assets/coin-icons/bat.png
deleted file mode 100644
index d9b105b54..000000000
Binary files a/assets/coin-icons/bat.png and /dev/null differ
diff --git a/assets/coin-icons/bbk.png b/assets/coin-icons/bbk.png
deleted file mode 100644
index 28f307580..000000000
Binary files a/assets/coin-icons/bbk.png and /dev/null differ
diff --git a/assets/coin-icons/bch.png b/assets/coin-icons/bch.png
deleted file mode 100644
index 14a233db1..000000000
Binary files a/assets/coin-icons/bch.png and /dev/null differ
diff --git a/assets/coin-icons/bep.png b/assets/coin-icons/bep.png
deleted file mode 100644
index bbfac87b3..000000000
Binary files a/assets/coin-icons/bep.png and /dev/null differ
diff --git a/assets/coin-icons/best.png b/assets/coin-icons/best.png
deleted file mode 100644
index ef85a0faa..000000000
Binary files a/assets/coin-icons/best.png and /dev/null differ
diff --git a/assets/coin-icons/bgn.png b/assets/coin-icons/bgn.png
deleted file mode 100644
index bd52272f4..000000000
Binary files a/assets/coin-icons/bgn.png and /dev/null differ
diff --git a/assets/coin-icons/bidr.png b/assets/coin-icons/bidr.png
deleted file mode 100644
index 54b82608d..000000000
Binary files a/assets/coin-icons/bidr.png and /dev/null differ
diff --git a/assets/coin-icons/bitn.png b/assets/coin-icons/bitn.png
deleted file mode 100644
index 277eee051..000000000
Binary files a/assets/coin-icons/bitn.png and /dev/null differ
diff --git a/assets/coin-icons/bkc.png b/assets/coin-icons/bkc.png
deleted file mode 100755
index 853642304..000000000
Binary files a/assets/coin-icons/bkc.png and /dev/null differ
diff --git a/assets/coin-icons/blk.png b/assets/coin-icons/blk.png
deleted file mode 100644
index 3d125223b..000000000
Binary files a/assets/coin-icons/blk.png and /dev/null differ
diff --git a/assets/coin-icons/blocx.png b/assets/coin-icons/blocx.png
deleted file mode 100644
index f7c9bf280..000000000
Binary files a/assets/coin-icons/blocx.png and /dev/null differ
diff --git a/assets/coin-icons/bnb.png b/assets/coin-icons/bnb.png
deleted file mode 100644
index 0352c742d..000000000
Binary files a/assets/coin-icons/bnb.png and /dev/null differ
diff --git a/assets/coin-icons/bnbt.png b/assets/coin-icons/bnbt.png
deleted file mode 100644
index bbfac87b3..000000000
Binary files a/assets/coin-icons/bnbt.png and /dev/null differ
diff --git a/assets/coin-icons/bnt.png b/assets/coin-icons/bnt.png
deleted file mode 100644
index e4d8525d1..000000000
Binary files a/assets/coin-icons/bnt.png and /dev/null differ
diff --git a/assets/coin-icons/boli.png b/assets/coin-icons/boli.png
deleted file mode 100644
index 1befd2a3c..000000000
Binary files a/assets/coin-icons/boli.png and /dev/null differ
diff --git a/assets/coin-icons/bone.png b/assets/coin-icons/bone.png
deleted file mode 100644
index 83ced9783..000000000
Binary files a/assets/coin-icons/bone.png and /dev/null differ
diff --git a/assets/coin-icons/borg.png b/assets/coin-icons/borg.png
deleted file mode 100644
index 1e0381913..000000000
Binary files a/assets/coin-icons/borg.png and /dev/null differ
diff --git a/assets/coin-icons/brl.png b/assets/coin-icons/brl.png
deleted file mode 100644
index 5b39d56ea..000000000
Binary files a/assets/coin-icons/brl.png and /dev/null differ
diff --git a/assets/coin-icons/brz.png b/assets/coin-icons/brz.png
deleted file mode 100644
index 227db10b8..000000000
Binary files a/assets/coin-icons/brz.png and /dev/null differ
diff --git a/assets/coin-icons/bsty.png b/assets/coin-icons/bsty.png
deleted file mode 100644
index 1be6492c1..000000000
Binary files a/assets/coin-icons/bsty.png and /dev/null differ
diff --git a/assets/coin-icons/btc.png b/assets/coin-icons/btc.png
deleted file mode 100644
index b712b70f4..000000000
Binary files a/assets/coin-icons/btc.png and /dev/null differ
diff --git a/assets/coin-icons/btcd.png b/assets/coin-icons/btcd.png
deleted file mode 100644
index 96a3589b8..000000000
Binary files a/assets/coin-icons/btcd.png and /dev/null differ
diff --git a/assets/coin-icons/btcz.png b/assets/coin-icons/btcz.png
deleted file mode 100644
index bca510fb1..000000000
Binary files a/assets/coin-icons/btcz.png and /dev/null differ
diff --git a/assets/coin-icons/bte.png b/assets/coin-icons/bte.png
deleted file mode 100644
index 97087c409..000000000
Binary files a/assets/coin-icons/bte.png and /dev/null differ
diff --git a/assets/coin-icons/btt.png b/assets/coin-icons/btt.png
deleted file mode 100644
index 950e58d92..000000000
Binary files a/assets/coin-icons/btt.png and /dev/null differ
diff --git a/assets/coin-icons/bttc.png b/assets/coin-icons/bttc.png
deleted file mode 100644
index 7d6808a1f..000000000
Binary files a/assets/coin-icons/bttc.png and /dev/null differ
diff --git a/assets/coin-icons/btu.png b/assets/coin-icons/btu.png
deleted file mode 100644
index f032773b9..000000000
Binary files a/assets/coin-icons/btu.png and /dev/null differ
diff --git a/assets/coin-icons/btx.png b/assets/coin-icons/btx.png
deleted file mode 100644
index 2f4d6dcf3..000000000
Binary files a/assets/coin-icons/btx.png and /dev/null differ
diff --git a/assets/coin-icons/busd.png b/assets/coin-icons/busd.png
deleted file mode 100644
index 122b11dc7..000000000
Binary files a/assets/coin-icons/busd.png and /dev/null differ
diff --git a/assets/coin-icons/cad.png b/assets/coin-icons/cad.png
deleted file mode 100644
index 28464df94..000000000
Binary files a/assets/coin-icons/cad.png and /dev/null differ
diff --git a/assets/coin-icons/cadc.png b/assets/coin-icons/cadc.png
deleted file mode 100644
index 90ac2ea9a..000000000
Binary files a/assets/coin-icons/cadc.png and /dev/null differ
diff --git a/assets/coin-icons/cake.png b/assets/coin-icons/cake.png
deleted file mode 100644
index 394f7583d..000000000
Binary files a/assets/coin-icons/cake.png and /dev/null differ
diff --git a/assets/coin-icons/case.png b/assets/coin-icons/case.png
deleted file mode 100644
index ce6107bc8..000000000
Binary files a/assets/coin-icons/case.png and /dev/null differ
diff --git a/assets/coin-icons/ccl.png b/assets/coin-icons/ccl.png
deleted file mode 100644
index a71780911..000000000
Binary files a/assets/coin-icons/ccl.png and /dev/null differ
diff --git a/assets/coin-icons/cdn.png b/assets/coin-icons/cdn.png
deleted file mode 100644
index 26dcf1ece..000000000
Binary files a/assets/coin-icons/cdn.png and /dev/null differ
diff --git a/assets/coin-icons/cel.png b/assets/coin-icons/cel.png
deleted file mode 100644
index 91c984c92..000000000
Binary files a/assets/coin-icons/cel.png and /dev/null differ
diff --git a/assets/coin-icons/celr.png b/assets/coin-icons/celr.png
deleted file mode 100644
index a6a84be68..000000000
Binary files a/assets/coin-icons/celr.png and /dev/null differ
diff --git a/assets/coin-icons/cfx.png b/assets/coin-icons/cfx.png
deleted file mode 100644
index aea6f167f..000000000
Binary files a/assets/coin-icons/cfx.png and /dev/null differ
diff --git a/assets/coin-icons/chf.png b/assets/coin-icons/chf.png
deleted file mode 100644
index fed5111db..000000000
Binary files a/assets/coin-icons/chf.png and /dev/null differ
diff --git a/assets/coin-icons/chips.png b/assets/coin-icons/chips.png
deleted file mode 100644
index 73c0bb9da..000000000
Binary files a/assets/coin-icons/chips.png and /dev/null differ
diff --git a/assets/coin-icons/chsb.png b/assets/coin-icons/chsb.png
deleted file mode 100644
index 8d075fd65..000000000
Binary files a/assets/coin-icons/chsb.png and /dev/null differ
diff --git a/assets/coin-icons/chta.png b/assets/coin-icons/chta.png
deleted file mode 100644
index 752141df2..000000000
Binary files a/assets/coin-icons/chta.png and /dev/null differ
diff --git a/assets/coin-icons/chungus.png b/assets/coin-icons/chungus.png
deleted file mode 100644
index efccbb78b..000000000
Binary files a/assets/coin-icons/chungus.png and /dev/null differ
diff --git a/assets/coin-icons/chz.png b/assets/coin-icons/chz.png
deleted file mode 100644
index a79193017..000000000
Binary files a/assets/coin-icons/chz.png and /dev/null differ
diff --git a/assets/coin-icons/clc.png b/assets/coin-icons/clc.png
deleted file mode 100644
index 2f37f930d..000000000
Binary files a/assets/coin-icons/clc.png and /dev/null differ
diff --git a/assets/coin-icons/colx.png b/assets/coin-icons/colx.png
deleted file mode 100644
index ab12bee5e..000000000
Binary files a/assets/coin-icons/colx.png and /dev/null differ
diff --git a/assets/coin-icons/comp.png b/assets/coin-icons/comp.png
deleted file mode 100644
index 37c0ff322..000000000
Binary files a/assets/coin-icons/comp.png and /dev/null differ
diff --git a/assets/coin-icons/crnc.png b/assets/coin-icons/crnc.png
deleted file mode 100644
index 90995a1f1..000000000
Binary files a/assets/coin-icons/crnc.png and /dev/null differ
diff --git a/assets/coin-icons/cro.png b/assets/coin-icons/cro.png
deleted file mode 100644
index e46dd59c8..000000000
Binary files a/assets/coin-icons/cro.png and /dev/null differ
diff --git a/assets/coin-icons/crv.png b/assets/coin-icons/crv.png
deleted file mode 100644
index f3eb720e7..000000000
Binary files a/assets/coin-icons/crv.png and /dev/null differ
diff --git a/assets/coin-icons/cummies.png b/assets/coin-icons/cummies.png
deleted file mode 100644
index 105db358b..000000000
Binary files a/assets/coin-icons/cummies.png and /dev/null differ
diff --git a/assets/coin-icons/cvc.png b/assets/coin-icons/cvc.png
deleted file mode 100644
index 90dc1628b..000000000
Binary files a/assets/coin-icons/cvc.png and /dev/null differ
diff --git a/assets/coin-icons/cvt.png b/assets/coin-icons/cvt.png
deleted file mode 100644
index 323d9c8a2..000000000
Binary files a/assets/coin-icons/cvt.png and /dev/null differ
diff --git a/assets/coin-icons/cvx.png b/assets/coin-icons/cvx.png
deleted file mode 100644
index a3684c45f..000000000
Binary files a/assets/coin-icons/cvx.png and /dev/null differ
diff --git a/assets/coin-icons/cy.png b/assets/coin-icons/cy.png
deleted file mode 100644
index 84eacdb81..000000000
Binary files a/assets/coin-icons/cy.png and /dev/null differ
diff --git a/assets/coin-icons/czk.png b/assets/coin-icons/czk.png
deleted file mode 100644
index fb8462416..000000000
Binary files a/assets/coin-icons/czk.png and /dev/null differ
diff --git a/assets/coin-icons/dai.png b/assets/coin-icons/dai.png
deleted file mode 100644
index 4eb9ec0c5..000000000
Binary files a/assets/coin-icons/dai.png and /dev/null differ
diff --git a/assets/coin-icons/dash.png b/assets/coin-icons/dash.png
deleted file mode 100644
index 39353b908..000000000
Binary files a/assets/coin-icons/dash.png and /dev/null differ
diff --git a/assets/coin-icons/ddd.png b/assets/coin-icons/ddd.png
deleted file mode 100644
index ea1460379..000000000
Binary files a/assets/coin-icons/ddd.png and /dev/null differ
diff --git a/assets/coin-icons/dent.png b/assets/coin-icons/dent.png
deleted file mode 100644
index 1106b489f..000000000
Binary files a/assets/coin-icons/dent.png and /dev/null differ
diff --git a/assets/coin-icons/dfx.png b/assets/coin-icons/dfx.png
deleted file mode 100644
index a2e82884d..000000000
Binary files a/assets/coin-icons/dfx.png and /dev/null differ
diff --git a/assets/coin-icons/dgb.png b/assets/coin-icons/dgb.png
deleted file mode 100644
index cdd6e3f93..000000000
Binary files a/assets/coin-icons/dgb.png and /dev/null differ
diff --git a/assets/coin-icons/dgc.png b/assets/coin-icons/dgc.png
deleted file mode 100644
index 409d0bfc4..000000000
Binary files a/assets/coin-icons/dgc.png and /dev/null differ
diff --git a/assets/coin-icons/dia.png b/assets/coin-icons/dia.png
deleted file mode 100644
index 124989fb6..000000000
Binary files a/assets/coin-icons/dia.png and /dev/null differ
diff --git a/assets/coin-icons/diac.png b/assets/coin-icons/diac.png
deleted file mode 100644
index 54bb370c9..000000000
Binary files a/assets/coin-icons/diac.png and /dev/null differ
diff --git a/assets/coin-icons/dimi.png b/assets/coin-icons/dimi.png
deleted file mode 100644
index 595639cb6..000000000
Binary files a/assets/coin-icons/dimi.png and /dev/null differ
diff --git a/assets/coin-icons/dkk.png b/assets/coin-icons/dkk.png
deleted file mode 100644
index 44c5e62e3..000000000
Binary files a/assets/coin-icons/dkk.png and /dev/null differ
diff --git a/assets/coin-icons/doc.png b/assets/coin-icons/doc.png
deleted file mode 100644
index 58f16ff17..000000000
Binary files a/assets/coin-icons/doc.png and /dev/null differ
diff --git a/assets/coin-icons/dodo.png b/assets/coin-icons/dodo.png
deleted file mode 100644
index 8989beb1b..000000000
Binary files a/assets/coin-icons/dodo.png and /dev/null differ
diff --git a/assets/coin-icons/doge.png b/assets/coin-icons/doge.png
deleted file mode 100644
index 8ed3006bb..000000000
Binary files a/assets/coin-icons/doge.png and /dev/null differ
diff --git a/assets/coin-icons/dogec.png b/assets/coin-icons/dogec.png
deleted file mode 100644
index ee5892318..000000000
Binary files a/assets/coin-icons/dogec.png and /dev/null differ
diff --git a/assets/coin-icons/dogedash.png b/assets/coin-icons/dogedash.png
deleted file mode 100644
index b1125d6ff..000000000
Binary files a/assets/coin-icons/dogedash.png and /dev/null differ
diff --git a/assets/coin-icons/doggy.png b/assets/coin-icons/doggy.png
deleted file mode 100644
index e8745e19d..000000000
Binary files a/assets/coin-icons/doggy.png and /dev/null differ
diff --git a/assets/coin-icons/doi.png b/assets/coin-icons/doi.png
deleted file mode 100644
index 141dd6320..000000000
Binary files a/assets/coin-icons/doi.png and /dev/null differ
diff --git a/assets/coin-icons/dot.png b/assets/coin-icons/dot.png
deleted file mode 100644
index 698371a4b..000000000
Binary files a/assets/coin-icons/dot.png and /dev/null differ
diff --git a/assets/coin-icons/dp.png b/assets/coin-icons/dp.png
deleted file mode 100644
index 8c3146131..000000000
Binary files a/assets/coin-icons/dp.png and /dev/null differ
diff --git a/assets/coin-icons/dust.png b/assets/coin-icons/dust.png
deleted file mode 100644
index fe1a8dd52..000000000
Binary files a/assets/coin-icons/dust.png and /dev/null differ
diff --git a/assets/coin-icons/dx.png b/assets/coin-icons/dx.png
deleted file mode 100644
index 7b7125a06..000000000
Binary files a/assets/coin-icons/dx.png and /dev/null differ
diff --git a/assets/coin-icons/eca.png b/assets/coin-icons/eca.png
deleted file mode 100644
index 304fae604..000000000
Binary files a/assets/coin-icons/eca.png and /dev/null differ
diff --git a/assets/coin-icons/efl.png b/assets/coin-icons/efl.png
deleted file mode 100644
index 2a0d32943..000000000
Binary files a/assets/coin-icons/efl.png and /dev/null differ
diff --git a/assets/coin-icons/egld.png b/assets/coin-icons/egld.png
deleted file mode 100644
index 4a2a6c49a..000000000
Binary files a/assets/coin-icons/egld.png and /dev/null differ
diff --git a/assets/coin-icons/eiln.png b/assets/coin-icons/eiln.png
deleted file mode 100644
index 78be95cb8..000000000
Binary files a/assets/coin-icons/eiln.png and /dev/null differ
diff --git a/assets/coin-icons/elf.png b/assets/coin-icons/elf.png
deleted file mode 100644
index f0d0feda0..000000000
Binary files a/assets/coin-icons/elf.png and /dev/null differ
diff --git a/assets/coin-icons/emc2.png b/assets/coin-icons/emc2.png
deleted file mode 100644
index 6f62a0769..000000000
Binary files a/assets/coin-icons/emc2.png and /dev/null differ
diff --git a/assets/coin-icons/enj.png b/assets/coin-icons/enj.png
deleted file mode 100644
index 1b30fe374..000000000
Binary files a/assets/coin-icons/enj.png and /dev/null differ
diff --git a/assets/coin-icons/eos.png b/assets/coin-icons/eos.png
deleted file mode 100644
index ff92d82dd..000000000
Binary files a/assets/coin-icons/eos.png and /dev/null differ
diff --git a/assets/coin-icons/erc.png b/assets/coin-icons/erc.png
deleted file mode 100644
index 452d6e835..000000000
Binary files a/assets/coin-icons/erc.png and /dev/null differ
diff --git a/assets/coin-icons/etc.png b/assets/coin-icons/etc.png
deleted file mode 100644
index 155d8c4e5..000000000
Binary files a/assets/coin-icons/etc.png and /dev/null differ
diff --git a/assets/coin-icons/eth.png b/assets/coin-icons/eth.png
deleted file mode 100644
index f34bb2009..000000000
Binary files a/assets/coin-icons/eth.png and /dev/null differ
diff --git a/assets/coin-icons/ethk.png b/assets/coin-icons/ethk.png
deleted file mode 100644
index d44622c12..000000000
Binary files a/assets/coin-icons/ethk.png and /dev/null differ
diff --git a/assets/coin-icons/ethr.png b/assets/coin-icons/ethr.png
deleted file mode 100644
index a4cd64d68..000000000
Binary files a/assets/coin-icons/ethr.png and /dev/null differ
diff --git a/assets/coin-icons/eure.png b/assets/coin-icons/eure.png
deleted file mode 100644
index 47be62aed..000000000
Binary files a/assets/coin-icons/eure.png and /dev/null differ
diff --git a/assets/coin-icons/euroe.png b/assets/coin-icons/euroe.png
deleted file mode 100644
index fc62d6a76..000000000
Binary files a/assets/coin-icons/euroe.png and /dev/null differ
diff --git a/assets/coin-icons/eurs.png b/assets/coin-icons/eurs.png
deleted file mode 100644
index b097454b6..000000000
Binary files a/assets/coin-icons/eurs.png and /dev/null differ
diff --git a/assets/coin-icons/evr.png b/assets/coin-icons/evr.png
deleted file mode 100644
index f3ac46d2e..000000000
Binary files a/assets/coin-icons/evr.png and /dev/null differ
diff --git a/assets/coin-icons/ewt.png b/assets/coin-icons/ewt.png
deleted file mode 100644
index 30f6fb51c..000000000
Binary files a/assets/coin-icons/ewt.png and /dev/null differ
diff --git a/assets/coin-icons/exn.png b/assets/coin-icons/exn.png
deleted file mode 100644
index 986f7e311..000000000
Binary files a/assets/coin-icons/exn.png and /dev/null differ
diff --git a/assets/coin-icons/fei.png b/assets/coin-icons/fei.png
deleted file mode 100644
index b066e62bb..000000000
Binary files a/assets/coin-icons/fei.png and /dev/null differ
diff --git a/assets/coin-icons/fet.png b/assets/coin-icons/fet.png
deleted file mode 100644
index 306a7aeb9..000000000
Binary files a/assets/coin-icons/fet.png and /dev/null differ
diff --git a/assets/coin-icons/fil.png b/assets/coin-icons/fil.png
deleted file mode 100644
index cb9ad2d64..000000000
Binary files a/assets/coin-icons/fil.png and /dev/null differ
diff --git a/assets/coin-icons/firo.png b/assets/coin-icons/firo.png
deleted file mode 100644
index 55943c28a..000000000
Binary files a/assets/coin-icons/firo.png and /dev/null differ
diff --git a/assets/coin-icons/fjc.png b/assets/coin-icons/fjc.png
deleted file mode 100644
index 832381703..000000000
Binary files a/assets/coin-icons/fjc.png and /dev/null differ
diff --git a/assets/coin-icons/fjcb.png b/assets/coin-icons/fjcb.png
deleted file mode 100644
index 2da381833..000000000
Binary files a/assets/coin-icons/fjcb.png and /dev/null differ
diff --git a/assets/coin-icons/flexusd.png b/assets/coin-icons/flexusd.png
deleted file mode 100644
index ec936da44..000000000
Binary files a/assets/coin-icons/flexusd.png and /dev/null differ
diff --git a/assets/coin-icons/flo.png b/assets/coin-icons/flo.png
deleted file mode 100644
index ebaf1ddac..000000000
Binary files a/assets/coin-icons/flo.png and /dev/null differ
diff --git a/assets/coin-icons/floki.png b/assets/coin-icons/floki.png
deleted file mode 100644
index 73545cea7..000000000
Binary files a/assets/coin-icons/floki.png and /dev/null differ
diff --git a/assets/coin-icons/flow.png b/assets/coin-icons/flow.png
deleted file mode 100644
index c2ad2009f..000000000
Binary files a/assets/coin-icons/flow.png and /dev/null differ
diff --git a/assets/coin-icons/flux.png b/assets/coin-icons/flux.png
deleted file mode 100644
index ab63cee62..000000000
Binary files a/assets/coin-icons/flux.png and /dev/null differ
diff --git a/assets/coin-icons/ftc.png b/assets/coin-icons/ftc.png
deleted file mode 100644
index eb73c94de..000000000
Binary files a/assets/coin-icons/ftc.png and /dev/null differ
diff --git a/assets/coin-icons/ftm.png b/assets/coin-icons/ftm.png
deleted file mode 100644
index e4036bdd8..000000000
Binary files a/assets/coin-icons/ftm.png and /dev/null differ
diff --git a/assets/coin-icons/ftmt.png b/assets/coin-icons/ftmt.png
deleted file mode 100644
index 90ccddc51..000000000
Binary files a/assets/coin-icons/ftmt.png and /dev/null differ
diff --git a/assets/coin-icons/fxs.png b/assets/coin-icons/fxs.png
deleted file mode 100644
index e1120368d..000000000
Binary files a/assets/coin-icons/fxs.png and /dev/null differ
diff --git a/assets/coin-icons/gala.png b/assets/coin-icons/gala.png
deleted file mode 100644
index 231c24f72..000000000
Binary files a/assets/coin-icons/gala.png and /dev/null differ
diff --git a/assets/coin-icons/game.png b/assets/coin-icons/game.png
deleted file mode 100644
index c5ab20320..000000000
Binary files a/assets/coin-icons/game.png and /dev/null differ
diff --git a/assets/coin-icons/gbx.png b/assets/coin-icons/gbx.png
deleted file mode 100644
index dad381688..000000000
Binary files a/assets/coin-icons/gbx.png and /dev/null differ
diff --git a/assets/coin-icons/gft.png b/assets/coin-icons/gft.png
deleted file mode 100644
index 8334d82d1..000000000
Binary files a/assets/coin-icons/gft.png and /dev/null differ
diff --git a/assets/coin-icons/glc.png b/assets/coin-icons/glc.png
deleted file mode 100644
index d3ab212c9..000000000
Binary files a/assets/coin-icons/glc.png and /dev/null differ
diff --git a/assets/coin-icons/gleec.png b/assets/coin-icons/gleec.png
deleted file mode 100644
index 405054170..000000000
Binary files a/assets/coin-icons/gleec.png and /dev/null differ
diff --git a/assets/coin-icons/glm.png b/assets/coin-icons/glm.png
deleted file mode 100644
index 94dd7cd11..000000000
Binary files a/assets/coin-icons/glm.png and /dev/null differ
diff --git a/assets/coin-icons/glmr.png b/assets/coin-icons/glmr.png
deleted file mode 100644
index af61edd5a..000000000
Binary files a/assets/coin-icons/glmr.png and /dev/null differ
diff --git a/assets/coin-icons/gm.png b/assets/coin-icons/gm.png
deleted file mode 100644
index 8fd677b4f..000000000
Binary files a/assets/coin-icons/gm.png and /dev/null differ
diff --git a/assets/coin-icons/gmt.png b/assets/coin-icons/gmt.png
deleted file mode 100644
index b14a506a3..000000000
Binary files a/assets/coin-icons/gmt.png and /dev/null differ
diff --git a/assets/coin-icons/gmx.png b/assets/coin-icons/gmx.png
deleted file mode 100644
index 4fc3fec94..000000000
Binary files a/assets/coin-icons/gmx.png and /dev/null differ
diff --git a/assets/coin-icons/gno.png b/assets/coin-icons/gno.png
deleted file mode 100644
index f66b9e928..000000000
Binary files a/assets/coin-icons/gno.png and /dev/null differ
diff --git a/assets/coin-icons/gns.png b/assets/coin-icons/gns.png
deleted file mode 100644
index 7d55a1b4f..000000000
Binary files a/assets/coin-icons/gns.png and /dev/null differ
diff --git a/assets/coin-icons/gnt.png b/assets/coin-icons/gnt.png
deleted file mode 100644
index b8717cac4..000000000
Binary files a/assets/coin-icons/gnt.png and /dev/null differ
diff --git a/assets/coin-icons/grlc.png b/assets/coin-icons/grlc.png
deleted file mode 100644
index fc121e8ae..000000000
Binary files a/assets/coin-icons/grlc.png and /dev/null differ
diff --git a/assets/coin-icons/grms.png b/assets/coin-icons/grms.png
deleted file mode 100644
index 91e2757ea..000000000
Binary files a/assets/coin-icons/grms.png and /dev/null differ
diff --git a/assets/coin-icons/grs.png b/assets/coin-icons/grs.png
deleted file mode 100644
index 8fb774f7c..000000000
Binary files a/assets/coin-icons/grs.png and /dev/null differ
diff --git a/assets/coin-icons/grt.png b/assets/coin-icons/grt.png
deleted file mode 100644
index 1cdb858e1..000000000
Binary files a/assets/coin-icons/grt.png and /dev/null differ
diff --git a/assets/coin-icons/gst.png b/assets/coin-icons/gst.png
deleted file mode 100644
index 640f66719..000000000
Binary files a/assets/coin-icons/gst.png and /dev/null differ
diff --git a/assets/coin-icons/gt.png b/assets/coin-icons/gt.png
deleted file mode 100644
index 0a1fb104b..000000000
Binary files a/assets/coin-icons/gt.png and /dev/null differ
diff --git a/assets/coin-icons/gusd.png b/assets/coin-icons/gusd.png
deleted file mode 100644
index b12ef4d3f..000000000
Binary files a/assets/coin-icons/gusd.png and /dev/null differ
diff --git a/assets/coin-icons/hex.png b/assets/coin-icons/hex.png
deleted file mode 100644
index a9fea2aaf..000000000
Binary files a/assets/coin-icons/hex.png and /dev/null differ
diff --git a/assets/coin-icons/hkd.png b/assets/coin-icons/hkd.png
deleted file mode 100644
index 5ed84b242..000000000
Binary files a/assets/coin-icons/hkd.png and /dev/null differ
diff --git a/assets/coin-icons/hlc.png b/assets/coin-icons/hlc.png
deleted file mode 100644
index 69ae83b3a..000000000
Binary files a/assets/coin-icons/hlc.png and /dev/null differ
diff --git a/assets/coin-icons/hot.png b/assets/coin-icons/hot.png
deleted file mode 100644
index 6a4d1337b..000000000
Binary files a/assets/coin-icons/hot.png and /dev/null differ
diff --git a/assets/coin-icons/hpy.png b/assets/coin-icons/hpy.png
deleted file mode 100644
index 1a0252566..000000000
Binary files a/assets/coin-icons/hpy.png and /dev/null differ
diff --git a/assets/coin-icons/hrk.png b/assets/coin-icons/hrk.png
deleted file mode 100644
index c1923c5ae..000000000
Binary files a/assets/coin-icons/hrk.png and /dev/null differ
diff --git a/assets/coin-icons/ht.png b/assets/coin-icons/ht.png
deleted file mode 100644
index b772b21c5..000000000
Binary files a/assets/coin-icons/ht.png and /dev/null differ
diff --git a/assets/coin-icons/huf.png b/assets/coin-icons/huf.png
deleted file mode 100644
index 8d93b5eaa..000000000
Binary files a/assets/coin-icons/huf.png and /dev/null differ
diff --git a/assets/coin-icons/husd.png b/assets/coin-icons/husd.png
deleted file mode 100644
index 5f1277cbe..000000000
Binary files a/assets/coin-icons/husd.png and /dev/null differ
diff --git a/assets/coin-icons/ic.png b/assets/coin-icons/ic.png
deleted file mode 100644
index 00e499080..000000000
Binary files a/assets/coin-icons/ic.png and /dev/null differ
diff --git a/assets/coin-icons/icx.png b/assets/coin-icons/icx.png
deleted file mode 100644
index 153b0ad91..000000000
Binary files a/assets/coin-icons/icx.png and /dev/null differ
diff --git a/assets/coin-icons/idr.png b/assets/coin-icons/idr.png
deleted file mode 100644
index da4e5a678..000000000
Binary files a/assets/coin-icons/idr.png and /dev/null differ
diff --git a/assets/coin-icons/il8p.png b/assets/coin-icons/il8p.png
deleted file mode 100644
index b903b56af..000000000
Binary files a/assets/coin-icons/il8p.png and /dev/null differ
diff --git a/assets/coin-icons/iln.png b/assets/coin-icons/iln.png
deleted file mode 100644
index e43972a32..000000000
Binary files a/assets/coin-icons/iln.png and /dev/null differ
diff --git a/assets/coin-icons/ilnf.png b/assets/coin-icons/ilnf.png
deleted file mode 100644
index 7205de78b..000000000
Binary files a/assets/coin-icons/ilnf.png and /dev/null differ
diff --git a/assets/coin-icons/ilnsw.png b/assets/coin-icons/ilnsw.png
deleted file mode 100644
index 56135324e..000000000
Binary files a/assets/coin-icons/ilnsw.png and /dev/null differ
diff --git a/assets/coin-icons/ils.png b/assets/coin-icons/ils.png
deleted file mode 100644
index 23bb4ffe5..000000000
Binary files a/assets/coin-icons/ils.png and /dev/null differ
diff --git a/assets/coin-icons/ilv.png b/assets/coin-icons/ilv.png
deleted file mode 100644
index 267340db5..000000000
Binary files a/assets/coin-icons/ilv.png and /dev/null differ
diff --git a/assets/coin-icons/imx.png b/assets/coin-icons/imx.png
deleted file mode 100644
index e77844ac3..000000000
Binary files a/assets/coin-icons/imx.png and /dev/null differ
diff --git a/assets/coin-icons/inj.png b/assets/coin-icons/inj.png
deleted file mode 100644
index 0cc907835..000000000
Binary files a/assets/coin-icons/inj.png and /dev/null differ
diff --git a/assets/coin-icons/ink.png b/assets/coin-icons/ink.png
deleted file mode 100644
index 4196f40bb..000000000
Binary files a/assets/coin-icons/ink.png and /dev/null differ
diff --git a/assets/coin-icons/inr.png b/assets/coin-icons/inr.png
deleted file mode 100644
index 8a361def3..000000000
Binary files a/assets/coin-icons/inr.png and /dev/null differ
diff --git a/assets/coin-icons/iost.png b/assets/coin-icons/iost.png
deleted file mode 100644
index d343d163e..000000000
Binary files a/assets/coin-icons/iost.png and /dev/null differ
diff --git a/assets/coin-icons/iota.png b/assets/coin-icons/iota.png
deleted file mode 100644
index d046e360c..000000000
Binary files a/assets/coin-icons/iota.png and /dev/null differ
diff --git a/assets/coin-icons/iotx.png b/assets/coin-icons/iotx.png
deleted file mode 100644
index 763b189a8..000000000
Binary files a/assets/coin-icons/iotx.png and /dev/null differ
diff --git a/assets/coin-icons/iris.png b/assets/coin-icons/iris.png
deleted file mode 100644
index b5e2bc277..000000000
Binary files a/assets/coin-icons/iris.png and /dev/null differ
diff --git a/assets/coin-icons/jaud.png b/assets/coin-icons/jaud.png
deleted file mode 100644
index dc319c837..000000000
Binary files a/assets/coin-icons/jaud.png and /dev/null differ
diff --git a/assets/coin-icons/jbrl.png b/assets/coin-icons/jbrl.png
deleted file mode 100644
index 966e74dc8..000000000
Binary files a/assets/coin-icons/jbrl.png and /dev/null differ
diff --git a/assets/coin-icons/jcad.png b/assets/coin-icons/jcad.png
deleted file mode 100644
index fc82b884e..000000000
Binary files a/assets/coin-icons/jcad.png and /dev/null differ
diff --git a/assets/coin-icons/jchf.png b/assets/coin-icons/jchf.png
deleted file mode 100644
index 7275c2c50..000000000
Binary files a/assets/coin-icons/jchf.png and /dev/null differ
diff --git a/assets/coin-icons/jcny.png b/assets/coin-icons/jcny.png
deleted file mode 100644
index 3f049c58e..000000000
Binary files a/assets/coin-icons/jcny.png and /dev/null differ
diff --git a/assets/coin-icons/jdb.png b/assets/coin-icons/jdb.png
deleted file mode 100644
index 889635754..000000000
Binary files a/assets/coin-icons/jdb.png and /dev/null differ
diff --git a/assets/coin-icons/jeur.png b/assets/coin-icons/jeur.png
deleted file mode 100644
index 30348c468..000000000
Binary files a/assets/coin-icons/jeur.png and /dev/null differ
diff --git a/assets/coin-icons/jgbp.png b/assets/coin-icons/jgbp.png
deleted file mode 100644
index 43e54059a..000000000
Binary files a/assets/coin-icons/jgbp.png and /dev/null differ
diff --git a/assets/coin-icons/jgold.png b/assets/coin-icons/jgold.png
deleted file mode 100644
index a2c5bf63d..000000000
Binary files a/assets/coin-icons/jgold.png and /dev/null differ
diff --git a/assets/coin-icons/jjpy.png b/assets/coin-icons/jjpy.png
deleted file mode 100644
index a064adbb1..000000000
Binary files a/assets/coin-icons/jjpy.png and /dev/null differ
diff --git a/assets/coin-icons/jkrw.png b/assets/coin-icons/jkrw.png
deleted file mode 100644
index 1b57d1639..000000000
Binary files a/assets/coin-icons/jkrw.png and /dev/null differ
diff --git a/assets/coin-icons/jmxn.png b/assets/coin-icons/jmxn.png
deleted file mode 100644
index 3c86b2c4a..000000000
Binary files a/assets/coin-icons/jmxn.png and /dev/null differ
diff --git a/assets/coin-icons/jnzd.png b/assets/coin-icons/jnzd.png
deleted file mode 100644
index 5620ee6dd..000000000
Binary files a/assets/coin-icons/jnzd.png and /dev/null differ
diff --git a/assets/coin-icons/joy.png b/assets/coin-icons/joy.png
deleted file mode 100644
index b6df5e986..000000000
Binary files a/assets/coin-icons/joy.png and /dev/null differ
diff --git a/assets/coin-icons/jphp.png b/assets/coin-icons/jphp.png
deleted file mode 100644
index 77d6a98c6..000000000
Binary files a/assets/coin-icons/jphp.png and /dev/null differ
diff --git a/assets/coin-icons/jpln.png b/assets/coin-icons/jpln.png
deleted file mode 100644
index 704c55f94..000000000
Binary files a/assets/coin-icons/jpln.png and /dev/null differ
diff --git a/assets/coin-icons/jpyc.png b/assets/coin-icons/jpyc.png
deleted file mode 100644
index ad73bf3a9..000000000
Binary files a/assets/coin-icons/jpyc.png and /dev/null differ
diff --git a/assets/coin-icons/jrt.png b/assets/coin-icons/jrt.png
deleted file mode 100644
index 8d2e668b6..000000000
Binary files a/assets/coin-icons/jrt.png and /dev/null differ
diff --git a/assets/coin-icons/jsek.png b/assets/coin-icons/jsek.png
deleted file mode 100644
index a52ce602d..000000000
Binary files a/assets/coin-icons/jsek.png and /dev/null differ
diff --git a/assets/coin-icons/jsgd.png b/assets/coin-icons/jsgd.png
deleted file mode 100644
index cd53964df..000000000
Binary files a/assets/coin-icons/jsgd.png and /dev/null differ
diff --git a/assets/coin-icons/jst.png b/assets/coin-icons/jst.png
deleted file mode 100644
index da99c0af0..000000000
Binary files a/assets/coin-icons/jst.png and /dev/null differ
diff --git a/assets/coin-icons/jtry.png b/assets/coin-icons/jtry.png
deleted file mode 100644
index 5c9cca8bb..000000000
Binary files a/assets/coin-icons/jtry.png and /dev/null differ
diff --git a/assets/coin-icons/jusd.png b/assets/coin-icons/jusd.png
deleted file mode 100644
index f018ccfcc..000000000
Binary files a/assets/coin-icons/jusd.png and /dev/null differ
diff --git a/assets/coin-icons/kcs.png b/assets/coin-icons/kcs.png
deleted file mode 100644
index 15aaaabf5..000000000
Binary files a/assets/coin-icons/kcs.png and /dev/null differ
diff --git a/assets/coin-icons/kiiro.png b/assets/coin-icons/kiiro.png
deleted file mode 100644
index 19240a27c..000000000
Binary files a/assets/coin-icons/kiiro.png and /dev/null differ
diff --git a/assets/coin-icons/kip0001.png b/assets/coin-icons/kip0001.png
deleted file mode 100644
index 7294efc5c..000000000
Binary files a/assets/coin-icons/kip0001.png and /dev/null differ
diff --git a/assets/coin-icons/kmd.png b/assets/coin-icons/kmd.png
deleted file mode 100644
index 43f8745dc..000000000
Binary files a/assets/coin-icons/kmd.png and /dev/null differ
diff --git a/assets/coin-icons/knc.png b/assets/coin-icons/knc.png
deleted file mode 100644
index 87e5b1d6a..000000000
Binary files a/assets/coin-icons/knc.png and /dev/null differ
diff --git a/assets/coin-icons/koin.png b/assets/coin-icons/koin.png
deleted file mode 100644
index b7eb57168..000000000
Binary files a/assets/coin-icons/koin.png and /dev/null differ
diff --git a/assets/coin-icons/krw.png b/assets/coin-icons/krw.png
deleted file mode 100644
index e33deb579..000000000
Binary files a/assets/coin-icons/krw.png and /dev/null differ
diff --git a/assets/coin-icons/ksm.png b/assets/coin-icons/ksm.png
deleted file mode 100644
index fdbd2ef7b..000000000
Binary files a/assets/coin-icons/ksm.png and /dev/null differ
diff --git a/assets/coin-icons/labs.png b/assets/coin-icons/labs.png
deleted file mode 100644
index 0fd8762ba..000000000
Binary files a/assets/coin-icons/labs.png and /dev/null differ
diff --git a/assets/coin-icons/lbc.png b/assets/coin-icons/lbc.png
deleted file mode 100644
index fc334eb66..000000000
Binary files a/assets/coin-icons/lbc.png and /dev/null differ
diff --git a/assets/coin-icons/lcc.png b/assets/coin-icons/lcc.png
deleted file mode 100644
index 1f2cb7911..000000000
Binary files a/assets/coin-icons/lcc.png and /dev/null differ
diff --git a/assets/coin-icons/ldo.png b/assets/coin-icons/ldo.png
deleted file mode 100644
index bae4c356d..000000000
Binary files a/assets/coin-icons/ldo.png and /dev/null differ
diff --git a/assets/coin-icons/leash.png b/assets/coin-icons/leash.png
deleted file mode 100644
index 69c8c3451..000000000
Binary files a/assets/coin-icons/leash.png and /dev/null differ
diff --git a/assets/coin-icons/leo.png b/assets/coin-icons/leo.png
deleted file mode 100644
index 6d8a007b4..000000000
Binary files a/assets/coin-icons/leo.png and /dev/null differ
diff --git a/assets/coin-icons/link.png b/assets/coin-icons/link.png
deleted file mode 100644
index c321e1473..000000000
Binary files a/assets/coin-icons/link.png and /dev/null differ
diff --git a/assets/coin-icons/lnc.png b/assets/coin-icons/lnc.png
deleted file mode 100644
index 275595259..000000000
Binary files a/assets/coin-icons/lnc.png and /dev/null differ
diff --git a/assets/coin-icons/loom.png b/assets/coin-icons/loom.png
deleted file mode 100644
index 3943475b8..000000000
Binary files a/assets/coin-icons/loom.png and /dev/null differ
diff --git a/assets/coin-icons/loop.png b/assets/coin-icons/loop.png
deleted file mode 100644
index 5372a7183..000000000
Binary files a/assets/coin-icons/loop.png and /dev/null differ
diff --git a/assets/coin-icons/lrc.png b/assets/coin-icons/lrc.png
deleted file mode 100644
index 332df3073..000000000
Binary files a/assets/coin-icons/lrc.png and /dev/null differ
diff --git a/assets/coin-icons/lstr.png b/assets/coin-icons/lstr.png
deleted file mode 100644
index 91aefd7d0..000000000
Binary files a/assets/coin-icons/lstr.png and /dev/null differ
diff --git a/assets/coin-icons/lswap.png b/assets/coin-icons/lswap.png
deleted file mode 100644
index 6b26befd5..000000000
Binary files a/assets/coin-icons/lswap.png and /dev/null differ
diff --git a/assets/coin-icons/ltc.png b/assets/coin-icons/ltc.png
deleted file mode 100644
index 147fbf6a5..000000000
Binary files a/assets/coin-icons/ltc.png and /dev/null differ
diff --git a/assets/coin-icons/ltfn.png b/assets/coin-icons/ltfn.png
deleted file mode 100644
index 182dc057b..000000000
Binary files a/assets/coin-icons/ltfn.png and /dev/null differ
diff --git a/assets/coin-icons/lynx.png b/assets/coin-icons/lynx.png
deleted file mode 100644
index 62a8379da..000000000
Binary files a/assets/coin-icons/lynx.png and /dev/null differ
diff --git a/assets/coin-icons/mana.png b/assets/coin-icons/mana.png
deleted file mode 100644
index 63152c2af..000000000
Binary files a/assets/coin-icons/mana.png and /dev/null differ
diff --git a/assets/coin-icons/marty.png b/assets/coin-icons/marty.png
deleted file mode 100644
index 6e6ca4a0c..000000000
Binary files a/assets/coin-icons/marty.png and /dev/null differ
diff --git a/assets/coin-icons/mask.png b/assets/coin-icons/mask.png
deleted file mode 100644
index d0e7ca277..000000000
Binary files a/assets/coin-icons/mask.png and /dev/null differ
diff --git a/assets/coin-icons/matic.png b/assets/coin-icons/matic.png
deleted file mode 100644
index fd085e7a4..000000000
Binary files a/assets/coin-icons/matic.png and /dev/null differ
diff --git a/assets/coin-icons/matictest.png b/assets/coin-icons/matictest.png
deleted file mode 100644
index 982f1c80a..000000000
Binary files a/assets/coin-icons/matictest.png and /dev/null differ
diff --git a/assets/coin-icons/maza.png b/assets/coin-icons/maza.png
deleted file mode 100644
index 8dbf6f186..000000000
Binary files a/assets/coin-icons/maza.png and /dev/null differ
diff --git a/assets/coin-icons/maze.png b/assets/coin-icons/maze.png
deleted file mode 100644
index d3e165559..000000000
Binary files a/assets/coin-icons/maze.png and /dev/null differ
diff --git a/assets/coin-icons/mc.png b/assets/coin-icons/mc.png
deleted file mode 100644
index 944c508c3..000000000
Binary files a/assets/coin-icons/mc.png and /dev/null differ
diff --git a/assets/coin-icons/mcl.png b/assets/coin-icons/mcl.png
deleted file mode 100644
index 9d769fda1..000000000
Binary files a/assets/coin-icons/mcl.png and /dev/null differ
diff --git a/assets/coin-icons/med.png b/assets/coin-icons/med.png
deleted file mode 100644
index 07accf78f..000000000
Binary files a/assets/coin-icons/med.png and /dev/null differ
diff --git a/assets/coin-icons/mil.png b/assets/coin-icons/mil.png
deleted file mode 100644
index 959a50863..000000000
Binary files a/assets/coin-icons/mil.png and /dev/null differ
diff --git a/assets/coin-icons/minds.png b/assets/coin-icons/minds.png
deleted file mode 100644
index bfbdc4cc4..000000000
Binary files a/assets/coin-icons/minds.png and /dev/null differ
diff --git a/assets/coin-icons/mir.png b/assets/coin-icons/mir.png
deleted file mode 100644
index 1bd119141..000000000
Binary files a/assets/coin-icons/mir.png and /dev/null differ
diff --git a/assets/coin-icons/mkr.png b/assets/coin-icons/mkr.png
deleted file mode 100644
index b7483867b..000000000
Binary files a/assets/coin-icons/mkr.png and /dev/null differ
diff --git a/assets/coin-icons/mln.png b/assets/coin-icons/mln.png
deleted file mode 100644
index 507bd2e9b..000000000
Binary files a/assets/coin-icons/mln.png and /dev/null differ
diff --git a/assets/coin-icons/mm.png b/assets/coin-icons/mm.png
deleted file mode 100644
index 92cefb2fb..000000000
Binary files a/assets/coin-icons/mm.png and /dev/null differ
diff --git a/assets/coin-icons/mona.png b/assets/coin-icons/mona.png
deleted file mode 100644
index 737f544a0..000000000
Binary files a/assets/coin-icons/mona.png and /dev/null differ
diff --git a/assets/coin-icons/movr.png b/assets/coin-icons/movr.png
deleted file mode 100644
index 4f238f041..000000000
Binary files a/assets/coin-icons/movr.png and /dev/null differ
diff --git a/assets/coin-icons/mxn.png b/assets/coin-icons/mxn.png
deleted file mode 100644
index d4762ca24..000000000
Binary files a/assets/coin-icons/mxn.png and /dev/null differ
diff --git a/assets/coin-icons/myr.png b/assets/coin-icons/myr.png
deleted file mode 100644
index aa8fc6838..000000000
Binary files a/assets/coin-icons/myr.png and /dev/null differ
diff --git a/assets/coin-icons/nav.png b/assets/coin-icons/nav.png
deleted file mode 100644
index 34ef5bf4f..000000000
Binary files a/assets/coin-icons/nav.png and /dev/null differ
diff --git a/assets/coin-icons/near.png b/assets/coin-icons/near.png
deleted file mode 100644
index 7164e8efc..000000000
Binary files a/assets/coin-icons/near.png and /dev/null differ
diff --git a/assets/coin-icons/neng.png b/assets/coin-icons/neng.png
deleted file mode 100644
index ad45f2de8..000000000
Binary files a/assets/coin-icons/neng.png and /dev/null differ
diff --git a/assets/coin-icons/nexo.png b/assets/coin-icons/nexo.png
deleted file mode 100644
index 52dba71e4..000000000
Binary files a/assets/coin-icons/nexo.png and /dev/null differ
diff --git a/assets/coin-icons/nftx.png b/assets/coin-icons/nftx.png
deleted file mode 100644
index 292a5991a..000000000
Binary files a/assets/coin-icons/nftx.png and /dev/null differ
diff --git a/assets/coin-icons/ninja.png b/assets/coin-icons/ninja.png
deleted file mode 100644
index 9151870c4..000000000
Binary files a/assets/coin-icons/ninja.png and /dev/null differ
diff --git a/assets/coin-icons/nmc.png b/assets/coin-icons/nmc.png
deleted file mode 100644
index 21ece3073..000000000
Binary files a/assets/coin-icons/nmc.png and /dev/null differ
diff --git a/assets/coin-icons/nok.png b/assets/coin-icons/nok.png
deleted file mode 100644
index 1150313e0..000000000
Binary files a/assets/coin-icons/nok.png and /dev/null differ
diff --git a/assets/coin-icons/nvc.png b/assets/coin-icons/nvc.png
deleted file mode 100644
index 65519033f..000000000
Binary files a/assets/coin-icons/nvc.png and /dev/null differ
diff --git a/assets/coin-icons/nyan.png b/assets/coin-icons/nyan.png
deleted file mode 100644
index 7ad98b1fd..000000000
Binary files a/assets/coin-icons/nyan.png and /dev/null differ
diff --git a/assets/coin-icons/nzd.png b/assets/coin-icons/nzd.png
deleted file mode 100644
index f6b2d29a9..000000000
Binary files a/assets/coin-icons/nzd.png and /dev/null differ
diff --git a/assets/coin-icons/nzds.png b/assets/coin-icons/nzds.png
deleted file mode 100644
index 3c97d5b9e..000000000
Binary files a/assets/coin-icons/nzds.png and /dev/null differ
diff --git a/assets/coin-icons/oc.png b/assets/coin-icons/oc.png
deleted file mode 100644
index 8bd25c985..000000000
Binary files a/assets/coin-icons/oc.png and /dev/null differ
diff --git a/assets/coin-icons/ocean.png b/assets/coin-icons/ocean.png
deleted file mode 100644
index d83581059..000000000
Binary files a/assets/coin-icons/ocean.png and /dev/null differ
diff --git a/assets/coin-icons/okb.png b/assets/coin-icons/okb.png
deleted file mode 100644
index 04ccdca6e..000000000
Binary files a/assets/coin-icons/okb.png and /dev/null differ
diff --git a/assets/coin-icons/omg.png b/assets/coin-icons/omg.png
deleted file mode 100644
index 2abfad973..000000000
Binary files a/assets/coin-icons/omg.png and /dev/null differ
diff --git a/assets/coin-icons/one.png b/assets/coin-icons/one.png
deleted file mode 100644
index a4a03ac8f..000000000
Binary files a/assets/coin-icons/one.png and /dev/null differ
diff --git a/assets/coin-icons/ont.png b/assets/coin-icons/ont.png
deleted file mode 100644
index 3817b834a..000000000
Binary files a/assets/coin-icons/ont.png and /dev/null differ
diff --git a/assets/coin-icons/osmo.png b/assets/coin-icons/osmo.png
deleted file mode 100644
index 4429c1352..000000000
Binary files a/assets/coin-icons/osmo.png and /dev/null differ
diff --git a/assets/coin-icons/pax.png b/assets/coin-icons/pax.png
deleted file mode 100644
index c3b200622..000000000
Binary files a/assets/coin-icons/pax.png and /dev/null differ
diff --git a/assets/coin-icons/paxg.png b/assets/coin-icons/paxg.png
deleted file mode 100644
index 95bfd5698..000000000
Binary files a/assets/coin-icons/paxg.png and /dev/null differ
diff --git a/assets/coin-icons/pgx.png b/assets/coin-icons/pgx.png
deleted file mode 100644
index 13eadad3b..000000000
Binary files a/assets/coin-icons/pgx.png and /dev/null differ
diff --git a/assets/coin-icons/php.png b/assets/coin-icons/php.png
deleted file mode 100644
index c17615802..000000000
Binary files a/assets/coin-icons/php.png and /dev/null differ
diff --git a/assets/coin-icons/pic.png b/assets/coin-icons/pic.png
deleted file mode 100644
index ee185c13e..000000000
Binary files a/assets/coin-icons/pic.png and /dev/null differ
diff --git a/assets/coin-icons/pink.png b/assets/coin-icons/pink.png
deleted file mode 100644
index f71acad88..000000000
Binary files a/assets/coin-icons/pink.png and /dev/null differ
diff --git a/assets/coin-icons/pivx.png b/assets/coin-icons/pivx.png
deleted file mode 100644
index a25e9f0ed..000000000
Binary files a/assets/coin-icons/pivx.png and /dev/null differ
diff --git a/assets/coin-icons/pln.png b/assets/coin-icons/pln.png
deleted file mode 100644
index 876ff3a33..000000000
Binary files a/assets/coin-icons/pln.png and /dev/null differ
diff --git a/assets/coin-icons/pnd.png b/assets/coin-icons/pnd.png
deleted file mode 100644
index 3b48f8a5d..000000000
Binary files a/assets/coin-icons/pnd.png and /dev/null differ
diff --git a/assets/coin-icons/pnk.png b/assets/coin-icons/pnk.png
deleted file mode 100644
index 84199e061..000000000
Binary files a/assets/coin-icons/pnk.png and /dev/null differ
diff --git a/assets/coin-icons/pot.png b/assets/coin-icons/pot.png
deleted file mode 100644
index 2340f58cd..000000000
Binary files a/assets/coin-icons/pot.png and /dev/null differ
diff --git a/assets/coin-icons/powr.png b/assets/coin-icons/powr.png
deleted file mode 100644
index d08ba9ee5..000000000
Binary files a/assets/coin-icons/powr.png and /dev/null differ
diff --git a/assets/coin-icons/ppc.png b/assets/coin-icons/ppc.png
deleted file mode 100644
index 03b15143b..000000000
Binary files a/assets/coin-icons/ppc.png and /dev/null differ
diff --git a/assets/coin-icons/prcy.png b/assets/coin-icons/prcy.png
deleted file mode 100644
index 37d43e4f6..000000000
Binary files a/assets/coin-icons/prcy.png and /dev/null differ
diff --git a/assets/coin-icons/prux.png b/assets/coin-icons/prux.png
deleted file mode 100644
index 4e5de8e31..000000000
Binary files a/assets/coin-icons/prux.png and /dev/null differ
diff --git a/assets/coin-icons/psf.png b/assets/coin-icons/psf.png
deleted file mode 100644
index dda913a66..000000000
Binary files a/assets/coin-icons/psf.png and /dev/null differ
diff --git a/assets/coin-icons/put.png b/assets/coin-icons/put.png
deleted file mode 100644
index c2db5e634..000000000
Binary files a/assets/coin-icons/put.png and /dev/null differ
diff --git a/assets/coin-icons/pyr.png b/assets/coin-icons/pyr.png
deleted file mode 100644
index d99e317bb..000000000
Binary files a/assets/coin-icons/pyr.png and /dev/null differ
diff --git a/assets/coin-icons/qbt.png b/assets/coin-icons/qbt.png
deleted file mode 100644
index 5eaafe928..000000000
Binary files a/assets/coin-icons/qbt.png and /dev/null differ
diff --git a/assets/coin-icons/qc.png b/assets/coin-icons/qc.png
deleted file mode 100644
index 87b12c7fb..000000000
Binary files a/assets/coin-icons/qc.png and /dev/null differ
diff --git a/assets/coin-icons/qi.png b/assets/coin-icons/qi.png
deleted file mode 100644
index cddf6b969..000000000
Binary files a/assets/coin-icons/qi.png and /dev/null differ
diff --git a/assets/coin-icons/qiad.png b/assets/coin-icons/qiad.png
deleted file mode 100644
index 5300b5f98..000000000
Binary files a/assets/coin-icons/qiad.png and /dev/null differ
diff --git a/assets/coin-icons/qiair.png b/assets/coin-icons/qiair.png
deleted file mode 100644
index 461214cf7..000000000
Binary files a/assets/coin-icons/qiair.png and /dev/null differ
diff --git a/assets/coin-icons/qkc.png b/assets/coin-icons/qkc.png
deleted file mode 100644
index 111f433bd..000000000
Binary files a/assets/coin-icons/qkc.png and /dev/null differ
diff --git a/assets/coin-icons/qnt.png b/assets/coin-icons/qnt.png
deleted file mode 100644
index 463d5ea72..000000000
Binary files a/assets/coin-icons/qnt.png and /dev/null differ
diff --git a/assets/coin-icons/qrc.png b/assets/coin-icons/qrc.png
deleted file mode 100644
index 3ad555aaa..000000000
Binary files a/assets/coin-icons/qrc.png and /dev/null differ
diff --git a/assets/coin-icons/qrc20.png b/assets/coin-icons/qrc20.png
deleted file mode 100644
index 2bffef485..000000000
Binary files a/assets/coin-icons/qrc20.png and /dev/null differ
diff --git a/assets/coin-icons/qtum.png b/assets/coin-icons/qtum.png
deleted file mode 100644
index 3ad555aaa..000000000
Binary files a/assets/coin-icons/qtum.png and /dev/null differ
diff --git a/assets/coin-icons/rbtc.png b/assets/coin-icons/rbtc.png
deleted file mode 100644
index 3e97da840..000000000
Binary files a/assets/coin-icons/rbtc.png and /dev/null differ
diff --git a/assets/coin-icons/rdd.png b/assets/coin-icons/rdd.png
deleted file mode 100644
index 4c6943841..000000000
Binary files a/assets/coin-icons/rdd.png and /dev/null differ
diff --git a/assets/coin-icons/ren.png b/assets/coin-icons/ren.png
deleted file mode 100644
index 46fb3b631..000000000
Binary files a/assets/coin-icons/ren.png and /dev/null differ
diff --git a/assets/coin-icons/rep.png b/assets/coin-icons/rep.png
deleted file mode 100644
index a75d55403..000000000
Binary files a/assets/coin-icons/rep.png and /dev/null differ
diff --git a/assets/coin-icons/req.png b/assets/coin-icons/req.png
deleted file mode 100644
index 8d34660db..000000000
Binary files a/assets/coin-icons/req.png and /dev/null differ
diff --git a/assets/coin-icons/rev.png b/assets/coin-icons/rev.png
deleted file mode 100644
index d6461be39..000000000
Binary files a/assets/coin-icons/rev.png and /dev/null differ
diff --git a/assets/coin-icons/ric.png b/assets/coin-icons/ric.png
deleted file mode 100644
index 0619c9c87..000000000
Binary files a/assets/coin-icons/ric.png and /dev/null differ
diff --git a/assets/coin-icons/rlc.png b/assets/coin-icons/rlc.png
deleted file mode 100644
index d50742cea..000000000
Binary files a/assets/coin-icons/rlc.png and /dev/null differ
diff --git a/assets/coin-icons/rndr.png b/assets/coin-icons/rndr.png
deleted file mode 100644
index 140b8c78c..000000000
Binary files a/assets/coin-icons/rndr.png and /dev/null differ
diff --git a/assets/coin-icons/ron.png b/assets/coin-icons/ron.png
deleted file mode 100644
index 48e0fa3fb..000000000
Binary files a/assets/coin-icons/ron.png and /dev/null differ
diff --git a/assets/coin-icons/rpl.png b/assets/coin-icons/rpl.png
deleted file mode 100644
index 66b612d8e..000000000
Binary files a/assets/coin-icons/rpl.png and /dev/null differ
diff --git a/assets/coin-icons/rsr.png b/assets/coin-icons/rsr.png
deleted file mode 100644
index e498a8bdf..000000000
Binary files a/assets/coin-icons/rsr.png and /dev/null differ
diff --git a/assets/coin-icons/rtm.png b/assets/coin-icons/rtm.png
deleted file mode 100644
index e113f12ea..000000000
Binary files a/assets/coin-icons/rtm.png and /dev/null differ
diff --git a/assets/coin-icons/runes.png b/assets/coin-icons/runes.png
deleted file mode 100644
index 0f70be710..000000000
Binary files a/assets/coin-icons/runes.png and /dev/null differ
diff --git a/assets/coin-icons/rvn.png b/assets/coin-icons/rvn.png
deleted file mode 100644
index 79e2707c2..000000000
Binary files a/assets/coin-icons/rvn.png and /dev/null differ
diff --git a/assets/coin-icons/s4f.png b/assets/coin-icons/s4f.png
deleted file mode 100644
index 7f6ae1720..000000000
Binary files a/assets/coin-icons/s4f.png and /dev/null differ
diff --git a/assets/coin-icons/sand.png b/assets/coin-icons/sand.png
deleted file mode 100644
index b939db186..000000000
Binary files a/assets/coin-icons/sand.png and /dev/null differ
diff --git a/assets/coin-icons/sbch.png b/assets/coin-icons/sbch.png
deleted file mode 100644
index a699e02d8..000000000
Binary files a/assets/coin-icons/sbch.png and /dev/null differ
diff --git a/assets/coin-icons/sca.png b/assets/coin-icons/sca.png
deleted file mode 100644
index 0620e8e48..000000000
Binary files a/assets/coin-icons/sca.png and /dev/null differ
diff --git a/assets/coin-icons/scrt.png b/assets/coin-icons/scrt.png
deleted file mode 100644
index 06a51a15f..000000000
Binary files a/assets/coin-icons/scrt.png and /dev/null differ
diff --git a/assets/coin-icons/seele.png b/assets/coin-icons/seele.png
deleted file mode 100644
index c230198cd..000000000
Binary files a/assets/coin-icons/seele.png and /dev/null differ
diff --git a/assets/coin-icons/sek.png b/assets/coin-icons/sek.png
deleted file mode 100644
index d84b11532..000000000
Binary files a/assets/coin-icons/sek.png and /dev/null differ
diff --git a/assets/coin-icons/sgd.png b/assets/coin-icons/sgd.png
deleted file mode 100644
index c085972fb..000000000
Binary files a/assets/coin-icons/sgd.png and /dev/null differ
diff --git a/assets/coin-icons/shib.png b/assets/coin-icons/shib.png
deleted file mode 100644
index ea00fa93f..000000000
Binary files a/assets/coin-icons/shib.png and /dev/null differ
diff --git a/assets/coin-icons/shr.png b/assets/coin-icons/shr.png
deleted file mode 100644
index df656d42c..000000000
Binary files a/assets/coin-icons/shr.png and /dev/null differ
diff --git a/assets/coin-icons/sibm.png b/assets/coin-icons/sibm.png
deleted file mode 100644
index 1ab19d160..000000000
Binary files a/assets/coin-icons/sibm.png and /dev/null differ
diff --git a/assets/coin-icons/signa.png b/assets/coin-icons/signa.png
deleted file mode 100644
index 47dde28dd..000000000
Binary files a/assets/coin-icons/signa.png and /dev/null differ
diff --git a/assets/coin-icons/skl.png b/assets/coin-icons/skl.png
deleted file mode 100644
index 4a195fed3..000000000
Binary files a/assets/coin-icons/skl.png and /dev/null differ
diff --git a/assets/coin-icons/slp.png b/assets/coin-icons/slp.png
deleted file mode 100644
index 513dd82c1..000000000
Binary files a/assets/coin-icons/slp.png and /dev/null differ
diff --git a/assets/coin-icons/smart_chain.png b/assets/coin-icons/smart_chain.png
deleted file mode 100644
index 2ce1d64ef..000000000
Binary files a/assets/coin-icons/smart_chain.png and /dev/null differ
diff --git a/assets/coin-icons/snt.png b/assets/coin-icons/snt.png
deleted file mode 100644
index 937c2247c..000000000
Binary files a/assets/coin-icons/snt.png and /dev/null differ
diff --git a/assets/coin-icons/snx.png b/assets/coin-icons/snx.png
deleted file mode 100644
index 8eb87e5a4..000000000
Binary files a/assets/coin-icons/snx.png and /dev/null differ
diff --git a/assets/coin-icons/sol.png b/assets/coin-icons/sol.png
deleted file mode 100644
index 26fc823e1..000000000
Binary files a/assets/coin-icons/sol.png and /dev/null differ
diff --git a/assets/coin-icons/solve.png b/assets/coin-icons/solve.png
deleted file mode 100644
index e255a2cec..000000000
Binary files a/assets/coin-icons/solve.png and /dev/null differ
diff --git a/assets/coin-icons/sour.png b/assets/coin-icons/sour.png
deleted file mode 100644
index e72e02aa5..000000000
Binary files a/assets/coin-icons/sour.png and /dev/null differ
diff --git a/assets/coin-icons/space.png b/assets/coin-icons/space.png
deleted file mode 100644
index e6c20cc13..000000000
Binary files a/assets/coin-icons/space.png and /dev/null differ
diff --git a/assets/coin-icons/spice.png b/assets/coin-icons/spice.png
deleted file mode 100644
index 532ec6bf8..000000000
Binary files a/assets/coin-icons/spice.png and /dev/null differ
diff --git a/assets/coin-icons/srm.png b/assets/coin-icons/srm.png
deleted file mode 100644
index 2bb33c0fa..000000000
Binary files a/assets/coin-icons/srm.png and /dev/null differ
diff --git a/assets/coin-icons/stfiro.png b/assets/coin-icons/stfiro.png
deleted file mode 100644
index 0b3178ac7..000000000
Binary files a/assets/coin-icons/stfiro.png and /dev/null differ
diff --git a/assets/coin-icons/storj.png b/assets/coin-icons/storj.png
deleted file mode 100644
index 2eab7238b..000000000
Binary files a/assets/coin-icons/storj.png and /dev/null differ
diff --git a/assets/coin-icons/sum.png b/assets/coin-icons/sum.png
deleted file mode 100644
index 910a754bd..000000000
Binary files a/assets/coin-icons/sum.png and /dev/null differ
diff --git a/assets/coin-icons/supernet.png b/assets/coin-icons/supernet.png
deleted file mode 100644
index 5239f327c..000000000
Binary files a/assets/coin-icons/supernet.png and /dev/null differ
diff --git a/assets/coin-icons/sushi.png b/assets/coin-icons/sushi.png
deleted file mode 100644
index 3c9da205f..000000000
Binary files a/assets/coin-icons/sushi.png and /dev/null differ
diff --git a/assets/coin-icons/swap.png b/assets/coin-icons/swap.png
deleted file mode 100644
index bb87a142f..000000000
Binary files a/assets/coin-icons/swap.png and /dev/null differ
diff --git a/assets/coin-icons/sxp.png b/assets/coin-icons/sxp.png
deleted file mode 100644
index 83e243da7..000000000
Binary files a/assets/coin-icons/sxp.png and /dev/null differ
diff --git a/assets/coin-icons/sys.png b/assets/coin-icons/sys.png
deleted file mode 100644
index 442f3e491..000000000
Binary files a/assets/coin-icons/sys.png and /dev/null differ
diff --git a/assets/coin-icons/tama.png b/assets/coin-icons/tama.png
deleted file mode 100644
index d1935a7f6..000000000
Binary files a/assets/coin-icons/tama.png and /dev/null differ
diff --git a/assets/coin-icons/tbch.png b/assets/coin-icons/tbch.png
deleted file mode 100644
index 3bbd43e6f..000000000
Binary files a/assets/coin-icons/tbch.png and /dev/null differ
diff --git a/assets/coin-icons/tblk.png b/assets/coin-icons/tblk.png
deleted file mode 100644
index 1d8e85d2c..000000000
Binary files a/assets/coin-icons/tblk.png and /dev/null differ
diff --git a/assets/coin-icons/tbtc.png b/assets/coin-icons/tbtc.png
deleted file mode 100644
index 1f6d3b2fa..000000000
Binary files a/assets/coin-icons/tbtc.png and /dev/null differ
diff --git a/assets/coin-icons/tel.png b/assets/coin-icons/tel.png
deleted file mode 100644
index 4b4a44202..000000000
Binary files a/assets/coin-icons/tel.png and /dev/null differ
diff --git a/assets/coin-icons/tft.png b/assets/coin-icons/tft.png
deleted file mode 100644
index 4da53e4b8..000000000
Binary files a/assets/coin-icons/tft.png and /dev/null differ
diff --git a/assets/coin-icons/thb.png b/assets/coin-icons/thb.png
deleted file mode 100644
index 27feba17d..000000000
Binary files a/assets/coin-icons/thb.png and /dev/null differ
diff --git a/assets/coin-icons/thc.png b/assets/coin-icons/thc.png
deleted file mode 100644
index 90f8c8249..000000000
Binary files a/assets/coin-icons/thc.png and /dev/null differ
diff --git a/assets/coin-icons/thc_bep20.png b/assets/coin-icons/thc_bep20.png
deleted file mode 100644
index ab9d0a80c..000000000
Binary files a/assets/coin-icons/thc_bep20.png and /dev/null differ
diff --git a/assets/coin-icons/tkl.png b/assets/coin-icons/tkl.png
deleted file mode 100644
index ec6ef18b6..000000000
Binary files a/assets/coin-icons/tkl.png and /dev/null differ
diff --git a/assets/coin-icons/ton.png b/assets/coin-icons/ton.png
deleted file mode 100644
index 4e89b67a2..000000000
Binary files a/assets/coin-icons/ton.png and /dev/null differ
diff --git a/assets/coin-icons/tqtum.png b/assets/coin-icons/tqtum.png
deleted file mode 100644
index 2ce323a56..000000000
Binary files a/assets/coin-icons/tqtum.png and /dev/null differ
diff --git a/assets/coin-icons/trac.png b/assets/coin-icons/trac.png
deleted file mode 100644
index 7968ce06a..000000000
Binary files a/assets/coin-icons/trac.png and /dev/null differ
diff --git a/assets/coin-icons/trc.png b/assets/coin-icons/trc.png
deleted file mode 100644
index 436089c27..000000000
Binary files a/assets/coin-icons/trc.png and /dev/null differ
diff --git a/assets/coin-icons/trx.png b/assets/coin-icons/trx.png
deleted file mode 100644
index eab907175..000000000
Binary files a/assets/coin-icons/trx.png and /dev/null differ
diff --git a/assets/coin-icons/try.png b/assets/coin-icons/try.png
deleted file mode 100644
index 390b48fe2..000000000
Binary files a/assets/coin-icons/try.png and /dev/null differ
diff --git a/assets/coin-icons/tryb.png b/assets/coin-icons/tryb.png
deleted file mode 100644
index a80d5129d..000000000
Binary files a/assets/coin-icons/tryb.png and /dev/null differ
diff --git a/assets/coin-icons/tsl.png b/assets/coin-icons/tsl.png
deleted file mode 100644
index 0d5b63ab0..000000000
Binary files a/assets/coin-icons/tsl.png and /dev/null differ
diff --git a/assets/coin-icons/ttt.png b/assets/coin-icons/ttt.png
deleted file mode 100644
index 08902d740..000000000
Binary files a/assets/coin-icons/ttt.png and /dev/null differ
diff --git a/assets/coin-icons/tusd.png b/assets/coin-icons/tusd.png
deleted file mode 100644
index ccce103b0..000000000
Binary files a/assets/coin-icons/tusd.png and /dev/null differ
diff --git a/assets/coin-icons/twt.png b/assets/coin-icons/twt.png
deleted file mode 100644
index 0f6b5c37b..000000000
Binary files a/assets/coin-icons/twt.png and /dev/null differ
diff --git a/assets/coin-icons/ubq.png b/assets/coin-icons/ubq.png
deleted file mode 100644
index d90d54ee3..000000000
Binary files a/assets/coin-icons/ubq.png and /dev/null differ
diff --git a/assets/coin-icons/ubt.png b/assets/coin-icons/ubt.png
deleted file mode 100644
index fe4160b90..000000000
Binary files a/assets/coin-icons/ubt.png and /dev/null differ
diff --git a/assets/coin-icons/ufo.png b/assets/coin-icons/ufo.png
deleted file mode 100644
index 1832af9b3..000000000
Binary files a/assets/coin-icons/ufo.png and /dev/null differ
diff --git a/assets/coin-icons/uis.png b/assets/coin-icons/uis.png
deleted file mode 100644
index fb4e0b07b..000000000
Binary files a/assets/coin-icons/uis.png and /dev/null differ
diff --git a/assets/coin-icons/uma.png b/assets/coin-icons/uma.png
deleted file mode 100644
index cf7ddf731..000000000
Binary files a/assets/coin-icons/uma.png and /dev/null differ
diff --git a/assets/coin-icons/uni.png b/assets/coin-icons/uni.png
deleted file mode 100644
index d5566da98..000000000
Binary files a/assets/coin-icons/uni.png and /dev/null differ
diff --git a/assets/coin-icons/uno.png b/assets/coin-icons/uno.png
deleted file mode 100644
index b028ee460..000000000
Binary files a/assets/coin-icons/uno.png and /dev/null differ
diff --git a/assets/coin-icons/uos.png b/assets/coin-icons/uos.png
deleted file mode 100644
index ab7555c5f..000000000
Binary files a/assets/coin-icons/uos.png and /dev/null differ
diff --git a/assets/coin-icons/uqc.png b/assets/coin-icons/uqc.png
deleted file mode 100644
index 5b0971973..000000000
Binary files a/assets/coin-icons/uqc.png and /dev/null differ
diff --git a/assets/coin-icons/usbl.png b/assets/coin-icons/usbl.png
deleted file mode 100644
index 8a3795e3e..000000000
Binary files a/assets/coin-icons/usbl.png and /dev/null differ
diff --git a/assets/coin-icons/usdc.png b/assets/coin-icons/usdc.png
deleted file mode 100644
index 6be6a2936..000000000
Binary files a/assets/coin-icons/usdc.png and /dev/null differ
diff --git a/assets/coin-icons/usdd.png b/assets/coin-icons/usdd.png
deleted file mode 100644
index a0e663db2..000000000
Binary files a/assets/coin-icons/usdd.png and /dev/null differ
diff --git a/assets/coin-icons/usdf.png b/assets/coin-icons/usdf.png
deleted file mode 100644
index 513dd82c1..000000000
Binary files a/assets/coin-icons/usdf.png and /dev/null differ
diff --git a/assets/coin-icons/usdt.png b/assets/coin-icons/usdt.png
deleted file mode 100644
index fbddfdbe3..000000000
Binary files a/assets/coin-icons/usdt.png and /dev/null differ
diff --git a/assets/coin-icons/utk.png b/assets/coin-icons/utk.png
deleted file mode 100644
index 8377bf04b..000000000
Binary files a/assets/coin-icons/utk.png and /dev/null differ
diff --git a/assets/coin-icons/val.png b/assets/coin-icons/val.png
deleted file mode 100644
index 170c96a48..000000000
Binary files a/assets/coin-icons/val.png and /dev/null differ
diff --git a/assets/coin-icons/vet.png b/assets/coin-icons/vet.png
deleted file mode 100644
index 7331b8be1..000000000
Binary files a/assets/coin-icons/vet.png and /dev/null differ
diff --git a/assets/coin-icons/vgx.png b/assets/coin-icons/vgx.png
deleted file mode 100644
index 6dcbc59aa..000000000
Binary files a/assets/coin-icons/vgx.png and /dev/null differ
diff --git a/assets/coin-icons/via.png b/assets/coin-icons/via.png
deleted file mode 100644
index 0ed22040e..000000000
Binary files a/assets/coin-icons/via.png and /dev/null differ
diff --git a/assets/coin-icons/vite.png b/assets/coin-icons/vite.png
deleted file mode 100644
index f2f99fc62..000000000
Binary files a/assets/coin-icons/vite.png and /dev/null differ
diff --git a/assets/coin-icons/vote2023.png b/assets/coin-icons/vote2023.png
deleted file mode 100644
index 38a552db3..000000000
Binary files a/assets/coin-icons/vote2023.png and /dev/null differ
diff --git a/assets/coin-icons/vprm.png b/assets/coin-icons/vprm.png
deleted file mode 100644
index c5918ffa0..000000000
Binary files a/assets/coin-icons/vprm.png and /dev/null differ
diff --git a/assets/coin-icons/vra.png b/assets/coin-icons/vra.png
deleted file mode 100644
index ab92e43e9..000000000
Binary files a/assets/coin-icons/vra.png and /dev/null differ
diff --git a/assets/coin-icons/vrm.png b/assets/coin-icons/vrm.png
deleted file mode 100644
index ae6c3957d..000000000
Binary files a/assets/coin-icons/vrm.png and /dev/null differ
diff --git a/assets/coin-icons/vrsc.png b/assets/coin-icons/vrsc.png
deleted file mode 100644
index 914d361b2..000000000
Binary files a/assets/coin-icons/vrsc.png and /dev/null differ
diff --git a/assets/coin-icons/vtc.png b/assets/coin-icons/vtc.png
deleted file mode 100644
index 980a317cb..000000000
Binary files a/assets/coin-icons/vtc.png and /dev/null differ
diff --git a/assets/coin-icons/waves.png b/assets/coin-icons/waves.png
deleted file mode 100644
index 106da2011..000000000
Binary files a/assets/coin-icons/waves.png and /dev/null differ
diff --git a/assets/coin-icons/wbtc.png b/assets/coin-icons/wbtc.png
deleted file mode 100644
index 57fce23f0..000000000
Binary files a/assets/coin-icons/wbtc.png and /dev/null differ
diff --git a/assets/coin-icons/wcn.png b/assets/coin-icons/wcn.png
deleted file mode 100644
index c40a36ca4..000000000
Binary files a/assets/coin-icons/wcn.png and /dev/null differ
diff --git a/assets/coin-icons/whive.png b/assets/coin-icons/whive.png
deleted file mode 100644
index b8809195b..000000000
Binary files a/assets/coin-icons/whive.png and /dev/null differ
diff --git a/assets/coin-icons/wld.png b/assets/coin-icons/wld.png
deleted file mode 100644
index e5ac96863..000000000
Binary files a/assets/coin-icons/wld.png and /dev/null differ
diff --git a/assets/coin-icons/woo.png b/assets/coin-icons/woo.png
deleted file mode 100644
index 725f55df5..000000000
Binary files a/assets/coin-icons/woo.png and /dev/null differ
diff --git a/assets/coin-icons/wwcn.png b/assets/coin-icons/wwcn.png
deleted file mode 100644
index 62bca0a03..000000000
Binary files a/assets/coin-icons/wwcn.png and /dev/null differ
diff --git a/assets/coin-icons/xcn.png b/assets/coin-icons/xcn.png
deleted file mode 100644
index 08028ad36..000000000
Binary files a/assets/coin-icons/xcn.png and /dev/null differ
diff --git a/assets/coin-icons/xec.png b/assets/coin-icons/xec.png
deleted file mode 100644
index bf4c10ec8..000000000
Binary files a/assets/coin-icons/xec.png and /dev/null differ
diff --git a/assets/coin-icons/xep.png b/assets/coin-icons/xep.png
deleted file mode 100644
index f53ac3877..000000000
Binary files a/assets/coin-icons/xep.png and /dev/null differ
diff --git a/assets/coin-icons/xidr.png b/assets/coin-icons/xidr.png
deleted file mode 100644
index 005f7941b..000000000
Binary files a/assets/coin-icons/xidr.png and /dev/null differ
diff --git a/assets/coin-icons/xlm.png b/assets/coin-icons/xlm.png
deleted file mode 100644
index 73be4978a..000000000
Binary files a/assets/coin-icons/xlm.png and /dev/null differ
diff --git a/assets/coin-icons/xmy.png b/assets/coin-icons/xmy.png
deleted file mode 100644
index 39fc76484..000000000
Binary files a/assets/coin-icons/xmy.png and /dev/null differ
diff --git a/assets/coin-icons/xna.png b/assets/coin-icons/xna.png
deleted file mode 100644
index fd44224a3..000000000
Binary files a/assets/coin-icons/xna.png and /dev/null differ
diff --git a/assets/coin-icons/xor.png b/assets/coin-icons/xor.png
deleted file mode 100644
index 76222e2dd..000000000
Binary files a/assets/coin-icons/xor.png and /dev/null differ
diff --git a/assets/coin-icons/xpm.png b/assets/coin-icons/xpm.png
deleted file mode 100644
index f486bd4cb..000000000
Binary files a/assets/coin-icons/xpm.png and /dev/null differ
diff --git a/assets/coin-icons/xrg.png b/assets/coin-icons/xrg.png
deleted file mode 100644
index 63433a946..000000000
Binary files a/assets/coin-icons/xrg.png and /dev/null differ
diff --git a/assets/coin-icons/xrp.png b/assets/coin-icons/xrp.png
deleted file mode 100644
index cd356442a..000000000
Binary files a/assets/coin-icons/xrp.png and /dev/null differ
diff --git a/assets/coin-icons/xsgd.png b/assets/coin-icons/xsgd.png
deleted file mode 100644
index 3959d5d91..000000000
Binary files a/assets/coin-icons/xsgd.png and /dev/null differ
diff --git a/assets/coin-icons/xtz.png b/assets/coin-icons/xtz.png
deleted file mode 100644
index 6b2a37cbd..000000000
Binary files a/assets/coin-icons/xtz.png and /dev/null differ
diff --git a/assets/coin-icons/xvc.png b/assets/coin-icons/xvc.png
deleted file mode 100644
index bc4635577..000000000
Binary files a/assets/coin-icons/xvc.png and /dev/null differ
diff --git a/assets/coin-icons/xvg.png b/assets/coin-icons/xvg.png
deleted file mode 100644
index 1c4369120..000000000
Binary files a/assets/coin-icons/xvg.png and /dev/null differ
diff --git a/assets/coin-icons/xvs.png b/assets/coin-icons/xvs.png
deleted file mode 100644
index b802ff87e..000000000
Binary files a/assets/coin-icons/xvs.png and /dev/null differ
diff --git a/assets/coin-icons/yfi.png b/assets/coin-icons/yfi.png
deleted file mode 100644
index 6dedacb03..000000000
Binary files a/assets/coin-icons/yfi.png and /dev/null differ
diff --git a/assets/coin-icons/yfii.png b/assets/coin-icons/yfii.png
deleted file mode 100644
index e4c694595..000000000
Binary files a/assets/coin-icons/yfii.png and /dev/null differ
diff --git a/assets/coin-icons/zar.png b/assets/coin-icons/zar.png
deleted file mode 100644
index e948d7487..000000000
Binary files a/assets/coin-icons/zar.png and /dev/null differ
diff --git a/assets/coin-icons/zec.png b/assets/coin-icons/zec.png
deleted file mode 100644
index bff43135e..000000000
Binary files a/assets/coin-icons/zec.png and /dev/null differ
diff --git a/assets/coin-icons/zer.png b/assets/coin-icons/zer.png
deleted file mode 100644
index 848c88540..000000000
Binary files a/assets/coin-icons/zer.png and /dev/null differ
diff --git a/assets/coin-icons/zet.png b/assets/coin-icons/zet.png
deleted file mode 100644
index 801181fe0..000000000
Binary files a/assets/coin-icons/zet.png and /dev/null differ
diff --git a/assets/coin-icons/zil.png b/assets/coin-icons/zil.png
deleted file mode 100644
index 1c6c5c8b0..000000000
Binary files a/assets/coin-icons/zil.png and /dev/null differ
diff --git a/assets/coin-icons/zinu.png b/assets/coin-icons/zinu.png
deleted file mode 100644
index 829482e9a..000000000
Binary files a/assets/coin-icons/zinu.png and /dev/null differ
diff --git a/assets/coin-icons/zombie.png b/assets/coin-icons/zombie.png
deleted file mode 100644
index e1677200a..000000000
Binary files a/assets/coin-icons/zombie.png and /dev/null differ
diff --git a/assets/coin-icons/zrx.png b/assets/coin-icons/zrx.png
deleted file mode 100644
index ae524738e..000000000
Binary files a/assets/coin-icons/zrx.png and /dev/null differ
diff --git a/assets/coins.json b/assets/coins.json
deleted file mode 100644
index 31eac9020..000000000
--- a/assets/coins.json
+++ /dev/null
@@ -1,14266 +0,0 @@
-[
- {
- "coin": "1INCH-AVX20",
- "name": "1inch_avx20",
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xd501281565bf7789224523144Fe5D98e8B28f267"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "ILNF-PLG20",
- "name": "ilnf_plg20",
- "fname": "Ilien Fuel",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xaFf5Ed00c57b0E0c22123dbA28Cb6A5B26651Bbd"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ILNF-BEP20",
- "name": "ilnf_bep20",
- "fname": "Ilien Fuel",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0D6e16c7066421607F8D334D6C02A48031fc2Eba"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "1INCH-BEP20",
- "name": "1inch_bep20",
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "1INCH-ERC20",
- "name": "1inch_erc20",
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "1INCH-KRC20",
- "name": "1inch_krc20",
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x79f3244F3FFd7500A31a90Bb83C7D56649c2C7C5"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "1INCH-PLG20",
- "name": "1inch_plg20",
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "PGX-PLG20",
- "name": "pegaxy_stone",
- "fname": "Pegaxy Stone",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "AAVE-AVX20",
- "name": "aave_avx20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "AAVE-BEP20",
- "name": "aave_bep20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xfb6115445Bff7b52FeB98650C87f44907E58f802"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "AAVE-ERC20",
- "name": "aave_erc20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Aave",
- "links": {
- "github": "https://github.com/aave",
- "homepage": "https://aave.com/ "
- }
- },
- {
- "coin": "AAVE-FTM20",
- "name": "aave_ftm20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "AAVE-HCO20",
- "name": "aave_hco20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "AAVE-KRC20",
- "name": "aave_krc20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xE76e97C157658004eE22e01C03a5e21A4655A2Fd"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "AAVE-PLG20",
- "name": "aave_plg20",
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ABY",
- "name": "artbyte",
- "fname": "ArtByte",
- "isPoS": 1,
- "rpcport": 9262,
- "pubtype": 28,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 550,
- "required_confirmations": 7,
- "avg_blocktime": 45,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "ADA-BEP20",
- "name": "ada_bep20",
- "fname": "Cardano",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ADX-BEP20",
- "name": "adx_bep20",
- "fname": "AdEx",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ADX-ERC20",
- "name": "adx_erc20",
- "fname": "AdEx",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "AdEx Network",
- "links": {
- "github": "https://github.com/AdExNetwork",
- "homepage": "https://www.adex.network"
- }
- },
- {
- "coin": "AGEUR-AVX20",
- "name": "ageur_avx20",
- "fname": "agEUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xAEC8318a9a59bAEb39861d10ff6C7f7bf1F96C57"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "AGEUR-ERC20",
- "name": "ageur_erc20",
- "fname": "agEUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "AGEUR-PLG20",
- "name": "ageur_plg20",
- "fname": "agEUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "AGIX-ERC20",
- "name": "agix_erc20",
- "fname": "SingularityNET",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x5B7533812759B45C2B44C19e320ba2cD2681b542"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "AGIX-PLG20",
- "name": "agix_plg20",
- "fname": "SingularityNET",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x190Eb8a183D22a4bdf278c6791b152228857c033"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ANKR-BEP20",
- "name": "ankr_bep20",
- "fname": "Ankr",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xf307910A4c7bbc79691fD374889b36d8531B08e3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ANKR-ERC20",
- "name": "ankr_erc20",
- "fname": "Ankr",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "ANKR-PLG20",
- "name": "ankr_plg20",
- "fname": "Ankr",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "APE-ERC20",
- "name": "ape_erc20",
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4d224452801ACEd8B2F0aebE155379bb5D594381"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "APE-BEP20",
- "name": "ape_bep20",
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xC762043E211571eB34f1ef377e5e8e76914962f9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "APE-FTM20",
- "name": "ape_ftm20",
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x2d72A97a31Dc920dB03330780d30074626e39C8A"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "APE-PLG20",
- "name": "ape_plg20",
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xB7b31a6BC18e48888545CE79e83E06003bE70930"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ARPA-BEP20",
- "name": "arpa_bep20",
- "fname": "ARPA Chain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ARPA-ERC20",
- "name": "arpa_erc20",
- "fname": "ARPA Chain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBA50933C268F567BDC86E1aC131BE072C6B0b71a"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "ARPA-PLG20",
- "name": "arpa_plg20",
- "fname": "ARPA Chain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ARRR",
- "asset": "PIRATE",
- "fname": "Pirate",
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "avg_blocktime": 60,
- "protocol": {
- "type": "ZHTLC",
- "protocol_data": {
- "consensus_params": {
- "overwinter_activation_height": 152855,
- "sapling_activation_height": 152855,
- "blossom_activation_height": null,
- "heartwood_activation_height": null,
- "canopy_activation_height": null,
- "coin_type": 133,
- "hrp_sapling_extended_spending_key": "secret-extended-key-main",
- "hrp_sapling_extended_full_viewing_key": "zxviews",
- "hrp_sapling_payment_address": "zs",
- "b58_pubkey_address_prefix": [
- 28,
- 184
- ],
- "b58_script_address_prefix": [
- 28,
- 189
- ]
- },
- "check_point_block": {
- "height": 1900000,
- "time": 1652512363,
- "hash": "44797f3bb78323a7717007f1e289a3689e0b5b3433385dbd8e6f6a1700000000",
- "sapling_tree": "01e40c26f4a28071535b95ae637d30a209531e92a33de0a649e51183771025fd0f016cdc51442fcb328d047a709dc0f41e0173953404711045b3ef3036d7fd4151271501d6c94c5ce6787826af809aaee83768c4b7d4f02c8dc2d24cf60ed5f127a5d730018a752ea9d9efb3e1ac0e6e705ac9f7f9863cfa8f612ad43802175338d8d7cc6000000001fc3542434eff03075ea5f0a64f1dfb2f042d281b1a057e9f6c765b533ce51219013ad9484b1e901e62b93e7538f913dcb27695380c3bc579e79f5cc900f28e596e0001431da5f01fe11d58300134caf5ac76e0b1b7486fd02425dd8871bca4afa94d4b01bb39de1c1d10a25ce0cc775bc74b6b0f056c28639e7c5b7651bb8460060085530000000001732ddf661e68c9e335599bb0b18b048d2f1c06b20eabd18239ad2f3cc45fa910014496bab5eedab205b5f2a206bd1db30c5bc8bc0c1914a102f87010f3431be21a0000010b5fd8e7610754075f936463780e85841f3ab8ca2978f9afdf7c2c250f16a75f01db56bc66eb1cd54ec6861e5cf24af2f4a17991556a52ca781007569e95b9842401c03877ecdd98378b321250640a1885604d675aaa50380e49da8cfa6ff7deaf15"
- }
- }
- },
- "required_confirmations": 2,
- "requires_notarization": true
- },
- {
- "coin": "ARRR-BEP20",
- "name": "arrr_bep20",
- "fname": "Pirate",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "decimals": 8,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xCDAF240C90F989847c56aC9Dee754F76F41c5833"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ATOM-BEP20",
- "name": "atom_bep20",
- "fname": "Cosmos",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ATOM-PLG20",
- "name": "atom_plg20",
- "fname": "Cosmos",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xac51C4c48Dc3116487eD4BC16542e27B5694Da1b"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "AUR",
- "name": "auroracoin",
- "fname": "Auroracoin",
- "sign_message_prefix": "AuroraCoin Signed Message:\n",
- "rpcport": 12341,
- "pubtype": 23,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 5000,
- "segwit": false,
- "bech32_hrp": "aur",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/85'"
- },
- {
- "coin": "AVA-BEP20_OLD",
- "name": "ava_bep20_old",
- "fname": "Travala.com (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "AVA-ERC20",
- "name": "ava_erc20",
- "fname": "AVA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "AVAXT",
- "name": "avaxt",
- "fname": "Avalanche Testnet",
- "is_testnet": true,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43113,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "protocol": {
- "type": "ETH"
- }
- },
- {
- "coin": "AVAX",
- "name": "avax",
- "fname": "Avalanche",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/9000'",
- "trezor_coin": "Avalanche C-Chain",
- "links": {
- "homepage": "https://www.avax.network/"
- }
- },
- {
- "coin": "AVAX-BEP20",
- "name": "avax_bep20",
- "fname": "Avalanche",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "AVN",
- "name": "avian",
- "fname": "Avian",
- "rpcport": 7896,
- "pubtype": 60,
- "p2shtype": 122,
- "wiftype": 128,
- "segwit": false,
- "fork_id": "0x40",
- "signature_version": "base",
- "txfee": 1000000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/921'"
- },
- {
- "coin": "AVN-PLG20",
- "name": "avn_plg20",
- "fname": "Avian",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "AWC-ERC20",
- "name": "atomic-wallet-coin",
- "fname": "Atomic Wallet Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaD22f63404f7305e4713CcBd4F296f34770513f4"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "AXE",
- "name": "axe",
- "fname": "Axe",
- "rpcport": 9337,
- "pubtype": 55,
- "p2shtype": 16,
- "wiftype": 204,
- "txfee": 10000,
- "confpath": "USERHOME/.axecore/axe.conf",
- "mm2": 1,
- "mature_confirmations": 101,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/4242'",
- "trezor_coin": "Axe",
- "links": {
- "github": "https://github.com/axerunners/axe",
- "homepage": "https://axerunners.com"
- }
- },
- {
- "coin": "AXS-BEP20",
- "name": "axs_bep20",
- "fname": "Axie Infinity",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "AXS-ERC20",
- "name": "axs_erc20",
- "fname": "Axie Infinity",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Axie Infinity Shards",
- "links": {
- "github": "https://github.com/axieinfinity",
- "homepage": "https://axieinfinity.com/"
- }
- },
- {
- "coin": "AYA",
- "name": "aryacoin",
- "fname": "Aryacoin",
- "sign_message_prefix": "Aryacoin Signed Message:\n",
- "rpcport": 9332,
- "pubtype": 23,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/357'"
- },
- {
- "coin": "AYA-BEP20",
- "name": "aya_bep20",
- "fname": "Aryacoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x86e5775F5c46304939c40959812bC220dD1c0333"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BABYDOGE-BEP20",
- "name": "babydoge_bep20",
- "fname": "Baby Doge Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xc748673057861a797275CD8A068AbB95A902e8de"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BAL-BEP20",
- "name": "bal_bep20",
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd4ed60d8368a92b5F1ca33aF61eF2A94714B2d46"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BAL-ERC20",
- "name": "bal_erc20",
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xba100000625a3754423978a60c9317c58a424e3D"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Balancer",
- "links": {
- "github": "https://github.com/balancer-labs",
- "homepage": "https://balancer.finance"
- }
- },
- {
- "coin": "BAL-KRC20",
- "name": "bal_krc20",
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xFC31366Be1795c1Ff444b9fBF55759733aD4d26D"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "BAL-PLG20",
- "name": "bal_plg20",
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BANANO-BEP20",
- "name": "banano_bep20",
- "fname": "Banano",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BAND-BEP20",
- "name": "band_bep20",
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BAND-ERC20",
- "name": "band_erc20",
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "BAND-FTM20",
- "name": "band_ftm20",
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "BAND-PLG20",
- "name": "band_plg20",
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xA8b1E0764f85f53dfe21760e8AfE5446D82606ac"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BAT-AVX20",
- "name": "bat_avx20",
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "BAT-ERC20",
- "name": "bat_erc20",
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Basic Attention Token",
- "links": {
- "homepage": "https://basicattentiontoken.org"
- }
- },
- {
- "coin": "BAT-BEP20",
- "name": "bat_bep20",
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x101d82428437127bF1608F699CD651e6Abf9766E"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BAT-KRC20",
- "name": "bat_krc20",
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x0bF46C86Ce3B904660aE85677EaA20B0C1b24064"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "BAT-PLG20",
- "name": "bat_plg20",
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x3Cef98bb43d732E2F285eE605a8158cDE967D219"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BCH",
- "name": "bch",
- "fname": "Bitcoin Cash",
- "rpcport": 33333,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 1000,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "bitcoincash"
- },
- "mm2": 1,
- "sign_message_prefix": "Bitcoin Signed Message:\n",
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "BCH",
- "protocol_data": {
- "slp_prefix": "simpleledger"
- }
- },
- "derivation_path": "m/44'/145'",
- "trezor_coin": "Bitcoin Cash",
- "links": {
- "github": "https://github.com/Bitcoin-ABC/bitcoin-abc",
- "homepage": "https://www.bitcoincash.org"
- }
- },
- {
- "coin": "USDT-SLP",
- "fname": "Tether",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "9fc89d6b7d5be2eac0b3787c5b8236bca5de641b5bafafc8f450727b63615c11",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "TTT-SLP",
- "fname": "Trinity Trust Token",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 2,
- "token_id": "5321508197ffed321c5fc9a1427e5c68b31d2c1ec92ae1c495f8acb08d8d66cd",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "ASLP-SLP",
- "fname": "AtomicSLP",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 2,
- "token_id": "926894cbf50269b15c97559b9acfc1bd88cd5f20703313ce0ea0683ecdb40911",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "SPICE-SLP",
- "fname": "Spice",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "4de69e374a8ed21cbddd47f2338cc0f479dc58daa2bbe11cd604ca488eca0ddf",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "FLEXUSD-ERC20",
- "name": "flexusd_erc20",
- "fname": "flexUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa774FFB4AF6B0A91331C084E1aebAE6Ad535e6F3"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FLEXUSD-SLP",
- "fname": "FlexUSD",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 6,
- "token_id": "dd21be4532d93661e8ffe16db6535af0fb8ee1344d1fef81a193e2b4cfa9fbc9",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "SOUR-SLP",
- "fname": "Sour",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "6448381f9649ecacd8c30189cfbfee71a91b6b9738ea494fe33f8b8b51cbfca0",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "PSF-SLP",
- "fname": "PS Foundation",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "38e97c5d7d3585a2cbf3f9580c82ca33985f9cb0845d4dcce220cb709f9538b0",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "JOY-PLG20",
- "name": "joy_plg20",
- "fname": "Joystick.club",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x218645F85Ff27FC456ef46c3CdacBF5c40B2F9E8"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "MAZE-SLP",
- "fname": "Maze",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 6,
- "token_id": "bb553ac2ac7af0fcd4f24f9dfacc7f925bfb1446c6e18c7966db95a8d50fb378",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'"
- },
- {
- "coin": "BBK",
- "name": "bitblocks",
- "fname": "BitBlocks",
- "rpcport": 59768,
- "pubtype": 25,
- "p2shtype": 85,
- "wiftype": 107,
- "txfee": 10000,
- "mm2": 1,
- "wallet_only": true,
- "sign_message_prefix": "DarkNet Signed Message:\n",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/BitBlocksProject/BitBlocks",
- "homepage": "https://bitblocksproject.com"
- }
- },
- {
- "coin": "BBK-BEP20",
- "name": "bbk_bep20",
- "fname": "BitBlocks",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9045B0eda6B6A556cf9B3d81C2db47411714f847"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BBK-PLG20",
- "name": "bbk_plg20",
- "fname": "BitBlocks",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2C8a46eF99Cb64928eB3Dd50A925327e02296F63"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BCH-ERC20",
- "name": "bch_erc20",
- "fname": "Bitcoin Cash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x85c4EdC43724e954e5849cAAab61A26a9CB65F1B"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "BCH-BEP20",
- "name": "bch_bep20",
- "fname": "Bitcoin Cash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BCH-HCO20",
- "name": "bch_hco20",
- "fname": "Bitcoin Cash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xeF3CEBD77E0C52cb6f60875d9306397B5Caca375"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "BIDR-BEP20",
- "name": "bidr_bep20",
- "fname": "BIDR",
- "rpcport": 80,
- "mm2": 1,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BITN",
- "name": "bitnet",
- "fname": "Bitnet",
- "sign_message_prefix": "Bitnet Signed Message:\n",
- "rpcport": 9332,
- "pubtype": 25,
- "p2shtype": 22,
- "wiftype": 158,
- "txfee": 700000,
- "segwit": true,
- "bech32_hrp": "bit",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "BLK",
- "name": "blackmore",
- "fname": "BlackCoin",
- "sign_message_prefix": "BlackCoin Signed Message:\n",
- "isPoS": 1,
- "rpcport": 15715,
- "pubtype": 25,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "mm2": 1,
- "required_confirmations": 5,
- "mature_confirmations": 500,
- "avg_blocktime": 66,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/10'"
- },
- {
- "coin": "BLK-BEP20",
- "name": "blk_bep20",
- "fname": "BlackCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd2cDfD5d26dfA1D11116B9ED7DBd7C6B88C6e1D3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "tBLK",
- "name": "blackmore",
- "fname": "BlackCoin Testnet",
- "isPoS": 1,
- "rpcport": 25715,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "txfee": 100000,
- "segwit": true,
- "mm2": 1,
- "is_testnet": true,
- "required_confirmations": 5,
- "mature_confirmations": 10,
- "avg_blocktime": 66,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "BLOCX",
- "name": "blocx",
- "fname": "BLOCX.",
- "rpcport": 12973,
- "pubtype": 25,
- "p2shtype": 26,
- "wiftype": 153,
- "segwit": false,
- "txfee": 1000,
- "mm2": 1,
- "sign_message_prefix": "DarkCoin Signed Message:\n",
- "required_confirmations": 3,
- "avg_blocktime": 180,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/BLOCXTECH/BLOCX",
- "homepage": "https://blocx.tech"
- }
- },
- {
- "coin": "BNB",
- "name": "binancesmartchain",
- "fname": "Binance Coin",
- "avg_blocktime": 3,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "required_confirmations": 3,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/714'",
- "trezor_coin": "Binance Smart Chain",
- "links": {
- "homepage": "https://www.binance.org"
- }
- },
- {
- "coin": "BOLI",
- "name": "bolivarcoin",
- "fname": "Bolivarcoin",
- "confpath": "USERHOME/.bolivarcoincore/bolivarcoin.conf",
- "rpcport": 3563,
- "pubtype": 85,
- "p2shtype": 5,
- "wiftype": 213,
- "segwit": false,
- "txfee": 10000,
- "mm2": 1,
- "sign_message_prefix": "DarkCoin Signed Message:\n",
- "required_confirmations": 3,
- "avg_blocktime": 180,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/278'",
- "links": {
- "github": "https://github.com/BOLI-Project/BolivarCoin",
- "homepage": "https://bolis.info"
- }
- },
- {
- "coin": "BONE-ERC20",
- "name": "bone_erc20",
- "fname": "Bone ShibaSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x9813037ee2218799597d83D4a5B6F3b6778218d9"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "RBTC",
- "name": "rsksmartbitcoin",
- "fname": "RSK Smart Bitcoin",
- "sign_message_prefix": "RSK Signed Message:\n",
- "wallet_only": true,
- "avg_blocktime": 6,
- "rpcport": 80,
- "mm2": 1,
- "alias_ticker": "BTC",
- "chain_id": 30,
- "required_confirmations": 1,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/137'",
- "trezor_coin": "RSK",
- "links": {
- "homepage": "https://rsk.co"
- }
- },
- {
- "coin": "BNBT",
- "name": "binancesmartchaintest",
- "fname": "Binance Coin Testnet",
- "avg_blocktime": 15,
- "rpcport": 80,
- "chain_id": 97,
- "mm2": 1,
- "is_testnet": true,
- "required_confirmations": 3,
- "protocol": {
- "type": "ETH"
- }
- },
- {
- "coin": "BNT-BEP20",
- "name": "bnt_bep20",
- "fname": "Bancor",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA069008A669e2Af00a86673D9D584cfb524A42Cc"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BNT-ERC20",
- "name": "bnt_erc20",
- "fname": "Bancor",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Bancor Network Token",
- "links": {
- "github": "https://github.com/bancorprotocol",
- "homepage": "https://www.bancor.network"
- }
- },
- {
- "coin": "BNT-PLG20",
- "name": "bnt_plg20",
- "fname": "Bancor",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc26D47d5c33aC71AC5CF9F776D63Ba292a4F7842"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BORG-ERC20",
- "name": "borg_erc20",
- "fname": "SwissBorg",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x64d0f55Cd8C7133a9D7102b13987235F486F2224"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SwissBorg",
- "links": {
- "homepage": "https://swissborg.com"
- }
- },
- {
- "coin": "BRZ-BEP20",
- "name": "brz_bep20",
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 4,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BRZ-ERC20_OLD",
- "name": "brz_erc20_old",
- "fname": "Brazilian Digital Token (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 4,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "BRZ-ERC20",
- "name": "brz_erc20",
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x01d33FD36ec67c6Ada32cf36b31e88EE190B1839"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "BRZ-PLG20_OLD",
- "name": "brz_plg20_old",
- "fname": "Brazilian Digital Token (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 4,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BRZ-PLG20",
- "name": "brz_plg20",
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BRZ-AVX20",
- "name": "brz_avx20",
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 4,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "BSTY",
- "name": "globalboost",
- "fname": "GlobalBoost-Y",
- "rpcport": 8225,
- "pubtype": 77,
- "p2shtype": 139,
- "wiftype": 208,
- "txfee": 200000,
- "segwit": true,
- "bech32_hrp": "gb",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "BTC",
- "name": "bitcoin",
- "fname": "Bitcoin",
- "rpcport": 8332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "bc",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "wallet_only": true,
- "sign_message_prefix": "Bitcoin Signed Message:\n",
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/0'",
- "trezor_coin": "Bitcoin",
- "links": {
- "github": "https://github.com/bitcoin/bitcoin",
- "homepage": "https://bitcoin.org"
- }
- },
- {
- "coin": "BTC-segwit",
- "name": "bitcoin",
- "fname": "Bitcoin",
- "sign_message_prefix": "Bitcoin Signed Message:\n",
- "rpcport": 8332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "bc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "BTC",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/0'",
- "trezor_coin": "Bitcoin",
- "links": {
- "github": "https://github.com/bitcoin/bitcoin",
- "homepage": "https://bitcoin.org"
- }
- },
- {
- "coin": "BTC-BEP20",
- "name": "btc_bep20",
- "fname": "Bitcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BTCZ",
- "name": "bitcoinz",
- "fname": "BitcoinZ",
- "sign_message_prefix": "BitcoinZ Signed Message:\n",
- "rpcport": 1979,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "txfee": 10000,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/177'"
- },
- {
- "coin": "BTCZ-BEP20",
- "name": "btcz_bep20",
- "fname": "BitcoinZ",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xcBBB3e5099F769F6d4E2b8b92DC0e268f7E099D8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BTE",
- "name": "bitweb",
- "fname": "Bitweb",
- "rpcport": 1605,
- "pubtype": 33,
- "p2shtype": 30,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "web",
- "txfee": 20000,
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "BTE-segwit",
- "name": "bitweb",
- "fname": "Bitweb",
- "rpcport": 1605,
- "pubtype": 33,
- "p2shtype": 30,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "web",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "BTE",
- "txfee": 20000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "BTT-BEP20",
- "name": "btt_bep20",
- "fname": "BitTorrent (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8595F9dA7b868b1822194fAEd312235E43007b49"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BTTC-BEP20",
- "name": "bttc_bep20",
- "fname": "BitTorrent",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BTU-ERC20",
- "name": "btu_erc20",
- "fname": "BTU Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xb683D83a532e2Cb7DFa5275eED3698436371cc9f"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "BTU Protocol",
- "links": {
- "github": "https://github.com/btuprotocol",
- "homepage": "https://btu-protocol.com"
- }
- },
- {
- "coin": "BTU-PLG20",
- "name": "btu_plg20",
- "fname": "BTU Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xFdc26CDA2d2440d0E83CD1DeE8E8bE48405806DC"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "BTX",
- "name": "bitcore",
- "fname": "BitCore",
- "rpcport": 9469,
- "pubtype": 3,
- "p2shtype": 125,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "btx",
- "txfee": 20000,
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/160'",
- "trezor_coin": "Bitcore",
- "links": {
- "github": "https://github.com/LIMXTEC/BitCore",
- "homepage": "https://bitcore.cc"
- }
- },
- {
- "coin": "BTX-segwit",
- "name": "bitcore",
- "fname": "BitCore",
- "rpcport": 9469,
- "pubtype": 3,
- "p2shtype": 125,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "btx",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "BTX",
- "txfee": 20000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/160'",
- "trezor_coin": "Bitcore",
- "links": {
- "github": "https://github.com/LIMXTEC/BitCore",
- "homepage": "https://bitcore.cc"
- }
- },
- {
- "coin": "BTX-BEP20",
- "name": "btx_bep20",
- "fname": "BitCore",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x000000089fb24237dA101020Ff8e2AfD14624687"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BUSD-AVX20",
- "name": "busd_avx20",
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "BUSD-AVX20_OLD",
- "name": "busd_avx20_old",
- "fname": "Binance USD (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "BUSD-MVR20",
- "name": "busd_mvr20",
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x5D9ab5522c64E1F6ef5e3627ECCc093f56167818"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "BUSD-ERC20",
- "name": "busd_erc20",
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4Fabb145d64652a948d72533023f6E7A623C7C53"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Binance USD (BUSD)",
- "links": {
- "github": "https://github.com/paxosglobal/busd-contract",
- "homepage": "https://www.paxos.com/busd"
- }
- },
- {
- "coin": "BUSD-BEP20",
- "name": "busd_bep20",
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "BUSD-PLG20",
- "name": "busd_plg20",
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CADC-ERC20",
- "name": "cadc_erc20",
- "fname": "CAD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xcaDC0acd4B445166f12d2C07EAc6E2544FbE2Eef"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CADC-PLG20",
- "name": "cadc_plg20",
- "fname": "CAD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x9de41aFF9f55219D5bf4359F167d1D0c772A396D"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CAKE-BEP20",
- "name": "cake_bep20",
- "fname": "PancakeSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "CASE-BEP20",
- "name": "case_bep20",
- "fname": "Case Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5cafe85d8983f61C059df359c504F1Bab8009e9e"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "CCL",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "CCL",
- "fname": "CoinCollect",
- "rpcport": 20849,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "CDN",
- "name": "canadaecoin",
- "fname": "Canada eCoin",
- "sign_message_prefix": "Canada eCoin Signed Message:\n",
- "rpcport": 34330,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 156,
- "txfee": 200000,
- "dust": 54600,
- "segwit": true,
- "bech32_hrp": "cdn",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 2,
- "avg_blocktime": 300,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/34'"
- },
- {
- "coin": "CDN-segwit",
- "name": "canadaecoin",
- "fname": "Canada eCoin",
- "sign_message_prefix": "Canada eCoin Signed Message:\n",
- "rpcport": 34330,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 156,
- "txfee": 200000,
- "dust": 54600,
- "segwit": true,
- "bech32_hrp": "cdn",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "CDN",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 300,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/34'"
- },
- {
- "coin": "CEL-ERC20",
- "name": "cel_erc20",
- "fname": "Celsius",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 4,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CEL-PLG20",
- "name": "cel_plg20",
- "fname": "Celsius",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 4,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CELR-ERC20",
- "name": "celr_erc20",
- "fname": "Celer Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4F9254C83EB525f9FCf346490bbb3ed28a81C667"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "CelerToken",
- "links": {
- "github": "https://github.com/celer-network",
- "homepage": "https://www.celer.network/"
- }
- },
- {
- "coin": "CELR-BEP20",
- "name": "celr_bep20",
- "fname": "Celer Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "CELR-ARB20",
- "name": "celr_arb20",
- "fname": "Celer Network",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "chain_id": 42161,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH-ARB20",
- "contract_address": "0x3a8B787f78D775AECFEEa15706D4221B40F345AB"
- }
- }
- },
- {
- "coin": "CFX-BEP20",
- "name": "cfx_bep20",
- "fname": "Conflux",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x045c4324039dA91c52C55DF5D785385Aab073DcF"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "CHTA",
- "name": "cheetahcoin",
- "fname": "Cheetahcoin",
- "rpcport": 8536,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 40000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/682'"
- },
- {
- "coin": "CHIPS",
- "name": "chips",
- "fname": "Chips",
- "rpcport": 57776,
- "pubtype": 60,
- "p2shtype": 85,
- "wiftype": 188,
- "txfee": 10000,
- "segwit": true,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 10,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "CHSB-ERC20_OLD",
- "name": "chsb_erc20_old",
- "fname": "SwissBorg (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xba9d4199faB4f26eFE3551D490E3821486f135Ba"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SwissBorg",
- "links": {
- "homepage": "https://swissborg.com"
- }
- },
- {
- "coin": "CHSB-PLG20",
- "name": "chsb_plg20",
- "fname": "SwissBorg",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x67Ce67ec4fCd4aCa0Fcb738dD080b2a21ff69D75"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CHZ-ERC20",
- "name": "chz_erc20",
- "fname": "Chiliz",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CHZ-KRC20",
- "name": "chz_krc20",
- "fname": "Chiliz",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x6E8ce0519B7e4d691BaCE464099547E5fC17679c"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "CHZ-PLG20",
- "name": "chz_plg20",
- "fname": "Chiliz",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xf1938Ce12400f9a761084E7A80d37e732a4dA056"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CLC",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "CLC",
- "fname": "Collider Coin",
- "rpcport": 31034,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "COLX",
- "name": "ColossusXT",
- "fname": "ColossusXT",
- "rpcport": 51473,
- "pubtype": 30,
- "p2shtype": 13,
- "wiftype": 212,
- "txfee": 1000000000,
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/1999'"
- },
- {
- "coin": "COMP-AVX20",
- "name": "comp_avx20",
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "COMP-BEP20",
- "name": "comp_bep20",
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "COMP-ERC20",
- "name": "comp_erc20",
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xc00e94Cb662C3520282E6f5717214004A7f26888"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Compound",
- "links": {
- "github": "https://github.com/compound-finance",
- "homepage": "https://compound.finance"
- }
- },
- {
- "coin": "COMP-KRC20",
- "name": "comp_krc20",
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x16c4106966cE30e06E806A7c40eEFb46d84cE7e5"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "COMP-PLG20",
- "name": "comp_plg20",
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CRO-ERC20",
- "name": "cro_erc20",
- "fname": "Crypto.com",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CRO-KRC20",
- "name": "cro_krc20",
- "fname": "Crypto.com",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x652D253b7Ca91810A4a05ACFc39729387c5090C0"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "CRO-PLG20",
- "name": "cro_plg20",
- "fname": "Crypto.com",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CRV-ERC20",
- "name": "crv_erc20",
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xD533a949740bb3306d119CC777fa900bA034cd52"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CRV-AVX20",
- "name": "crv_avx20",
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "CRV-FTM20",
- "name": "crv_ftm20",
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "CRV-KRC20",
- "name": "crv_krc20",
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x4500E16dA66b99e0C55D7B46EBBD59bc413BA171"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "CRV-PLG20",
- "name": "crv_plg20",
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "CUMMIES-BEP20",
- "name": "cummies_bep20",
- "fname": "CumRocket",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "CVX-ERC20",
- "name": "cvx_erc20",
- "fname": "Convex Finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CY",
- "name": "cyberyen",
- "fname": "Cyberyen",
- "sign_message_prefix": "Cyberyen Signed Message:\n",
- "rpcport": 58382,
- "pubtype": 28,
- "p2shtype": 77,
- "wiftype": 156,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "cy",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/802'",
- "links": {
- "github": "https://github.com/cyberyen/cyberyen",
- "homepage": "https://cyberyen.org"
- }
- },
- {
- "coin": "CY-segwit",
- "name": "cyberyen",
- "fname": "Cyberyen",
- "sign_message_prefix": "Cyberyen Signed Message:\n",
- "rpcport": 58382,
- "pubtype": 28,
- "p2shtype": 77,
- "wiftype": 156,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "cy",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "CY",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/802'",
- "links": {
- "github": "https://github.com/cyberyen/cyberyen",
- "homepage": "https://cyberyen.org"
- }
- },
- {
- "coin": "DAI-AVX20",
- "name": "dai_avx20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "DAI-ERC20",
- "name": "dai_erc20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6B175474E89094C44Da98b954EedeAC495271d0F"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Dai Stablecoin v2.0",
- "links": {
- "github": "https://github.com/makerdao",
- "homepage": "https://makerdao.com"
- }
- },
- {
- "coin": "DAI-BEP20",
- "name": "dai_bep20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DAI-FTM20",
- "name": "dai_ftm20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "DAI-HCO20",
- "name": "dai_hco20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "DAI-MVR20",
- "name": "dai_mvr20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "DAI-PLG20",
- "name": "dai_plg20",
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "DASH",
- "name": "dashcore",
- "fname": "Dash",
- "confpath": "USERHOME/.dashcore/dash.conf",
- "rpcport": 9998,
- "pubtype": 76,
- "p2shtype": 16,
- "wiftype": 204,
- "txfee": 1000,
- "force_min_relay_fee": true,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/5'",
- "trezor_coin": "Dash",
- "links": {
- "github": "https://github.com/dashpay/dash",
- "homepage": "https://www.dash.org"
- }
- },
- {
- "coin": "DDD-ERC20",
- "name": "ddd_erc20",
- "fname": "Scry.info",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x9F5F3CFD7a32700C93F971637407ff17b91c7342"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "DENT-ERC20",
- "name": "dent_erc20",
- "fname": "Dent",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3597bfD533a99c9aa083587B074434E61Eb0A258"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "DENT",
- "links": {
- "homepage": "https://www.dentwireless.com"
- }
- },
- {
- "coin": "DFX-ERC20",
- "name": "dfx_erc20",
- "fname": "DFX Finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x888888435FDe8e7d4c54cAb67f206e4199454c60"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "DFX-PLG20_OLD",
- "name": "dfx_plg20_old",
- "fname": "DFX Finance (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE7804D91dfCDE7F776c90043E03eAa6Df87E6395"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "DFX-PLG20",
- "name": "dfx_plg20",
- "fname": "DFX Finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "DGB",
- "name": "digibyte",
- "fname": "DigiByte",
- "sign_message_prefix": "DigiByte Signed Message:\n",
- "rpcport": 14022,
- "pubtype": 30,
- "p2shtype": 63,
- "wiftype": 128,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "dgb",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 7,
- "avg_blocktime": 15,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/20'",
- "trezor_coin": "DigiByte",
- "links": {
- "github": "https://github.com/digibyte/digibyte",
- "homepage": "https://digibyte.io"
- }
- },
- {
- "coin": "DGB-segwit",
- "name": "digibyte",
- "fname": "Digibyte",
- "sign_message_prefix": "DigiByte Signed Message:\n",
- "rpcport": 14022,
- "pubtype": 30,
- "p2shtype": 63,
- "wiftype": 128,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "dgb",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "DGB",
- "mm2": 1,
- "required_confirmations": 7,
- "avg_blocktime": 15,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/20'",
- "trezor_coin": "DigiByte",
- "links": {
- "github": "https://github.com/digibyte/digibyte",
- "homepage": "https://digibyte.io"
- }
- },
- {
- "coin": "DGC",
- "name": "digitalcoin",
- "fname": "Digitalcoin",
- "sign_message_prefix": "Digitalcoin Signed Message:\n",
- "rpcport": 7998,
- "pubtype": 30,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 36,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/18'"
- },
- {
- "coin": "DIA-ERC20",
- "name": "dia_erc20",
- "fname": "DIAToken",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "DIA-BEP20",
- "name": "dia_bep20",
- "fname": "DIAToken",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DIAC",
- "name": "diabasecore",
- "fname": "Diabase",
- "confpath": "USERHOME/.diabasecore/diabase.conf",
- "rpcport": 7676,
- "pubtype": 76,
- "p2shtype": 16,
- "wiftype": 204,
- "txfee": 1000,
- "force_min_relay_fee": true,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 90,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/5'",
- "links": {
- "github": "https://github.com/diabasecoin/diabase",
- "homepage": "https://www.diabasecoin.com"
- }
- },
- {
- "coin": "DIMI",
- "name": "diminutivecoin",
- "fname": "Diminutive Coin",
- "rpcport": 49122,
- "pubtype": 32,
- "p2shtype": 30,
- "wiftype": 181,
- "isPoS": 1,
- "txfee": 1000,
- "segwit": false,
- "mm2": 1,
- "mature_confirmations": 75,
- "required_confirmations": 7,
- "avg_blocktime": 75,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "DIMI-BEP20",
- "name": "dimi_bep20",
- "fname": "Diminutive Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA33789a5478Add74e8D7628E817a281aAbD92dA9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DIMI-QRC20",
- "name": "qtum",
- "fname": "Diminutive Coin",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x2c660b0d4d53382aeef855d3010d697970fa0bd5"
- }
- },
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "DODO-BEP20",
- "name": "dodo_bep20",
- "fname": "DODO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DODO-ERC20",
- "name": "dodo_erc20",
- "fname": "DODO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "DODO-KRC20",
- "name": "dodo_krc20",
- "fname": "DODO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x8724F9FB7B3f1bb6f2c90B3Ad3Fd6B3c20A06429"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "DOGE",
- "name": "dogecoin",
- "fname": "Dogecoin",
- "sign_message_prefix": "Dogecoin Signed Message:\n",
- "rpcport": 22555,
- "pubtype": 30,
- "p2shtype": 22,
- "wiftype": 158,
- "txfee": 0,
- "force_min_relay_fee": true,
- "dust": 100000000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/3'",
- "trezor_coin": "Dogecoin",
- "links": {
- "github": "https://github.com/dogecoin/dogecoin",
- "homepage": "https://dogecoin.com"
- }
- },
- {
- "coin": "DOGE-BEP20",
- "name": "doge_bep20",
- "fname": "Dogecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DOGEC",
- "name": "dogecash",
- "fname": "DogeCash",
- "rpcport": 56750,
- "pubtype": 30,
- "p2shtype": 19,
- "wiftype": 122,
- "txfee": 10000,
- "dust": 5460,
- "mm2": 1,
- "sign_message_prefix": "DarkNet Signed Message:\n",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/385'",
- "links": {
- "github": "https://github.com/dogecash/dogecash",
- "homepage": "https://dogecash.net"
- }
- },
- {
- "coin": "DOGEDASH-BEP20",
- "name": "dogedash_bep20",
- "fname": "Doge Dash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DOGGY-BEP20",
- "name": "doggy_bep20",
- "fname": "Doggy",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DOT-BEP20",
- "name": "dot_bep20",
- "fname": "Polkadot",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "DOT-HCO20",
- "name": "dot_hco20",
- "fname": "Polkadot",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xA2c49cEe16a5E5bDEFDe931107dc1fae9f7773E3"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "DP",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "DP",
- "fname": "DigitalPrice",
- "rpcport": 28388,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "DOI",
- "name": "doichain",
- "fname": "Doichain",
- "rpcport": 8339,
- "pubtype": 52,
- "p2shtype": 13,
- "wiftype": 180,
- "txfee": 1000,
- "dust": 5460,
- "segwit": true,
- "bech32_hrp": "dc",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "DUST",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "DRAGONFAIRY",
- "fname": "Dragonfairy",
- "rpcport": 62842,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 3,
- "requires_notarization": false,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "ECA",
- "name": "electra",
- "fname": "Electra",
- "rpcport": 5788,
- "pubtype": 33,
- "p2shtype": 40,
- "wiftype": 161,
- "txfee": 10000,
- "dust": 5460,
- "txversion": 7,
- "mm2": 1,
- "confpath": "USERHOME/.electra/Electra.conf",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/249'"
- },
- {
- "coin": "EFL",
- "name": "egulden",
- "fname": "e-Gulden",
- "confpath": "USERHOME/.egulden/coin.conf",
- "rpcport": 21015,
- "pubtype": 48,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 200000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/78'"
- },
- {
- "coin": "EGLD-BEP20",
- "name": "egld_bep20",
- "fname": "Elrond",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "EILN-ERC20",
- "name": "eiln_erc20",
- "fname": "eIlien",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xb0DBa4BD6b6C4fC9A1263D8C19A57A6BdD740A52"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "ELF-BEP20",
- "name": "elf_bep20",
- "fname": "aelf",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ELF-ERC20",
- "name": "elf_erc20",
- "fname": "aelf",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "ELF Token",
- "links": {
- "github": "https://github.com/aelfProject",
- "homepage": "https://aelf.io/"
- }
- },
- {
- "coin": "EMC2",
- "name": "einsteinium",
- "fname": "Einsteinium",
- "sign_message_prefix": "Einsteinium Signed Message:\n",
- "rpcport": 41879,
- "pubtype": 33,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/41'"
- },
- {
- "coin": "ENJ-ERC20",
- "name": "enj_erc20",
- "fname": "Enjin Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "ENJIN",
- "links": {
- "github": "https://github.com/enjin/contracts",
- "homepage": "https://enjincoin.io"
- }
- },
- {
- "coin": "ENJ-KRC20",
- "name": "enj_krc20",
- "fname": "Enjin Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x6e2D990C8e718E7b6D86ed08eBf0FF2dEc05253B"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "ENJ-PLG20",
- "name": "enj_plg20",
- "fname": "Enjin Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7eC26842F195c852Fa843bB9f6D8B583a274a157"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "EOS-BEP20",
- "name": "eos_bep20",
- "fname": "EOS",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ETC",
- "name": "ethereum classic",
- "fname": "Ethereum Classic",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 61,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/61'",
- "trezor_coin": "Ethereum Classic",
- "links": {
- "homepage": "https://ethereumclassic.org"
- }
- },
- {
- "coin": "ETC-BEP20",
- "name": "etc_bep20",
- "fname": "Ethereum Classic",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ETH",
- "name": "ethereum",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "sign_message_prefix": "Ethereum Signed Message:\n",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "ETH-AVX20",
- "name": "ethereum avalanche",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "ETH-ARB20",
- "name": "eth_arb20",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 42161,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- }
- },
- {
- "coin": "ETH-BEP20",
- "name": "eth_bep20",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ETH-FTM20",
- "name": "eth_ftm20",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x74b23882a30290451A17c44f4F05243b6b58C76d"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "ETH-HCO20",
- "name": "eth_hco20",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x64FF637fB478863B7468bc97D30a5bF3A428a1fD"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "ETH-KRC20",
- "name": "eth_krc20",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "ETH-PLG20",
- "name": "eth_plg20",
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "EURE-ERC20",
- "name": "eure_erc20",
- "fname": "Monerium EUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "EURE-PLG20",
- "name": "eure_plg20",
- "fname": "Monerium EUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "EUROE-ERC20",
- "name": "euroe_erc20",
- "fname": "EUROe Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "EUROE-PLG20",
- "name": "euroe_plg20",
- "fname": "EUROe Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "EURS-ERC20",
- "name": "eurs_erc20",
- "fname": "STASIS EURO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdB25f211AB05b1c97D595516F45794528a807ad8"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "STASIS EURS",
- "links": {
- "github": "https://github.com/stasisnet",
- "homepage": "https://stasis.net"
- }
- },
- {
- "coin": "EURS-PLG20",
- "name": "eurs_plg20",
- "fname": "STASIS EURO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 2,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE111178A87A3BFf0c8d18DECBa5798827539Ae99"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "EWT",
- "name": "ewt",
- "fname": "Energy Web",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 246,
- "required_confirmations": 3,
- "avg_blocktime": 5,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/246'",
- "trezor_coin": "Energy Web",
- "links": {
- "homepage": "https://www.energyweb.org"
- }
- },
- {
- "coin": "EXN-BEP20",
- "name": "exn_bep20",
- "fname": "Expoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xc88f6F4C400321FAd5c26d574f9933a991011360"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FEI-ERC20",
- "name": "fei_erc20",
- "fname": "Fei USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x956F47F50A910163D8BF957Cf5846D573E7f87CA"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FET-ERC20",
- "name": "fet_erc20",
- "fname": "Fetch.ai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FET-BEP20",
- "name": "fet_bep20",
- "fname": "Fetch.ai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x031b41e504677879370e9DBcF937283A8691Fa7f"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FET-PLG20",
- "name": "fet_plg20",
- "fname": "Fetch.ai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7583FEDDbceFA813dc18259940F76a02710A8905"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "FIL-BEP20",
- "name": "fil_bep20",
- "fname": "Filecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FIL-ERC20",
- "name": "fil_erc20",
- "fname": "Filecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FIL-HCO20",
- "name": "fil_hco20",
- "fname": "Filecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xae3a768f9aB104c69A7CD6041fE16fFa235d1810"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "FIRO",
- "name": "firo",
- "fname": "Firo",
- "sign_message_prefix": "Firo Signed Message:\n",
- "rpcport": 8888,
- "pubtype": 82,
- "p2shtype": 7,
- "wiftype": 210,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 300,
- "protocol": {
- "type": "UTXO"
- },
- "trezor_coin": "Firo",
- "links": {
- "github": "https://github.com/firoorg/firo",
- "homepage": "https://firo.org"
- }
- },
- {
- "coin": "FIRO-BEP20",
- "name": "firo_bep20",
- "fname": "Firo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FJC",
- "name": "fujicoin",
- "fname": "Fujicoin",
- "sign_message_prefix": "FujiCoin Signed Message:\n",
- "rpcport": 3776,
- "pubtype": 36,
- "p2shtype": 16,
- "wiftype": 164,
- "segwit": true,
- "bech32_hrp": "fc",
- "txfee": 0,
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/75'",
- "trezor_coin": "Fujicoin",
- "links": {
- "github": "https://github.com/fujicoin/fujicoin",
- "homepage": "https://fujicoin.org"
- }
- },
- {
- "coin": "FJC-segwit",
- "name": "fujicoin",
- "fname": "Fujicoin",
- "sign_message_prefix": "FujiCoin Signed Message:\n",
- "rpcport": 3776,
- "pubtype": 36,
- "p2shtype": 16,
- "wiftype": 164,
- "segwit": true,
- "bech32_hrp": "fc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "FJC",
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/75'",
- "trezor_coin": "Fujicoin",
- "links": {
- "github": "https://github.com/fujicoin/fujicoin",
- "homepage": "https://fujicoin.org"
- }
- },
- {
- "coin": "FJC-BEP20",
- "name": "fjc_bep20",
- "fname": "Fujicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd4451a8eE7D0978c60651a114b742Fa8d5857CDf"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FJCB-BEP20",
- "name": "fjcb_bep20",
- "fname": "FJCB Fujicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xda73AE86D38D9b5D22C64722320cCC071cB79ba3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FLOKI-BEP20",
- "name": "floki_bep20",
- "fname": "Floki Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "STFIRO-ERC20",
- "name": "firo_erc20",
- "fname": "StakedFIRO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 8,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x160B1E5aaBFD70B2FC40Af815014925D71CEEd7E"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FLO",
- "name": "flo",
- "fname": "Florincoin",
- "rpcport": 7313,
- "pubtype": 35,
- "p2shtype": 8,
- "wiftype": 176,
- "txfee": 100000,
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/216'",
- "trezor_coin": "Flo",
- "links": {
- "github": "https://github.com/floblockchain/flo",
- "homepage": "https://flo.cash"
- }
- },
- {
- "coin": "FLOW-BEP20",
- "name": "flow_bep20",
- "fname": "Flow",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xC943c5320B9c18C153d1e2d12cC3074bebfb31A2"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FTC",
- "name": "feathercoin",
- "fname": "Feathercoin",
- "sign_message_prefix": "Feathercoin Signed Message:\n",
- "rpcport": 9337,
- "pubtype": 14,
- "p2shtype": 5,
- "wiftype": 142,
- "txfee": 1000000,
- "segwit": true,
- "bech32_hrp": "fc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/8'",
- "trezor_coin": "Feathercoin",
- "links": {
- "github": "https://github.com/FeatherCoin/Feathercoin",
- "homepage": "https://feathercoin.com"
- }
- },
- {
- "coin": "FTC-segwit",
- "name": "feathercoin",
- "fname": "Feathercoin",
- "sign_message_prefix": "Feathercoin Signed Message:\n",
- "rpcport": 9337,
- "pubtype": 14,
- "p2shtype": 5,
- "wiftype": 142,
- "txfee": 1000000,
- "segwit": true,
- "bech32_hrp": "fc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "FTC",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/8'",
- "trezor_coin": "Feathercoin",
- "links": {
- "github": "https://github.com/FeatherCoin/Feathercoin",
- "homepage": "https://feathercoin.com"
- }
- },
- {
- "coin": "FTMT",
- "name": "ftmt",
- "fname": "Fantom Testnet",
- "is_testnet": true,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 4002,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- }
- },
- {
- "coin": "FTM",
- "name": "ftm",
- "fname": "Fantom",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "required_confirmations": 3,
- "avg_blocktime": 1.8,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1007'",
- "trezor_coin": "Fantom Opera",
- "links": {
- "homepage": "https://fantom.foundation"
- }
- },
- {
- "coin": "FTM-BEP20",
- "name": "ftm_bep20",
- "fname": "Fantom",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FTM-ERC20",
- "name": "ftm_erc20",
- "fname": "Fantom",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4E15361FD6b4BB609Fa63C81A2be19d873717870"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Fantom Token",
- "links": {
- "github": "https://github.com/Fantom-foundation/",
- "homepage": "https://fantom.foundation/"
- }
- },
- {
- "coin": "FXS-BEP20",
- "name": "fxs_bep20",
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "FXS-ERC20",
- "name": "fxs_erc20",
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FXS-PLG20",
- "name": "fxs_plg20",
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1a3acf6D19267E2d3e7f898f42803e90C9219062"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "FXS-AVX20",
- "name": "fxs_avx20",
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x214DB107654fF987AD859F34125307783fC8e387"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "FXS-MVR20",
- "name": "fxs_mvr20",
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "FXS-FTM20",
- "name": "fxs_ftm20",
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "GALA-ERC20",
- "name": "gala_erc20",
- "fname": "Gala",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "GALA-BEP20",
- "name": "gala_bep20",
- "fname": "Gala",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7dDEE176F665cD201F93eEDE625770E2fD911990"
- }
- },
- "wallet_only": true,
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GAME-ERC20",
- "name": "game_erc20",
- "fname": "GameCredits",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "GAME-PLG20",
- "name": "game_plg20",
- "fname": "GameCredits",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8d1566569d5b695d44a9a234540f68D393cDC40D"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "GBX",
- "name": "gobyte",
- "fname": "GoByte",
- "confpath": "USERHOME/.gobytecore/gobyte.conf",
- "rpcport": 12454,
- "pubtype": 38,
- "p2shtype": 10,
- "wiftype": 198,
- "segwit": false,
- "txfee": 10000,
- "mm2": 1,
- "sign_message_prefix": "DarkCoin Signed Message:\n",
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/176'",
- "links": {
- "github": "https://github.com/gobytecoin/gobyte",
- "homepage": "https://gobyte.network"
- }
- },
- {
- "coin": "GBX-BEP20",
- "name": "gbx_bep20",
- "fname": "GoByte",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8E10F08C9A56a93B6adbfBcFda421919B3357596"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GFT-BEP20",
- "name": "gft_bep20",
- "fname": "Gifto",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x72fF5742319eF07061836F5C924aC6D72c919080"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GLC",
- "name": "goldcoin",
- "fname": "Goldcoin",
- "rpcport": 8122,
- "pubtype": 32,
- "p2shtype": 5,
- "wiftype": 160,
- "segwit": false,
- "txfee": 100000,
- "mm2": 1,
- "sign_message_prefix": "Goldcoin (GLC) Signed Message:\n",
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/goldcoin/goldcoin",
- "homepage": "https://www.goldcoinproject.org"
- }
- },
- {
- "coin": "GLEEC",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "GLEEC",
- "fname": "Gleec",
- "rpcport": 23226,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "GLM-ERC20",
- "name": "glm_erc20",
- "fname": "Golem",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "GLM-PLG20",
- "name": "glm_plg20",
- "fname": "Golem",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "GM-BEP20",
- "name": "gm_bep20",
- "fname": "GM Wagmi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA55C1e67039B6d59E91eb4cDa2bfc5A854989102"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GMT-BEP20",
- "name": "gmt_bep20",
- "fname": "STEPN",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GMT-PLG20",
- "name": "gmt_plg20",
- "fname": "STEPN",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x714DB550b574b3E927af3D93E26127D15721D4C2"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "GMX-AVX20",
- "name": "gmx_avx20",
- "fname": "GMX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x62edc0692BD897D2295872a9FFCac5425011c661"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "GNO-ERC20",
- "name": "gno_erc20",
- "fname": "Gnosis",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6810e776880C02933D47DB1b9fc05908e5386b96"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Gnosis",
- "links": {
- "homepage": "https://gnosis.pm"
- }
- },
- {
- "coin": "GNO-PLG20",
- "name": "gno_plg20",
- "fname": "Gnosis",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5FFD62D3C3eE2E81C00A7b9079FB248e7dF024A8"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "GNS-PLG20",
- "name": "gns_plg20",
- "fname": "Gains Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE5417Af564e4bFDA1c483642db72007871397896"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "GRLC",
- "name": "garlicoin",
- "fname": "Garlicoin",
- "sign_message_prefix": "Garlicoin Signed Message:\n",
- "rpcport": 42068,
- "pubtype": 38,
- "p2shtype": 50,
- "wiftype": 176,
- "segwit": true,
- "bech32_hrp": "grlc",
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 40,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/69420'"
- },
- {
- "coin": "GRLC-ERC20",
- "name": "grlc_erc20",
- "fname": "Garlicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x58f7345b5295E43aA454911571f13be186655BE9"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "GRLC-BEP20",
- "name": "grlc_bep20",
- "fname": "Garlicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7283DfA2d8D7e277b148cc263B5d8Ae02f1076D3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GRS",
- "name": "groestlcoin",
- "fname": "Groestlcoin",
- "sign_message_prefix": "GroestCoin Signed Message:\n",
- "rpcport": 1441,
- "pubtype": 36,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 10000,
- "segwit": true,
- "bech32_hrp": "grs",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/17'",
- "trezor_coin": "Groestlcoin",
- "links": {
- "github": "https://github.com/Groestlcoin/groestlcoin",
- "homepage": "https://www.groestlcoin.org"
- }
- },
- {
- "coin": "GRT-AVX20",
- "name": "grt_avx20",
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "GRT-ERC20",
- "name": "grt_erc20",
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Graph Token",
- "links": {
- "github": "https://github.com/graphprotocol",
- "homepage": "https://thegraph.com"
- }
- },
- {
- "coin": "GRT-KRC20",
- "name": "grt_krc20",
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xb49dd3eDB98FBe82A01DFcb556Cd016964baf5A3"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "GRT-PLG20",
- "name": "grt_plg20",
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "GST-BEP20",
- "name": "gst_bep20",
- "fname": "Green Satoshi Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "GT-ERC20",
- "name": "gt_erc20",
- "fname": "Gate",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xE66747a101bFF2dBA3697199DCcE5b743b454759"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "GUSD-ERC20",
- "name": "gusd_erc20",
- "fname": "Gemini Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "HEX-ERC20",
- "name": "hex_erc20",
- "fname": "HEX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "HEX",
- "links": {
- "github": "https://github.com/bitcoinHEX",
- "homepage": "https://hex.win"
- }
- },
- {
- "coin": "HEX-PLG20",
- "name": "hex_plg20",
- "fname": "HEX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "HOT-ERC20",
- "name": "hot_erc20",
- "fname": "Holo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6c6EE5e31d828De241282B9606C8e98Ea48526E2"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "HOT-PLG20",
- "name": "hot_plg20",
- "fname": "Holo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0C51f415cF478f8D08c246a6C6Ee180C5dC3A012"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "HT",
- "name": "huobi-token",
- "fname": "Huobi Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "required_confirmations": 3,
- "avg_blocktime": 3,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1010'",
- "trezor_coin": "Huobi ECO Chain",
- "links": {
- "homepage": "https://www.hecochain.com"
- }
- },
- {
- "coin": "HT-ERC20",
- "name": "huobi-token",
- "fname": "Huobi Token",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6f259637dcD74C767781E37Bc6133cd6A68aa161"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Huobi Token",
- "links": {
- "homepage": "https://www.hbg.com"
- }
- },
- {
- "coin": "HUSD-ERC20",
- "name": "husd_erc20",
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdF574c24545E5FfEcb9a659c229253D4111d87e1"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "HUSD-HCO20",
- "name": "husd_hco20",
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x0298c2b32eaE4da002a15f36fdf7615BEa3DA047"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "HUSD-KRC20",
- "name": "husd_krc20",
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xBEc1e1009CE00ECf7F16372451Ac849b39C32897"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "HUSD-PLG20",
- "name": "husd_plg20",
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2088C47Fc0c78356c622F79dBa4CbE1cCfA84A91"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "IL8P",
- "name": "infiniloop",
- "fname": "InfiniLooP",
- "isPoS": 1,
- "rpcport": 9459,
- "pubtype": 33,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 500,
- "required_confirmations": 7,
- "avg_blocktime": 45,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "ILN",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "ILN",
- "fname": "Ilien",
- "rpcport": 12986,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "p2p": 12985,
- "magic": "feb4cb23",
- "nSPV": "5.9.102.210, 5.9.253.195, 5.9.253.196, 5.9.253.197, 5.9.253.198, 5.9.253.199, 5.9.253.200, 5.9.253.201, 5.9.253.202, 5.9.253.203",
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "ILN-BEP20",
- "name": "iln_bep20",
- "fname": "Ilien",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb49a312677BA1E80DDe23C17E46E80B3E86b533d"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ILN-PLG20",
- "name": "iln_plg20",
- "fname": "Ilien",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2bAa79e7C13C302210436455925E68aD8fA687F0"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ILNSW-PLG20",
- "name": "ilnsw_plg20",
- "fname": "Ilien Swap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0483Ddbb510d22b206f2F3bDAC18528C952c4213"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ILV-ERC20",
- "name": "ilv_erc20",
- "fname": "Illuvium",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "ILV-BEP20",
- "name": "ilv_bep20",
- "fname": "Illuvium",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4d5AC5cc4f8aBdf2EC2Cb986C00C382369f787D4"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "IMX-ERC20",
- "name": "imx_erc20",
- "fname": "ImmutableX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "INJ-BEP20",
- "name": "inj_bep20",
- "fname": "Injective Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "INJ-ERC20",
- "name": "inj_erc20",
- "fname": "Injective Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "IOTA-BEP20",
- "name": "iota_bep20",
- "fname": "IOTA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "IOTX-BEP20",
- "name": "iotx_bep20",
- "fname": "IoTeX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "IOTX-PLG20",
- "name": "iotx_plg20",
- "fname": "IoTeX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JDB-BEP20",
- "name": "jdb_bep20",
- "fname": "Jeet Detector Bot",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7874CAFf04AFB8B6f5cbBE3ebec3f83Fcd882272"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "JAUD-PLG20",
- "name": "jaud_plg20",
- "fname": "Jarvis Australian Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xCB7F1Ef7246D1497b985f7FC45A1A31F04346133"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JBRL-BEP20",
- "name": "jbrl_bep20",
- "fname": "Jarvis Brazilian Real",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x316622977073BBC3dF32E7d2A9B3c77596a0a603"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "JBRL-PLG20",
- "name": "jbrl_plg20",
- "fname": "Jarvis Brazilian Real",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JCAD-PLG20",
- "name": "jcad_plg20",
- "fname": "Jarvis Canadian Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8ca194A3b22077359b5732DE53373D4afC11DeE3"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JCHF-AVX20",
- "name": "jchf_avx20",
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x2d5563da42b06FbBF9c67b7DC073cF6A7842239e"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "JCHF-BEP20",
- "name": "jchf_bep20",
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7c869b5A294b1314E985283d01C702B62224a05f"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "JCHF-ERC20",
- "name": "jchf_erc20",
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x53dfEa0A8CC2A2A2e425E1C174Bc162999723ea0"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "JCHF-PLG20",
- "name": "jchf_plg20",
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xbD1463F02f61676d53fd183C2B19282BFF93D099"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JCNY-PLG20",
- "name": "jcny_plg20",
- "fname": "Jarvis Chinese Yuan",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x84526c812D8f6c4fD6C1a5B68713AFF50733E772"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JEUR-AVX20",
- "name": "jeur_avx20",
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9fB1d52596c44603198fB0aee434fac3a679f702"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "JEUR-BEP20",
- "name": "jeur_bep20",
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x23b8683Ff98F9E4781552DFE6f12Aa32814924e8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "JEUR-ERC20",
- "name": "jeur_erc20",
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0f17BC9a994b87b5225cFb6a2Cd4D667ADb4F20B"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "JEUR-PLG20",
- "name": "jeur_plg20",
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JGBP-BEP20",
- "name": "jgbp_bep20",
- "fname": "Jarvis British Pound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x048E9b1ddF9EBbb224812372280e94Ccac443f9e"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "JGBP-ERC20",
- "name": "jgbp_erc20",
- "fname": "Jarvis British Pound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7409856CAE628f5d578B285B45669b36E7005283"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "JGBP-PLG20",
- "name": "jgbp_plg20",
- "fname": "Jarvis British Pound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x767058F11800FBA6A682E73A6e79ec5eB74Fac8c"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JGOLD-PLG20",
- "name": "jgold_plg20",
- "fname": "Jarvis Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x192Ef3FFF1708456D3A1F21354FA8d6bFd86b45c"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JJPY-PLG20",
- "name": "jjpy_plg20",
- "fname": "Jarvis Japanese Yen",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8343091F2499FD4b6174A46D067A920a3b851FF9"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JKRW-PLG20",
- "name": "jkrw_plg20",
- "fname": "Jarvis South Korean Won",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xa22f6bc96f13bcC84dF36109c973d3c0505a067E"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JMXN-PLG20",
- "name": "jmxn_plg20",
- "fname": "Jarvis Mexican Peso",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xBD1fe73e1f12bD2bc237De9b626F056f21f86427"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JNZD-PLG20",
- "name": "jnzd_plg20",
- "fname": "Jarvis New Zealand Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6b526Daf03B4C47AF2bcc5860B12151823Ff70E0"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JPHP-PLG20",
- "name": "jphp_plg20",
- "fname": "Jarvis Philippine Peso",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x486880FB16408b47f928F472f57beC55AC6089d1"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JPLN-PLG20",
- "name": "jpln_plg20",
- "fname": "Jarvis Polish Zloty",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x08E6d1F0c4877Ef2993Ad733Fc6F1D022d0E9DBf"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JPYC-AVX20",
- "name": "jpyc_avx20",
- "fname": "JPY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "JPYC-PLG20",
- "name": "jpyc_plg20",
- "fname": "JPY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JRT-ERC20",
- "name": "jrt_erc20",
- "fname": "Jarvis Reward Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8A9C67fee641579dEbA04928c4BC45F66e26343A"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "JRT-PLG20",
- "name": "jrt_plg20",
- "fname": "Jarvis Reward Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JSEK-PLG20",
- "name": "jsek_plg20",
- "fname": "Jarvis Swedish Krona",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x197E5d6CcfF265AC3E303a34Db360ee1429f5d1A"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JSGD-PLG20",
- "name": "jsgd_plg20",
- "fname": "Jarvis Singapore Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xa926db7a4CC0cb1736D5ac60495ca8Eb7214B503"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JTRY-PLG20",
- "name": "jtry_plg20",
- "fname": "Jarvis Turkish Lira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2A227fc77Bb2cf8f1881a04eCC8fA01EC57EC9fc"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JUSD-PLG20",
- "name": "jusd_plg20",
- "fname": "Jarvis United States Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc948EE9a0687C292ac4d8C1e2557aD652D6baf44"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "JST-BEP20",
- "name": "jst_bep20",
- "fname": "JUST",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xeA998D307ACA04D4f0A3B3036Aba84AE2E409C0A"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "KCS",
- "name": "kucoin-token",
- "fname": "KuCoin Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "required_confirmations": 3,
- "avg_blocktime": 3,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/641'",
- "trezor_coin": "KCC",
- "links": {
- "homepage": "https://kcc.io"
- }
- },
- {
- "coin": "KMD",
- "name": "komodo",
- "fname": "Komodo",
- "rpcport": 7771,
- "pubtype": 60,
- "p2shtype": 85,
- "wiftype": 188,
- "txversion": 4,
- "overwintered": 1,
- "txfee": 1000,
- "mm2": 1,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "links": {
- "github": "https://github.com/komodoplatform/komodo",
- "homepage": "https://komodoplatform.com"
- }
- },
- {
- "coin": "KMD-BEP20",
- "name": "kmd_bep20",
- "fname": "Komodo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2003f7ba57Ea956B05B85C60B4B2Ceea9b111256"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "KNC-BEP20",
- "name": "knc_bep20",
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "KNC-ERC20",
- "name": "knc_erc20",
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Kyber Network",
- "links": {
- "github": "https://github.com/KyberNetwork",
- "homepage": "https://kyber.network"
- }
- },
- {
- "coin": "KNC-PLG20",
- "name": "knc_plg20",
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "KNC-AVX20",
- "name": "knc_avx20",
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "KOIN",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "KOIN",
- "fname": "Koinon",
- "rpcport": 10702,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "KSM-BEP20",
- "name": "ksm_bep20",
- "fname": "Kusama",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2aa69E8D25C045B659787BC1f03ce47a388DB6E8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "LABS",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "LABS",
- "fname": "KMD Labs",
- "rpcport": 40265,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "LBC",
- "name": "lbrycrd",
- "fname": "LBRY Credits",
- "sign_message_prefix": "LBRYcrd Signed Message:\n",
- "rpcport": 9245,
- "pubtype": 85,
- "p2shtype": 122,
- "wiftype": 28,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "lbc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/140'"
- },
- {
- "coin": "LBC-segwit",
- "name": "lbrycrd",
- "fname": "LBRY Credits",
- "sign_message_prefix": "LBRYcrd Signed Message:\n",
- "rpcport": 9245,
- "pubtype": 85,
- "p2shtype": 122,
- "wiftype": 28,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "lbc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "LBC",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/140'"
- },
- {
- "coin": "LCC",
- "name": "litecoincash",
- "fname": "Litecoin Cash",
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "rpcport": 62457,
- "pubtype": 28,
- "p2shtype": 50,
- "wiftype": 176,
- "decimals": 7,
- "fork_id": "0x40",
- "signature_version": "base",
- "txfee": 20000,
- "segwit": true,
- "bech32_hrp": "lcc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/192'"
- },
- {
- "coin": "LCC-segwit",
- "name": "litecoincash",
- "fname": "Litecoin Cash",
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "rpcport": 62457,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 176,
- "decimals": 7,
- "fork_id": "0x40",
- "signature_version": "base",
- "txfee": 20000,
- "segwit": true,
- "bech32_hrp": "lcc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "LCC",
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/192'"
- },
- {
- "coin": "LDO-ERC20",
- "name": "ldo_erc20",
- "fname": "Lido DAO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "LDO-PLG20",
- "name": "ldo_plg20",
- "fname": "Lido DAO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "LNC",
- "name": "lightningcash",
- "fname": "LightningCash",
- "rpcport": 9110,
- "pubtype": 28,
- "p2shtype": 50,
- "wiftype": 176,
- "decimals": 8,
- "signature_version": "base",
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "lnc",
- "mm2": 1,
- "required_confirmations": 6,
- "avg_blocktime": 5,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "LEO-ERC20",
- "name": "leo_erc20",
- "fname": "LEO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "LEOcoin",
- "links": {
- "homepage": "https://www.leocoin.org/"
- }
- },
- {
- "coin": "LEO-PLG20",
- "name": "leo_plg20",
- "fname": "LEO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x06D02e9D62A13fC76BB229373FB3BBBD1101D2fC"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "LINK-ERC20",
- "name": "link_erc20",
- "fname": "Chainlink",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x514910771AF9Ca656af840dff83E8264EcF986CA"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "LINK-AVX20",
- "name": "link_avx20",
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x5947BB275c521040051D82396192181b413227A3"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "LINK-BEP20",
- "name": "link_bep20",
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "LINK-FTM20",
- "name": "link_ftm20",
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "LINK-HCO20",
- "name": "link_hco20",
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x9e004545c59D359F6B7BFB06a26390b087717b42"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "LINK-KRC20",
- "name": "link_krc20",
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x47841910329aaa6b88D5e9DcdE9000195151dc72"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "LINK-PLG20",
- "name": "link_plg20",
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "LOOP-BEP20",
- "name": "loop_bep20",
- "fname": "LoopNetwork",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xcE186ad6430E2Fe494a22C9eDbD4c68794a28B35"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "LRC-ERC20",
- "name": "lrc_erc20",
- "fname": "Loopring",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Loopring",
- "links": {
- "github": "https://github.com/loopring",
- "homepage": "https://loopring.org"
- }
- },
- {
- "coin": "LRC-BEP20",
- "name": "lrc_bep20",
- "fname": "Loopring",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x66e4d38b20173F509A1fF5d82866949e4fE898da"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "LRC-PLG20",
- "name": "lrc_plg20",
- "fname": "Loopring",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x84e1670F61347CDaeD56dcc736FB990fBB47ddC1"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "WCN",
- "name": "widecoin",
- "fname": "Widecoin",
- "rpcport": 8552,
- "pubtype": 73,
- "p2shtype": 33,
- "wiftype": 153,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "wc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 2,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/613'"
- },
- {
- "coin": "WCN-segwit",
- "name": "widecoin",
- "fname": "Widecoin",
- "rpcport": 8552,
- "pubtype": 73,
- "p2shtype": 33,
- "wiftype": 153,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "wc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "WCN",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/613'"
- },
- {
- "coin": "LEASH-ERC20",
- "name": "leash_erc20",
- "fname": "Doge Killer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x27C70Cd1946795B66be9d954418546998b546634"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "LOOM-ERC20",
- "name": "loom_erc20",
- "fname": "Loom Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x42476F744292107e34519F9c357927074Ea3F75D"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "LOOM",
- "links": {
- "github": "github.com/loomnetwork/",
- "homepage": "https://loomx.io"
- }
- },
- {
- "coin": "LOOM-BEP20",
- "name": "loom_bep20",
- "fname": "Loom Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xE6Ce27025F13f5213bBc560dC275e292965a392F"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "LSWAP-BEP20",
- "name": "lswap_bep20",
- "fname": "LoopSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3F8a14f5a3Ee2F4A3Ed61cCF5EEA3c9535C090C8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "LTC",
- "name": "litecoin",
- "fname": "Litecoin",
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "rpcport": 9332,
- "pubtype": 48,
- "p2shtype": 50,
- "wiftype": 176,
- "txfee": 0,
- "dust": 5460,
- "segwit": true,
- "bech32_hrp": "ltc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/2'",
- "trezor_coin": "Litecoin",
- "links": {
- "github": "https://github.com/litecoin-project/litecoin",
- "homepage": "https://litecoin.org"
- }
- },
- {
- "coin": "LTC-segwit",
- "name": "litecoin",
- "fname": "Litecoin",
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "rpcport": 9332,
- "pubtype": 48,
- "p2shtype": 50,
- "wiftype": 176,
- "txfee": 0,
- "dust": 5460,
- "segwit": true,
- "bech32_hrp": "ltc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "LTC",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/2'",
- "trezor_coin": "Litecoin",
- "links": {
- "github": "https://github.com/litecoin-project/litecoin",
- "homepage": "https://litecoin.org"
- }
- },
- {
- "coin": "LYNX",
- "name": "lynx",
- "fname": "Lynx",
- "sign_message_prefix": "Lynx Signed Message:\n",
- "rpcport": 9332,
- "pubtype": 45,
- "p2shtype": 22,
- "wiftype": 173,
- "txfee": 100000,
- "dust": 54600,
- "segwit": false,
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 1200,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/191'"
- },
- {
- "coin": "MANA-ERC20",
- "name": "mana_erc20",
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0F5D2fB29fb7d3CFeE444a200298f468908cC942"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Decentraland MANA",
- "links": {
- "github": "https://github.com/decentraland",
- "homepage": "https://decentraland.org"
- }
- },
- {
- "coin": "MANA-BEP20",
- "name": "mana_bep20",
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MANA-KRC20",
- "name": "mana_krc20",
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "MANA-PLG20",
- "name": "mana_plg20",
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "MASK-BEP20",
- "name": "mask_bep20",
- "fname": "Mask Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MASK-ERC20",
- "name": "mask_erc20",
- "fname": "Mask Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "MASK-PLG20",
- "name": "mask_plg20",
- "fname": "Mask Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "MATICTEST",
- "name": "matic testnet",
- "fname": "Matic Testnet",
- "is_testnet": true,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 80001,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ETH"
- }
- },
- {
- "coin": "MATIC",
- "name": "matic",
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/966'",
- "trezor_coin": "Polygon",
- "links": {
- "homepage": "https://polygon.technology/"
- }
- },
- {
- "coin": "MATIC-BEP20",
- "name": "matic_bep20",
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MATIC-ERC20",
- "name": "matic_erc20",
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Matic Token",
- "links": {
- "homepage": "https://polygon.technology/"
- }
- },
- {
- "coin": "MATIC-HCO20",
- "name": "matic_hco20",
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xdB11743fe8B129b49b11236E8a715004BDabe7e5"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "MATIC-KRC20",
- "name": "matic_krc20",
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x1B8e27ABA297466fc6765Ce55BD12A8E216759da"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "MC-ERC20",
- "name": "mc_erc20",
- "fname": "Merit Circle",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "MC-BEP20",
- "name": "mc_bep20",
- "fname": "Merit Circle",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MCL",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "MCL",
- "fname": "Marmara Credit Loops",
- "rpcport": 33825,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "MINDS-ERC20",
- "name": "minds_erc20",
- "fname": "Minds",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB26631c6dda06aD89B93C71400D25692de89c068"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Minds Token",
- "links": {
- "homepage": "https://www.minds.com/"
- }
- },
- {
- "coin": "MIL",
- "name": "mil",
- "fname": "Milevium",
- "sign_message_prefix": "MIL Signed Message:\n",
- "rpcport": 41889,
- "pubtype": 50,
- "p2shtype": 196,
- "wiftype": 239,
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "MIR-ERC20",
- "name": "mir_erc20",
- "fname": "Mirror Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x09a3EcAFa817268f77BE1283176B946C4ff2E608"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "MIR-BEP20",
- "name": "mir_bep20",
- "fname": "Mirror Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MKR-AVX20",
- "name": "mkr_avx20",
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "MKR-BEP20",
- "name": "mkr_bep20",
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MKR-ERC20",
- "name": "mkr_erc20",
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "MakerDAO",
- "links": {
- "github": "https://github.com/makerdao",
- "homepage": "https://makerdao.com"
- }
- },
- {
- "coin": "MKR-KRC20",
- "name": "mkr_krc20",
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xdE81028C743f5304fe2cdEfac588f572d629a687"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "MKR-PLG20",
- "name": "mkr_plg20",
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "MM-ERC20",
- "name": "mm_erc20",
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Million",
- "links": {
- "homepage": "https://www.milliontoken.org"
- }
- },
- {
- "coin": "MM-AVX20",
- "name": "mm_avx20",
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x993163CaD35162fB579D7B64e6695cB076EF5064"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "MM-BEP20",
- "name": "mm_bep20",
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "MM-MVR20",
- "name": "mm_mvr20",
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x95bf7E307BC1ab0BA38ae10fc27084bC36FcD605"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "MM-PLG20",
- "name": "mm_plg20",
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "MONA",
- "name": "monacoin",
- "fname": "MonaCoin",
- "sign_message_prefix": "Monacoin Signed Message:\n",
- "rpcport": 9402,
- "pubtype": 50,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "mona",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 5,
- "avg_blocktime": 90,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/22'",
- "trezor_coin": "Monacoin",
- "links": {
- "github": "https://github.com/monacoinproject/monacoin",
- "homepage": "https://monacoin.org"
- }
- },
- {
- "coin": "MONA-segwit",
- "name": "monacoin",
- "fname": "MonaCoin",
- "sign_message_prefix": "Monacoin Signed Message:\n",
- "rpcport": 9402,
- "pubtype": 50,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "mona",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "MONA",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 90,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/22'",
- "trezor_coin": "Monacoin",
- "links": {
- "github": "https://github.com/monacoinproject/monacoin",
- "homepage": "https://monacoin.org"
- }
- },
- {
- "coin": "MOVR",
- "name": "moonriver",
- "fname": "Moonriver",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1285'",
- "trezor_coin": "Moonriver",
- "links": {
- "homepage": "https://moonbeam.network/networks/moonriver/"
- }
- },
- {
- "coin": "GLMR",
- "name": "moonbeam",
- "fname": "Moonbeam",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1284,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1284'",
- "trezor_coin": "Moonbeam",
- "links": {
- "homepage": "https://moonbeam.network/networks/moonbeam/"
- }
- },
- {
- "coin": "NAV",
- "name": "navcoin",
- "fname": "Navcoin",
- "sign_message_prefix": "Navcoin Signed Message:\n",
- "isPoS": 1,
- "txversion": 3,
- "confpath": "USERHOME/.navcoin4/navcoin.conf",
- "rpcport": 44444,
- "pubtype": 53,
- "p2shtype": 85,
- "wiftype": 150,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 10,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/130'"
- },
- {
- "coin": "NAV-BEP20",
- "name": "nav_bep20",
- "fname": "Navcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "NEAR-BEP20",
- "name": "near_bep20",
- "fname": "NEAR Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "NENG",
- "name": "nengcoin",
- "fname": "Nengcoin",
- "rpcport": 6376,
- "pubtype": 53,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 200000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/681'"
- },
- {
- "coin": "NEXO-ERC20",
- "name": "nexo_erc20",
- "fname": "Nexo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Nexo",
- "links": {
- "homepage": "http://nexo.io"
- }
- },
- {
- "coin": "NEXO-KRC20",
- "name": "nexo_krc20",
- "fname": "Nexo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xb7A18bd55e8E3E2262d7c8Ee7b4DD9B216Df0Faf"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "NEXO-PLG20",
- "name": "nexo_plg20",
- "fname": "Nexo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x41b3966B4FF7b427969ddf5da3627d6AEAE9a48E"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "NINJA",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "NINJA",
- "fname": "Ninja",
- "rpcport": 8427,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "NMC",
- "name": "namecoin",
- "fname": "Namecoin",
- "rpcport": 8336,
- "pubtype": 52,
- "p2shtype": 13,
- "wiftype": 180,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "nc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/7'",
- "trezor_coin": "Namecoin",
- "links": {
- "github": "https://github.com/namecoin/namecoin-core",
- "homepage": "https://namecoin.org"
- }
- },
- {
- "coin": "NMC-segwit",
- "name": "namecoin",
- "fname": "Namecoin",
- "rpcport": 8336,
- "pubtype": 52,
- "p2shtype": 13,
- "wiftype": 180,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "nc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "NMC",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/7'",
- "trezor_coin": "Namecoin",
- "links": {
- "github": "https://github.com/namecoin/namecoin-core",
- "homepage": "https://namecoin.org"
- }
- },
- {
- "coin": "NVC",
- "name": "novacoin",
- "fname": "Novacoin",
- "sign_message_prefix": "Novacoin Signed Message:\n",
- "isPoS": 1,
- "rpcport": 8344,
- "pubtype": 8,
- "p2shtype": 20,
- "wiftype": 136,
- "decimals": 6,
- "txfee": 1000,
- "dust": 10000,
- "mm2": 1,
- "wallet_only": true,
- "mature_confirmations": 500,
- "required_confirmations": 1,
- "avg_blocktime": 450,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/50'"
- },
- {
- "coin": "NVC-BEP20",
- "name": "nvc_bep20",
- "fname": "Novacoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBF84720097de111A80f46f9D077643967042841A"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "NVC-QRC20",
- "name": "qtum",
- "fname": "Novacoin",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xffb67c56c42b71144ae394dbfe298d863fbb3b9e"
- }
- },
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "NZDS-ERC20",
- "name": "nzds_erc20",
- "fname": "NZD Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xDa446fAd08277B4D2591536F204E018f32B6831c"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "NZDS-PLG20",
- "name": "nzds_plg20",
- "fname": "NZD Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xeaFE31Cd9e8E01C8f0073A2C974f728Fb80e9DcE"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "NYAN",
- "name": "nyancoin",
- "fname": "Nyancoin",
- "rpcport": 33700,
- "pubtype": 45,
- "p2shtype": 5,
- "wiftype": 173,
- "txfee": 100000,
- "segwit": false,
- "bech32_hrp": "ny",
- "mm2": 1,
- "required_confirmations": 10,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "OCEAN-BEP20",
- "name": "ocean_bep20",
- "fname": "Ocean Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "OCEAN-ERC20",
- "name": "ocean_erc20",
- "fname": "Ocean Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Ocean Token",
- "links": {
- "github": "https://github.com/oceanprotocol",
- "homepage": "https://oceanprotocol.com"
- }
- },
- {
- "coin": "OCEAN-PLG20",
- "name": "ocean_plg20",
- "fname": "Ocean Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "OMG-ERC20",
- "name": "omg_erc20",
- "fname": "OMG Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "OmiseGO",
- "links": {
- "github": "https://github.com/omisego",
- "homepage": "https://omg.omise.co"
- }
- },
- {
- "coin": "OMG-PLG20",
- "name": "omg_plg20",
- "fname": "OMG Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x62414D03084EeB269E18C970a21f45D2967F0170"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "ONE",
- "name": "harmony",
- "fname": "Harmony",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1666600000,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "ONT-BEP20",
- "name": "ont_bep20",
- "fname": "Ontology",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "PAX-ERC20",
- "name": "pax_erc20",
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8E870D67F660D95d5be530380D0eC0bd388289E1"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Paxos Standard (PAX)",
- "links": {
- "github": "https://github.com/paxosglobal",
- "homepage": "https://www.paxos.com/standard"
- }
- },
- {
- "coin": "PAX-BEP20",
- "name": "pax_bep20",
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "PAX-KRC20",
- "name": "pax_krc20",
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x69a7169F9Da9BBa04b982e49Ffd8d6a16c70c590"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "PAX-PLG20",
- "name": "pax_plg20",
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6F3B3286fd86d8b47EC737CEB3D0D354cc657B3e"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "PAXG-BEP20",
- "name": "paxg_bep20",
- "fname": "PAX Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7950865a9140cB519342433146Ed5b40c6F210f7"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "PAXG-ERC20",
- "name": "paxg_erc20",
- "fname": "PAX Gold",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x45804880De22913dAFE09f4980848ECE6EcbAf78"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Paxos Gold",
- "links": {
- "github": "https://github.com/paxosglobal/paxos-gold-contract",
- "homepage": "https://www.paxos.com/paxgold"
- }
- },
- {
- "coin": "PAXG-PLG20",
- "name": "paxg_plg20",
- "fname": "PAX Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x553d3D295e0f695B9228246232eDF400ed3560B5"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "PINK",
- "name": "pink",
- "fname": "Pinkcoin",
- "rpcport": 9135,
- "isPoS": 1,
- "pubtype": 3,
- "p2shtype": 28,
- "wiftype": 131,
- "txfee": 10000,
- "mm2": 1,
- "wallet_only": true,
- "sign_message_prefix": "Pinkcoin Signed Message:\n",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/117'",
- "links": {
- "github": "https://github.com/Pink2Dev/Pink2",
- "homepage": "https://getstarted.with.pink"
- }
- },
- {
- "coin": "PIVX",
- "name": "pivx",
- "fname": "PIVX",
- "rpcport": 51473,
- "pubtype": 30,
- "p2shtype": 13,
- "wiftype": 212,
- "txfee": 100000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/119'"
- },
- {
- "coin": "PND",
- "name": "pandacoin",
- "fname": "Pandacoin",
- "isPoS": 1,
- "rpcport": 22444,
- "pubtype": 55,
- "p2shtype": 22,
- "wiftype": 183,
- "decimals": 6,
- "txfee": 10000000,
- "dust": 1000000,
- "segwit": true,
- "bech32_hrp": "pn",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/37'"
- },
- {
- "coin": "POT",
- "name": "potcoin",
- "fname": "PotCoin",
- "sign_message_prefix": "Potcoin Signed Message:\n",
- "isPoSV": 1,
- "rpcport": 42000,
- "pubtype": 55,
- "p2shtype": 5,
- "wiftype": 183,
- "txversion": 4,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "wallet_only": true,
- "mature_confirmations": 240,
- "required_confirmations": 5,
- "avg_blocktime": 40,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/81'"
- },
- {
- "coin": "POT-ERC20",
- "name": "pot_erc20",
- "fname": "PotCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x390603F023A33C76e3A4bf7B6Cc9Fba5E87dd05D"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "POT-PLG20",
- "name": "pot_plg20",
- "fname": "PotCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xd7c8469c7eC40f853dA5f651DE81b45aeD47e5aB"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "POWR-ERC20",
- "name": "powr_erc20",
- "fname": "Power Ledger",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x595832F8FC6BF59c85C527fEC3740A1b7a361269"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "PowerLedger",
- "links": {
- "homepage": "https://powerledger.io"
- }
- },
- {
- "coin": "POWR-PLG20",
- "name": "powr_plg20",
- "fname": "Power Ledger",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0AaB8DC887D34f00D50E19aee48371a941390d14"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "PPC",
- "name": "peercoin",
- "fname": "Peercoin",
- "isPoS": 1,
- "rpcport": 9902,
- "pubtype": 55,
- "p2shtype": 117,
- "wiftype": 183,
- "decimals": 6,
- "txfee": 0,
- "dust": 10000,
- "segwit": true,
- "bech32_hrp": "pc",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 510,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/6'",
- "trezor_coin": "Peercoin",
- "links": {
- "github": "https://github.com/peercoin/peercoin",
- "homepage": "https://peercoin.net"
- }
- },
- {
- "coin": "PPC-ERC20",
- "name": "ppc_erc20",
- "fname": "Peercoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x044d078F1c86508e13328842Cc75AC021B272958"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "PPC-PLG20",
- "name": "ppc_plg20",
- "fname": "Peercoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x91E7E32C710661C44ae44D10Aa86135d91C3Ed65"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "PRCY",
- "name": "prcy",
- "fname": "PRivaCY Coin",
- "rpcport": 59683,
- "pubtype": 55,
- "p2shtype": 61,
- "wiftype": 28,
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/853'"
- },
- {
- "coin": "PRCY-BEP20",
- "name": "prcy_bep20",
- "fname": "PRivaCY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "PRCY-ERC20",
- "name": "prcy_erc20",
- "fname": "PRivaCY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 8,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "PRCY-PLG20",
- "name": "prcy_plg20",
- "fname": "PRivaCY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "PRUX",
- "name": "prux",
- "fname": "PRUX",
- "rpcport": 19595,
- "pubtype": 55,
- "p2shtype": 117,
- "wiftype": 183,
- "txfee": 10000,
- "segwit": false,
- "bech32_hrp": "pr",
- "mm2": 1,
- "required_confirmations": 9,
- "avg_blocktime": 9,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "PYR-ERC20",
- "name": "pyr_erc20",
- "fname": "Vulcan Forged",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "PYR-PLG20",
- "name": "pyr_plg20",
- "fname": "Vulcan Forged",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "SHIB-BEP20",
- "name": "shib_bep20",
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SHIB-ERC20",
- "name": "shib_erc20",
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SHIBA INU",
- "links": {
- "homepage": "https://shibatoken.com"
- }
- },
- {
- "coin": "SHIB-KRC20",
- "name": "shib_krc20",
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x73b6086955c820370A18002F60E9b51FB67d7e1A"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "SHIB-PLG20",
- "name": "shib_plg20",
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6f8a06447Ff6FcF75d803135a7de15CE88C1d4ec"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "QC-QRC20",
- "name": "qtum",
- "fname": "Qcash",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xf2033ede578e17fa6231047265010445bca8cf1c"
- }
- },
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "QIAIR-QRC20",
- "name": "qtum",
- "fname": "Qi Airdrop Token",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x60f33e17d8d2dba280cf85b6c35880dedd8ed728"
- }
- },
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "QI-QRC20",
- "name": "qtum",
- "fname": "Qi Swap",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x54fefdb5b31164f66ddb68becd7bdd864cacd65b"
- }
- },
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "QKC-BEP20",
- "name": "qkc_bep20",
- "fname": "QuarkChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA1434F1FC3F437fa33F7a781E041961C0205B5Da"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "QKC-ERC20",
- "name": "qkc_erc20",
- "fname": "QuarkChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "QuarkChain",
- "links": {
- "homepage": "https://quarkchain.io"
- }
- },
- {
- "coin": "QNT-ERC20",
- "name": "qnt_erc20",
- "fname": "Quant",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4a220E6096B25EADb88358cb44068A3248254675"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Quant",
- "links": {
- "github": "https://github.com/quantnetwork",
- "homepage": "https://www.quant.network/"
- }
- },
- {
- "coin": "QNT-KRC20",
- "name": "qnt_krc20",
- "fname": "Quant",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x791630C11c7159A748d8c2267a66780B3DDC40a7"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "QRC20",
- "fname": "QRC20",
- "pubtype": 120,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 400000,
- "mm2": 1,
- "is_testnet": true,
- "mature_confirmations": 2000,
- "required_confirmations": 1,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "tQTUM",
- "contract_address": "0xd362e096e873eb7907e205fadc6175c6fec7bc44"
- }
- }
- },
- {
- "coin": "QTUM",
- "name": "qtum",
- "fname": "Qtum",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "qc",
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "sign_message_prefix": "Qtum Signed Message:\n",
- "force_min_relay_fee": true,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QTUM"
- },
- "derivation_path": "m/44'/2301'",
- "trezor_coin": "Qtum",
- "links": {
- "github": "https://github.com/qtumproject/qtum",
- "homepage": "https://qtum.org"
- }
- },
- {
- "coin": "QTUM-ERC20",
- "name": "qtum_erc20",
- "fname": "Qtum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3103dF8F05c4D8aF16fD22AE63E406b97FeC6938"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Qtum",
- "links": {
- "github": "https://github.com/qtumproject",
- "homepage": "https://qtum.org/"
- }
- },
- {
- "coin": "tQTUM",
- "name": "qtumtest",
- "fname": "QTUM Testnet",
- "is_testnet": true,
- "rpcport": 13889,
- "pubtype": 120,
- "p2shtype": 110,
- "wiftype": 239,
- "segwit": true,
- "bech32_hrp": "tq",
- "txfee": 400000,
- "mm2": 1,
- "required_confirmations": 1,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QTUM"
- }
- },
- {
- "coin": "RDD",
- "name": "reddcoin",
- "fname": "ReddCoin",
- "isPoSV": 1,
- "rpcport": 45443,
- "pubtype": 61,
- "p2shtype": 5,
- "wiftype": 189,
- "txversion": 2,
- "txfee": 100000,
- "dust": 100000,
- "segwit": false,
- "mm2": 1,
- "wallet_only": true,
- "mature_confirmations": 30,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/4'",
- "trezor_coin": "Reddcoin",
- "links": {
- "github": "https://github.com/reddcoin-project/reddcoin",
- "homepage": "https://reddcoin.com"
- }
- },
- {
- "coin": "REN-ERC20",
- "name": "ren_erc20",
- "fname": "Ren",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x408e41876cCCDC0F92210600ef50372656052a38"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Republic Token",
- "links": {
- "github": "https://github.com/renproject",
- "homepage": "https://renproject.io/"
- }
- },
- {
- "coin": "REN-HCO20",
- "name": "ren_hco20",
- "fname": "Ren",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x212208bcc81F3a2D0188afF76A2d39351eb53b96"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "REP-ERC20",
- "name": "rep_erc20",
- "fname": "Augur",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x221657776846890989a759BA2973e427DfF5C9bB"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Augur",
- "links": {
- "homepage": "https://augur.net"
- }
- },
- {
- "coin": "REQ-ERC20",
- "name": "req_erc20",
- "fname": "Request",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "REQ-PLG20",
- "name": "req_plg20",
- "fname": "Request",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "RIC",
- "name": "riecoin",
- "fname": "Riecoin",
- "rpcport": 28332,
- "pubtype": 60,
- "p2shtype": 65,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "ric",
- "txfee": 0,
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/143'"
- },
- {
- "coin": "RIC-segwit",
- "name": "riecoin",
- "fname": "Riecoin",
- "rpcport": 28332,
- "pubtype": 60,
- "p2shtype": 65,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "ric",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "RIC",
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/143'"
- },
- {
- "coin": "DOC",
- "asset": "DOC",
- "fname": "DOC",
- "rpcport": 62415,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "is_testnet": true,
- "required_confirmations": 1,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "MARTY",
- "asset": "MARTY",
- "fname": "MARTY",
- "rpcport": 52592,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "is_testnet": true,
- "required_confirmations": 1,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "RLC-ERC20",
- "name": "rlc_erc20",
- "fname": "iExec RLC",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 9,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x607F4C5BB672230e8672085532f7e901544a7375"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "IEx.ec",
- "links": {
- "homepage": "http://iex.ec/"
- }
- },
- {
- "coin": "RLC-PLG20",
- "name": "rlc_plg20",
- "fname": "iExec RLC",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 9,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xbe662058e00849C3Eef2AC9664f37fEfdF2cdbFE"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "RNDR-ERC20",
- "name": "rndr_erc20",
- "fname": "Render",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "RNDR-PLG20",
- "name": "rndr_plg20",
- "fname": "Render",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x61299774020dA444Af134c82fa83E3810b309991"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "RPL-ERC20",
- "name": "rpl_erc20",
- "fname": "Rocket Pool",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "RSR-ERC20",
- "name": "rsr_erc20",
- "fname": "Reserve Rights",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x320623b8E4fF03373931769A31Fc52A4E78B5d70"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Reserve Rights",
- "links": {
- "github": "https://github.com/reserve-protocol/rsr-mainnet",
- "homepage": "https://reserve.org"
- }
- },
- {
- "coin": "RTM",
- "name": "raptoreum",
- "fname": "Raptoreum",
- "rpcport": 9998,
- "pubtype": 60,
- "p2shtype": 16,
- "wiftype": 128,
- "txfee": 1000,
- "mm2": 1,
- "confpath": "USERHOME/.raptoreumcore/raptoreum.conf",
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/10226'"
- },
- {
- "coin": "RTM-BEP20",
- "name": "rtm_bep20",
- "fname": "Raptoreum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xF7C71cab11E3694638Bb9A106E0F430565BD15F1"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "RVN",
- "name": "raven",
- "fname": "RavenCoin",
- "sign_message_prefix": "Raven Signed Message:\n",
- "rpcport": 8766,
- "pubtype": 60,
- "p2shtype": 122,
- "wiftype": 128,
- "segwit": true,
- "txfee": 1000000,
- "dust": 1000000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/175'",
- "trezor_coin": "Ravencoin",
- "links": {
- "github": "https://github.com/RavenProject/Ravencoin",
- "homepage": "https://ravencoin.org"
- }
- },
- {
- "coin": "SAND-ERC20",
- "name": "sand_erc20",
- "fname": "The Sandbox",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "SAND-BEP20",
- "name": "sand_bep20",
- "fname": "The Sandbox",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SAND-PLG20",
- "name": "sand_plg20",
- "fname": "The Sandbox",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "SCRT-BEP20",
- "name": "scrt_bep20",
- "fname": "Secret",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SIGNA-BEP20",
- "name": "signa_bep20",
- "fname": "Signum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7b0E7E40eE4672599F7095D1DdD730b0805195BA"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SNX-AVX20",
- "name": "snx_avx20",
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "SNX-BEP20",
- "name": "snx_bep20",
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SNX-ERC20",
- "name": "snx_erc20",
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Synthetix Network Token",
- "links": {
- "github": "https://github.com/havven/havven",
- "homepage": "https://synthetix.io"
- }
- },
- {
- "coin": "SNX-FTM20",
- "name": "snx_ftm20",
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "SNX-KRC20",
- "name": "snx_krc20",
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x31965b5c9c55f5579eb49F4b3AcC59aA10a7B98E"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "SNX-PLG20",
- "name": "snx_plg20",
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "SOL-BEP20",
- "name": "sol_bep20",
- "fname": "Solana",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SOL-PLG20",
- "name": "sol_plg20",
- "fname": "Solana",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "SOLVE-ERC20",
- "name": "solve_erc20",
- "fname": "SOLVE",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x446C9033E7516D820cc9a2ce2d0B7328b579406F"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "SPACE",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "SPACE",
- "fname": "Spacecoin",
- "rpcport": 35593,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 6,
- "requires_notarization": false,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "SRM-ERC20",
- "name": "srm_erc20",
- "fname": "Serum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x476c5E26a75bd202a9683ffD34359C0CC15be0fF"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "SRM-PLG20",
- "name": "srm_plg20",
- "fname": "Serum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6Bf2eb299E51Fc5DF30Dec81D9445dDe70e3F185"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "SUM",
- "name": "sumcoin",
- "fname": "Sumcoin",
- "isPoS": 1,
- "sign_message_prefix": "Sumcoin Signed Message:\n",
- "rpcport": 3332,
- "pubtype": 63,
- "p2shtype": 125,
- "wiftype": 187,
- "decimals": 6,
- "txfee": 0,
- "dust": 10000,
- "segwit": false,
- "bech32_hrp": "sum",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/552'",
- "trezor_coin": "Sumcoin",
- "links": {
- "github": "https://github.com/sumcoinlabs/sumcoin",
- "homepage": "https://www.sumcoin.org"
- }
- },
- {
- "coin": "SUPERNET",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "SUPERNET",
- "fname": "Supernet",
- "rpcport": 11341,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "SUSHI-AVX20",
- "name": "sushi_avx20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "SUSHI-BEP20",
- "name": "sushi_bep20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SUSHI-ERC20",
- "name": "sushi_erc20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SushiToken",
- "links": {
- "github": "https://github.com/sushiswap",
- "homepage": "https://sushiswapclassic.org/"
- }
- },
- {
- "coin": "SUSHI-FTM20",
- "name": "sushi_ftm20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "SUSHI-KRC20",
- "name": "sushi_krc20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xE0a60890BB7F9250089455620063fb6fe4DC159a"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "SUSHI-MVR20",
- "name": "sushi_mvr20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0xf390830DF829cf22c53c8840554B98eafC5dCBc2"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "SUSHI-PLG20",
- "name": "sushi_plg20",
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "SWAP-BEP20",
- "name": "swap_bep20",
- "fname": "SafeSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xe56a473043EaAB7947c0a2408cEA623074500EE3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SXP-BEP20",
- "name": "sxp_bep20",
- "fname": "Swipe",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "SXP-ERC20",
- "name": "sxp_erc20",
- "fname": "Swipe",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "SBCH",
- "name": "smartbch",
- "fname": "SmartBCH",
- "rpcport": 80,
- "mm2": 1,
- "alias_ticker": "BCH",
- "chain_id": 10000,
- "required_confirmations": 3,
- "avg_blocktime": 6,
- "protocol": {
- "type": "ETH"
- }
- },
- {
- "coin": "SYS",
- "name": "syscoin",
- "fname": "Syscoin",
- "sign_message_prefix": "Syscoin Signed Message:\n",
- "rpcport": 8370,
- "pubtype": 63,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 1820,
- "segwit": true,
- "bech32_hrp": "sys",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "mm2": 1,
- "wallet_only": true,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/57'",
- "trezor_coin": "Syscoin",
- "links": {
- "github": "https://github.com/syscoin/syscoin",
- "homepage": "https://syscoin.org"
- }
- },
- {
- "coin": "SYS-segwit",
- "name": "syscoin",
- "fname": "Syscoin",
- "sign_message_prefix": "Syscoin Signed Message:\n",
- "rpcport": 8370,
- "pubtype": 63,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 1820,
- "segwit": true,
- "bech32_hrp": "sys",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "SYS",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/57'",
- "trezor_coin": "Syscoin",
- "links": {
- "github": "https://github.com/syscoin/syscoin",
- "homepage": "https://syscoin.org"
- }
- },
- {
- "coin": "SCA",
- "name": "scalaris",
- "fname": "Scalaris",
- "rpcport": 42510,
- "txversion": 1,
- "pubtype": 63,
- "p2shtype": 23,
- "wiftype": 154,
- "txfee": 200000,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "TAMA-ERC20",
- "name": "tama_erc20",
- "fname": "Tamadoge",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x12b6893cE26Ea6341919FE289212ef77e51688c8"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "tBTC",
- "name": "tbitcoin",
- "fname": "BTC Testnet",
- "rpcport": 18332,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "segwit": true,
- "bech32_hrp": "tb",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "wallet_only": true,
- "is_testnet": true,
- "required_confirmations": 0,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "tBTC-segwit",
- "name": "tbitcoin",
- "fname": "tBitcoin",
- "rpcport": 18332,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "segwit": true,
- "bech32_hrp": "tb",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "tBTC",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "is_testnet": true,
- "required_confirmations": 0,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "TEL-ERC20",
- "name": "tel_erc20",
- "fname": "Telcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x467Bccd9d29f223BcE8043b84E8C8B282827790F"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "TEL-KRC20",
- "name": "tel_krc20",
- "fname": "Telcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x621C1E8610e4B9b7fc9F043203C008EDe52E92F5"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "TEL-PLG20",
- "name": "tel_plg20",
- "fname": "Telcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 2,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "TFT-BEP20",
- "name": "tft_bep20",
- "fname": "ThreeFold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 7,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8f0FB159380176D324542b3a7933F0C2Fd0c2bbf"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "THC",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "THC",
- "fname": "HempCoin",
- "rpcport": 36790,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "THC-BEP20",
- "name": "thc_bep20",
- "fname": "HempCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBD9a8CA934e673b874937761D7CFa7084ecBdd53"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TKL",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "TOKEL",
- "fname": "Tokel",
- "rpcport": 29405,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "TON-ERC20",
- "name": "ton_erc20",
- "fname": "Toncoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 9,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "TON-BEP20",
- "name": "ton_bep20",
- "fname": "Toncoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 9,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TRC",
- "name": "terracoin",
- "fname": "Terracoin",
- "confpath": "USERHOME/.terracoincore/terracoin.conf",
- "rpcport": 13332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 5460,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/83'"
- },
- {
- "coin": "TRX-BEP20_OLD",
- "name": "trx_bep20_old",
- "fname": "TRON (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TRX-BEP20",
- "name": "trx_bep20",
- "fname": "TRON",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TRYB-AVX20",
- "name": "tryb_avx20",
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x564A341Df6C126f90cf3ECB92120FD7190ACb401"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "TRYB-BEP20",
- "name": "tryb_bep20",
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xC1fdbed7Dac39caE2CcC0748f7a80dC446F6a594"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TRYB-PLG20",
- "name": "tryb_plg20",
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x4Fb71290Ac171E1d144F7221D882BECAc7196EB5"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "TRYB-ERC20",
- "name": "tryb_erc20",
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2C537E5624e4af88A7ae4060C022609376C8D0EB"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "TUSD-BEP20_OLD",
- "name": "tusd_bep20_old",
- "fname": "TrueUSD (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x14016E85a25aeb13065688cAFB43044C2ef86784"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TUSD-BEP20",
- "name": "tusd_bep20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "TUSD-ERC20",
- "name": "tusd_erc20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0000000000085d4780B73119b644AE5ecd22b376"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "TrueUSD",
- "links": {
- "github": "https://github.com/trusttoken",
- "homepage": "https://www.trusttoken.com"
- }
- },
- {
- "coin": "TUSD-AVX20",
- "name": "tusd_avx20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "TUSD-FTM20",
- "name": "tusd_ftm20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x9879aBDea01a879644185341F7aF7d8343556B7a"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "TUSD-HCO20",
- "name": "tusd_hco20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "TUSD-KRC20",
- "name": "tusd_krc20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xD17027b85Abf02721F953EE528721A980fa58941"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "TUSD-PLG20",
- "name": "tusd_plg20",
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "TWT-BEP20",
- "name": "twt_bep20",
- "fname": "Trust Wallet",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "UBT-ERC20",
- "name": "ubt_erc20",
- "fname": "Unibright",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Unibright",
- "links": {
- "homepage": "https://unibright.io"
- }
- },
- {
- "coin": "UBT-PLG20",
- "name": "ubt_plg20",
- "fname": "Unibright",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7FBc10850caE055B27039aF31bD258430e714c62"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "UIS",
- "name": "unitus",
- "fname": "Unitus",
- "rpcport": 50604,
- "pubtype": 68,
- "p2shtype": 10,
- "wiftype": 132,
- "txfee": 2000000,
- "dust": 6000000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "UMA-AVX20",
- "name": "uma_avx20",
- "fname": "UMA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "UMA-ERC20",
- "name": "uma_erc20",
- "fname": "UMA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "UMA-PLG20",
- "name": "uma_plg20",
- "fname": "UMA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x3066818837c5e6eD6601bd5a91B0762877A6B731"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "UNI-AVX20",
- "name": "uni_avx20",
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "UNI-ERC20",
- "name": "uni_erc20",
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Uniswap",
- "links": {
- "homepage": "https://uniswap.org/"
- }
- },
- {
- "coin": "UNI-BEP20",
- "name": "uni_bep20",
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "UNI-HCO20",
- "name": "uni_hco20",
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "UNI-KRC20",
- "name": "uni_krc20",
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xEe58E4D62b10A92dB1089d4D040B759C28aE16Cd"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "UNI-PLG20",
- "name": "uni_plg20",
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "UNO",
- "name": "unobtanium",
- "fname": "Unobtanium",
- "sign_message_prefix": "Unobtanium Signed Message:\n",
- "rpcport": 65535,
- "pubtype": 130,
- "p2shtype": 30,
- "wiftype": 224,
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/92'",
- "trezor_coin": "Unobtanium",
- "links": {
- "github": "https://github.com/unobtanium-official/unobtanium",
- "homepage": "https://unobtanium.uno"
- }
- },
- {
- "coin": "USDC-AVX20",
- "name": "usdc_avx20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "USDC-AVX20_OLD",
- "name": "usdc_avx20_old",
- "fname": "USD Coin (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "USDC-ERC20",
- "name": "usdc_erc20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "USD//Coin",
- "links": {
- "github": "https://github.com/centrehq/centre-tokens",
- "homepage": "https://www.centre.io"
- }
- },
- {
- "coin": "USDC-BEP20",
- "name": "usdc_bep20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "USDC-FTM20",
- "name": "usdc_ftm20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "USDC-HCO20",
- "name": "usdc_hco20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "avg_blocktime": 3,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "USDC-KRC20",
- "name": "usdc_krc20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "USDC-MVR20",
- "name": "usdc_mvr20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "USDC-PLG20",
- "name": "usdc_plg20",
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "USDC-PLG20_OLD",
- "name": "usdc_plg20_old",
- "fname": "USD Coin (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "USDD-BEP20",
- "name": "usdd_bep20",
- "fname": "USDD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd17479997F34dd9156Deef8F95A52D81D265be9c"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "USDD-ERC20",
- "name": "usdd_erc20",
- "fname": "USDD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "USDT-MVR20",
- "name": "usdt_mvr20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C"
- }
- },
- "derivation_path": "m/44'/1285'"
- },
- {
- "coin": "USDT-FTM20",
- "name": "usdt_ftm20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "USDT-HCO20",
- "name": "usdt_hco20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xa71EdC38d189767582C38A3145b5873052c3e47a"
- }
- },
- "derivation_path": "m/44'/1023'"
- },
- {
- "coin": "USDT-KRC20",
- "name": "usdt_krc20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "USDT-PLG20",
- "name": "usdt_plg20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "USDT-ARB20",
- "name": "usdt_arb20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "chain_id": 42161,
- "avg_blocktime": 15,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH-ARB20",
- "contract_address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
- }
- }
- },
- {
- "coin": "USDT-AVX20",
- "name": "usdt_avx20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "USDT-AVX20_OLD",
- "name": "usdt_avx20_old",
- "fname": "Tether (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "USDT-BEP20",
- "name": "usdt_bep20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x55d398326f99059fF775485246999027B3197955"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "USDT-ERC20",
- "name": "usdt_erc20",
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "wallet_only": true,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "USD Tether (erc20)",
- "links": {
- "homepage": "https://tether.to"
- }
- },
- {
- "coin": "WWCN-ERC20",
- "name": "wwcn_erc20",
- "fname": "Wrapped Widecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x54a3017754BFba73F71F37d893A368814CbFf457"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "VAL",
- "name": "validity",
- "fname": "Validity",
- "confpath": "USERHOME/.Validity/validity.conf",
- "isPoS": 1,
- "rpcport": 27914,
- "pubtype": 76,
- "p2shtype": 58,
- "wiftype": 121,
- "txfee": 100000,
- "dust": 300000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "mature_confirmations": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "VET-BEP20",
- "name": "vet_bep20",
- "fname": "VeChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "VRA-ERC20",
- "name": "vra_erc20",
- "fname": "Verasity",
- "rpcport": 80,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xF411903cbC70a74d22900a5DE66A2dda66507255"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "VGX-ERC20",
- "name": "vgx_erc20",
- "fname": "Voyager",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "VGX-PLG20",
- "name": "vgx_plg20",
- "fname": "Voyager",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x054c42b6414747F5263b4A86f21B1aFAD00326Bf"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "VIA",
- "name": "viacoin",
- "fname": "Viacoin",
- "sign_message_prefix": "Viacoin Signed Message:\n",
- "rpcport": 5222,
- "pubtype": 71,
- "p2shtype": 33,
- "wiftype": 199,
- "txfee": 100000,
- "dust": 54600,
- "required_confirmations": 7,
- "mature_confirmations": 3600,
- "avg_blocktime": 24,
- "segwit": true,
- "bech32_hrp": "via",
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/14'",
- "trezor_coin": "Viacoin",
- "links": {
- "github": "https://github.com/viacoin",
- "homepage": "https://viacoin.org"
- }
- },
- {
- "coin": "VITE-BEP20",
- "name": "vite_bep20",
- "fname": "Vite",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2794DAD4077602eD25A88d03781528D1637898B4"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "VRM",
- "name": "verium",
- "fname": "Verium Reserve",
- "rpcport": 33987,
- "pubtype": 70,
- "p2shtype": 132,
- "wiftype": 198,
- "txfee": 100000,
- "force_min_relay_fee": true,
- "isPoS": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 240,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "VRSC",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "VRSC",
- "fname": "Verus Coin",
- "rpcport": 27486,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "GRMS",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "GRMS",
- "fname": "GRMS",
- "rpcport": 21687,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "VPRM",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "VPRM",
- "fname": "Vaporum",
- "rpcport": 51609,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "VTC",
- "name": "vertcoin",
- "fname": "Vertcoin",
- "sign_message_prefix": "Vertcoin Signed Message:\n",
- "rpcport": 5888,
- "pubtype": 71,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "vtc",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/28'",
- "trezor_coin": "Vertcoin",
- "links": {
- "github": "https://github.com/vertcoin-project/vertcoin-core",
- "homepage": "https://vertcoin.org"
- }
- },
- {
- "coin": "VTC-segwit",
- "name": "vertcoin",
- "fname": "Vertcoin",
- "sign_message_prefix": "Vertcoin Signed Message:\n",
- "rpcport": 5888,
- "pubtype": 71,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "vtc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "VTC",
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/28'",
- "trezor_coin": "Vertcoin",
- "links": {
- "github": "https://github.com/vertcoin-project/vertcoin-core",
- "homepage": "https://vertcoin.org"
- }
- },
- {
- "coin": "WAVES-BEP20",
- "name": "waves_bep20",
- "fname": "Waves",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xFC3E14af0f0c2129a84Cc013D48C70D682902874"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "WBTC-ERC20",
- "name": "wbtc_erc20",
- "fname": "Wrapped Bitcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Wrapped Bitcoin",
- "links": {
- "github": "https://github.com/WrappedBTC",
- "homepage": "https://wbtc.network"
- }
- },
- {
- "coin": "WBTC-PLG20",
- "name": "wbtc_plg20",
- "fname": "Wrapped Bitcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "WLD-ERC20",
- "name": "wld_erc20",
- "fname": "Worldcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x163f8C2467924be0ae7B5347228CABF260318753"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "WOO-ERC20",
- "name": "woo_erc20",
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "WOO-AVX20",
- "name": "woo_avx20",
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "WOO-BEP20",
- "name": "woo_bep20",
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "WOO-FTM20",
- "name": "woo_ftm20",
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "WOO-PLG20",
- "name": "woo_plg20",
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "XCN-ERC20",
- "name": "xcn_erc20",
- "fname": "Onyxcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "XCN-BEP20",
- "name": "xcn_bep20",
- "fname": "Onyxcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "XEP-segwit",
- "name": "xep",
- "fname": "Electra Protocol",
- "rpcport": 16816,
- "pubtype": 55,
- "p2shtype": 137,
- "wiftype": 162,
- "txversion": 2,
- "txfee": 100000,
- "mm2": 1,
- "segwit": true,
- "signature_version": "witness_v0",
- "bech32_hrp": "ep",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "XEP",
- "required_confirmations": 4,
- "avg_blocktime": 80,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/597'"
- },
- {
- "coin": "XEP-BEP20",
- "name": "xep_bep20",
- "fname": "Electra Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb897D0a0f68800f8Be7D69ffDD1c24b69f57Bf3e"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "XIDR-ERC20",
- "name": "xidr_erc20",
- "fname": "StraitsX Indonesian Rupiah",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "XIDR-PLG20",
- "name": "xidr_plg20",
- "fname": "StraitsX Indonesian Rupiah",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2c826035c1C36986117A0e949bD6ad4baB54afE2"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "XLM-BEP20",
- "name": "xlm_bep20",
- "fname": "Stellar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x43C934A845205F0b514417d757d7235B8f53f1B9"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "XMY",
- "name": "myriadcoin",
- "fname": "Myriad",
- "rpcport": 8332,
- "pubtype": 50,
- "p2shtype": 9,
- "wiftype": 178,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "my",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 3,
- "avg_blocktime": 240,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/90'"
- },
- {
- "coin": "XMY-segwit",
- "name": "myriadcoin",
- "fname": "Myriad",
- "rpcport": 8332,
- "pubtype": 50,
- "p2shtype": 9,
- "wiftype": 178,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "my",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "XMY",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 240,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/90'"
- },
- {
- "coin": "XNA",
- "name": "neurai",
- "fname": "Neurai",
- "sign_message_prefix": "Neurai Signed Message:\n",
- "rpcport": 19001,
- "pubtype": 53,
- "p2shtype": 117,
- "wiftype": 128,
- "segwit": true,
- "txfee": 1000000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/0'",
- "links": {
- "github": "https://github.com/NeuraiProject/Neurai",
- "homepage": "https://neurai.org"
- }
- },
- {
- "coin": "XPM",
- "name": "primecoin",
- "fname": "Primecoin",
- "rpcport": 8332,
- "pubtype": 23,
- "p2shtype": 83,
- "wiftype": 151,
- "txfee": 0,
- "dust": 1000000,
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/24'",
- "trezor_coin": "Primecoin",
- "links": {
- "github": "https://github.com/primecoin/primecoin",
- "homepage": "https://primecoin.io"
- }
- },
- {
- "coin": "XRG",
- "name": "ergon",
- "fname": "Ergon",
- "rpcport": 2137,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "ergon"
- },
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/2137'"
- },
- {
- "coin": "XRP-BEP20",
- "name": "xrp_bep20",
- "fname": "XRP",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "XRP-ERC20",
- "name": "xrp_erc20",
- "fname": "XRP",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x39fBBABf11738317a448031930706cd3e612e1B9"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "XSGD-ERC20",
- "name": "xsgd_erc20",
- "fname": "StraitsX Singapore Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Singapore-Dollar Backed Stablecoin",
- "links": {
- "github": "https://github.com/Xfers/StraitsX-tokens",
- "homepage": "https://xfers.com/sg/stablecoin"
- }
- },
- {
- "coin": "XSGD-PLG20",
- "name": "xsgd_plg20",
- "fname": "StraitsX Singapore Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xDC3326e71D45186F113a2F448984CA0e8D201995"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "XTZ-BEP20",
- "name": "xtz_bep20",
- "fname": "Tezos",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x16939ef78684453bfDFb47825F8a5F714f12623a"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "XVC",
- "name": "vanillacash",
- "fname": "VanillaCash",
- "isPoS": 1,
- "rpcport": 48888,
- "pubtype": 18,
- "p2shtype": 30,
- "wiftype": 181,
- "txfee": 1000,
- "dust": 10000,
- "mm2": 1,
- "required_confirmations": 7,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "XVC-BEP20",
- "name": "xvc_bep20",
- "fname": "VanillaCash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xeBbfB9E5aF3172C7C0e1D4ff7106A8Bbb961F87B"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "XVC-QRC20",
- "name": "qtum",
- "fname": "VanillaCash",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x4cdaa46741af44c68179c54c4fcb02c2bf646d30"
- }
- },
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "XVG",
- "name": "VERGE",
- "fname": "Verge",
- "isPoS": 1,
- "sign_message_prefix": "VERGE Signed Message:\n",
- "rpcport": 20102,
- "pubtype": 30,
- "p2shtype": 33,
- "wiftype": 158,
- "decimals": 6,
- "segwit": true,
- "bech32_hrp": "vg",
- "txfee": 400000,
- "dust": 400000,
- "force_min_relay_fee": true,
- "mm2": 1,
- "required_confirmations": 10,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/77'"
- },
- {
- "coin": "XVS-BEP20",
- "name": "xvs_bep20",
- "fname": "Venus",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "YFI-AVX20",
- "name": "yfi_avx20",
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "YFI-BEP20",
- "name": "yfi_bep20",
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "YFI-ERC20",
- "name": "yfi_erc20",
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "yearn.finance",
- "links": {
- "github": "https://github.com/iearn-finance",
- "homepage": "https://yearn.finance/"
- }
- },
- {
- "coin": "YFI-FTM20",
- "name": "yfi_ftm20",
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69"
- }
- },
- "derivation_path": "m/44'/1007'"
- },
- {
- "coin": "YFI-KRC20",
- "name": "yfi_krc20",
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xdfa3Ef49d357c6b0B2DfBB88701af2b7A053fD0A"
- }
- },
- "derivation_path": "m/44'/641'"
- },
- {
- "coin": "YFI-PLG20",
- "name": "yfi_plg20",
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xDA537104D6A5edd53c6fBba9A898708E465260b6"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "YFII-BEP20",
- "name": "yfii_bep20",
- "fname": "DFI.Money",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "YFII-ERC20",
- "name": "yfii_erc20",
- "fname": "DFI.Money",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "YFII.finance",
- "links": {
- "github": "https://github.com/yfii/vault",
- "homepage": "https://dfi.money/"
- }
- },
- {
- "coin": "ZEC",
- "name": "zcash",
- "fname": "Zcash",
- "sign_message_prefix": "Zcash Signed Message:\n",
- "rpcport": 8232,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "segwit": true,
- "txversion": 4,
- "overwintered": 1,
- "version_group_id": "0x892f2085",
- "consensus_branch_id": "0xc2d6d0b4",
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 75,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/133'",
- "trezor_coin": "Zcash",
- "links": {
- "github": "https://github.com/zcash/zcash",
- "homepage": "https://z.cash"
- }
- },
- {
- "coin": "ZER",
- "name": "zero",
- "fname": "Zero",
- "rpcport": 23811,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "txversion": 4,
- "overwintered": 1,
- "version_group_id": "0x892f2085",
- "consensus_branch_id": "0x7361707a",
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/323'"
- },
- {
- "coin": "ZER-BEP20",
- "name": "zer_bep20",
- "fname": "Zero",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x530e9346870E632A63E8d461bb3c3622e00782DE"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ZET",
- "name": "zetacoin",
- "fname": "Zetacoin",
- "sign_message_prefix": "Zetacoin Signed Message:\n",
- "isPoS": 1,
- "rpcport": 22014,
- "pubtype": 20,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 500,
- "required_confirmations": 7,
- "avg_blocktime": 45,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "ZIL-BEP20",
- "name": "zil_bep20",
- "fname": "Zilliqa",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ZRX-AVX20",
- "name": "zrx_avx20",
- "fname": "0x",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2"
- }
- },
- "derivation_path": "m/44'/9000'"
- },
- {
- "coin": "ZRX-ERC20",
- "name": "zrx_erc20",
- "fname": "0x",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xE41d2489571d322189246DaFA5ebDe1F4699F498"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "0x Project",
- "links": {
- "github": "https://github.com/0xProject",
- "homepage": "https://0xproject.com"
- }
- },
- {
- "coin": "ZRX-PLG20",
- "name": "zrx_plg20",
- "fname": "0x",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5559Edb74751A0edE9DeA4DC23aeE72cCA6bE3D5"
- }
- },
- "derivation_path": "m/44'/966'"
- },
- {
- "coin": "INK-QRC20",
- "name": "qtum",
- "fname": "INK",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xfe59cbc1704e89a698571413a81f0de9d8f00c69"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 9,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "FLUX",
- "name": "flux",
- "fname": "Flux",
- "rpcport": 16124,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "txversion": 4,
- "overwintered": 1,
- "version_group_id": "0x892f2085",
- "consensus_branch_id": "0x76b809bb",
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/19167'"
- },
- {
- "coin": "FLUX-ERC20",
- "name": "flux_erc20",
- "fname": "Flux",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x720CD16b011b987Da3518fbf38c3071d4F0D1495"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "FLUX-BEP20",
- "name": "flux_bep20",
- "fname": "Flux",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xaFF9084f2374585879e8B434C399E29E80ccE635"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "HPY-QRC20",
- "name": "qtum",
- "fname": "HyperPay",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xf2703e93f87b846a7aacec1247beaec1c583daa4"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "HLC-QRC20",
- "name": "qtum",
- "fname": "HalalChain",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xb27d7bf95b03e02b55d5eb63d3f1692762101bf9"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 9,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "MED-QRC20",
- "name": "qtum",
- "fname": "Medibloc",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x2f65a0af11d50d2d15962db39d7f7b0619ed55ae"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "LSTR-QRC20",
- "name": "qtum",
- "fname": "Luna Stars",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x72e531e37c31ecbe336208fd66e93b48df3af420"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "QBT-QRC20",
- "name": "qtum",
- "fname": "Qbao",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x09800417b097c61b9fd26b3ddde4238304a110d5"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "TSL-QRC20",
- "name": "qtum",
- "fname": "Energo TSL",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xd8dec2b605005749abbf4b060edad3070e23cf5c"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 18,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "OC-QRC20",
- "name": "qtum",
- "fname": "OceanChain",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xf397f39ce992b0f5bdc7ec1109d676d07f7af2f9"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "PUT-QRC20",
- "name": "qtum",
- "fname": "Profile Utility Token",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x4060e21ac01b5c5d2a3f01cecd7cbf820f50be95"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'"
- },
- {
- "coin": "OKB-ERC20",
- "name": "okb_erc20",
- "fname": "OKB",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x75231F58b43240C9718Dd58B4967c5114342a86c"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "OKB",
- "links": {
- "github": "https://github.com/okex/okberc20token",
- "homepage": "https://www.okex.com/"
- }
- },
- {
- "coin": "SEELE-ERC20",
- "name": "seele_erc20",
- "fname": "Seele",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB1e93236ab6073fdAC58adA5564897177D4bcC43"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Seele",
- "links": {
- "homepage": "http://seele.pro"
- }
- },
- {
- "coin": "REV-ERC20",
- "name": "rev_erc20",
- "fname": "Revain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9"
- }
- },
- "decimals": 6,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Revain",
- "links": {
- "github": "https://github.com/Revain",
- "homepage": "https://revain.org"
- }
- },
- {
- "coin": "SNT-ERC20",
- "name": "snt_erc20",
- "fname": "Status",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Status Network Token",
- "links": {
- "github": "https://github.com/status-im",
- "homepage": "https://status.im"
- }
- },
- {
- "coin": "ANT-ERC20",
- "name": "ant_erc20",
- "fname": "Aragon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "BEST-ERC20",
- "name": "best_erc20",
- "fname": "Bitpanda Ecosystem",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F"
- }
- },
- "decimals": 8,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CVT-ERC20",
- "name": "cvt_erc20",
- "fname": "CyberVein",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBe428c3867F05deA2A89Fc76a102b544eaC7f772"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "CyberVein",
- "links": {
- "homepage": "http://www.cybervein.org"
- }
- },
- {
- "coin": "DX-ERC20",
- "name": "dx_erc20",
- "fname": "DxChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x973e52691176d36453868D9d86572788d27041A9"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "STORJ-ERC20",
- "name": "storj_erc20",
- "fname": "Storj",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC"
- }
- },
- "decimals": 8,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "STORJ",
- "links": {
- "github": "https://github.com/Storj",
- "homepage": "https://storj.io"
- }
- },
- {
- "coin": "TRAC-ERC20",
- "name": "trac_erc20",
- "fname": "OriginTrail",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "OriginTrail",
- "links": {
- "homepage": "https://origintrail.io"
- }
- },
- {
- "coin": "UBQ",
- "name": "ubiq",
- "fname": "Ubiq",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 8,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/108'",
- "trezor_coin": "Ubiq",
- "links": {
- "homepage": "https://ubiqsmart.com"
- }
- },
- {
- "coin": "PNK-ERC20",
- "name": "pnk_erc20",
- "fname": "Kleros",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Pinakion",
- "links": {
- "github": "https://github.com/kleros",
- "homepage": "https://kleros.io"
- }
- },
- {
- "coin": "SKL-ERC20",
- "name": "skl_erc20",
- "fname": "SKALE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "CVC-ERC20",
- "name": "cvc_erc20",
- "fname": "Civic",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x41e5560054824eA6B0732E656E3Ad64E20e94E45"
- }
- },
- "decimals": 8,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Civic",
- "links": {
- "homepage": "https://www.civic.com"
- }
- },
- {
- "coin": "UTK-ERC20",
- "name": "utk_erc20",
- "fname": "Utrust",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Utrust",
- "links": {
- "github": "https://github.com/utrustdev/",
- "homepage": "https://utrust.com"
- }
- },
- {
- "coin": "MLN-ERC20",
- "name": "mln_erc20",
- "fname": "Enzyme",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xec67005c4E498Ec7f55E092bd1d35cbC47C91892"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "XOR-ERC20",
- "name": "xor_erc20",
- "fname": "Sora",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x40FD72257597aA14C7231A7B1aaa29Fce868F677"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "UQC-ERC20",
- "name": "uqc_erc20",
- "fname": "Uquid Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Uquid Coin",
- "links": {
- "homepage": "https://uquidcoin.com"
- }
- },
- {
- "coin": "UOS-ERC20",
- "name": "uos_erc20",
- "fname": "Ultra",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c"
- }
- },
- "decimals": 4,
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "SHR-ERC20",
- "name": "shr_erc20",
- "fname": "Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xd98F75b1A3261dab9eEd4956c93F33749027a964"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "SHR-BEP20",
- "name": "shr_bep20",
- "fname": "Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5fb4968fC85868DF3aD2d6e59883a10570f01D18"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "S4F-ERC20",
- "name": "s4f_erc20",
- "fname": "S4FE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a"
- }
- },
- "derivation_path": "m/44'/60'"
- },
- {
- "coin": "S4F-BEP20",
- "name": "s4f_bep20",
- "fname": "S4FE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x788D2780992222360f674cc12C36478870b8E6ED"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "tBCH",
- "name": "Bitcoin Cash Testnet",
- "fname": "Bitcoin Cash Testnet",
- "is_testnet": true,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "txfee": 0,
- "estimate_fee_blocks": 2,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "bchtest"
- },
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "BCH",
- "protocol_data": {
- "slp_prefix": "slptest"
- }
- }
- },
- {
- "coin": "UFO",
- "name": "ufo",
- "fname": "Uniform Fiscal Object",
- "sign_message_prefix": "UFO Signed Message:\n",
- "rpcport": 8087,
- "pubtype": 27,
- "p2shtype": 68,
- "wiftype": 155,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "uf",
- "mm2": 1,
- "required_confirmations": 6,
- "avg_blocktime": 1.5,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/202'",
- "links": {
- "github": "https://github.com/fiscalobject/ufo",
- "homepage": "https://ufobject.com"
- }
- },
- {
- "coin": "USBL",
- "name": "bitdollar",
- "fname": "Balanced Dollar",
- "confpath": "USERHOME/.bitdollar/bitdollar.conf",
- "rpcport": 35573,
- "pubtype": 65,
- "p2shtype": 66,
- "wiftype": 193,
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "USDF",
- "fname": "Fake USD",
- "is_testnet": true,
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 4,
- "token_id": "bb309e48930671582bea508f9a1d9b491e49b69be3d6f372dc08da2ac6e90eb7",
- "platform": "tBCH",
- "required_confirmations": 1,
- "slp_prefix": "slptest"
- }
- },
- "mm2": 1
- },
- {
- "coin": "WHIVE",
- "name": "whive",
- "fname": "Whive",
- "rpcport": 1867,
- "pubtype": 73,
- "p2shtype": 10,
- "wiftype": 128,
- "txfee": 0,
- "dust": 1000,
- "segwit": true,
- "bech32_hrp": "wv",
- "mm2": 1,
- "wallet_only": true,
- "required_confirmations": 1,
- "mature_confirmations": 100,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "WHIVE-segwit",
- "name": "whive",
- "fname": "Whive",
- "rpcport": 1867,
- "pubtype": 73,
- "p2shtype": 10,
- "wiftype": 128,
- "txfee": 0,
- "dust": 1000,
- "segwit": true,
- "bech32_hrp": "wv",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "WHIVE",
- "mm2": 1,
- "required_confirmations": 1,
- "mature_confirmations": 100,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "XEC",
- "name": "xec",
- "fname": "eCash",
- "rpcport": 8332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 0,
- "estimate_fee_blocks": 2,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "ecash"
- },
- "mm2": 1,
- "decimals": 2,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/1899'"
- },
- {
- "coin": "SIBM-BEP20",
- "name": "sibm_bep20",
- "fname": "SibMining",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xee8EE60503fd0a735cC972A08E3a5B2026DDCe47"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "VOTE2023",
- "asset": "VOTE2023",
- "fname": "VOTE2023",
- "wallet_only": true,
- "rpcport": 25435,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "required_confirmations": 1,
- "requires_notarization": false,
- "avg_blocktime": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "ZOMBIE",
- "asset": "ZOMBIE",
- "fname": "Zombie",
- "txversion": 4,
- "overwintered": 1,
- "avg_blocktime": 60,
- "mm2": 1,
- "protocol": {
- "type": "ZHTLC",
- "protocol_data": {
- "consensus_params": {
- "overwinter_activation_height": 0,
- "sapling_activation_height": 1,
- "blossom_activation_height": null,
- "heartwood_activation_height": null,
- "canopy_activation_height": null,
- "coin_type": 133,
- "hrp_sapling_extended_spending_key": "secret-extended-key-main",
- "hrp_sapling_extended_full_viewing_key": "zxviews",
- "hrp_sapling_payment_address": "zs",
- "b58_pubkey_address_prefix": [
- 28,
- 184
- ],
- "b58_script_address_prefix": [
- 28,
- 189
- ]
- }
- }
- },
- "required_confirmations": 3
- },
- {
- "coin": "ZINU-BEP20",
- "name": "zinu_bep20",
- "fname": "Zombie Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x21F9B5b2626603e3F40bfc13d01AfB8c431D382F"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "RUNES",
- "name": "runebase",
- "fname": "Runebase",
- "rpcport": 9432,
- "pubtype": 61,
- "p2shtype": 123,
- "wiftype": 216,
- "txfee": 5000000,
- "dust": 400000,
- "mature_confirmations": 120,
- "segwit": true,
- "bech32_hrp": "rc",
- "mm2": 1,
- "required_confirmations": 6,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- }
- },
- {
- "coin": "ACTN",
- "asset": "ACTN",
- "fname": "Action Coin",
- "sign_message_prefix": "Komodo Signed Message:\n",
- "rpcport": 51677,
- "txversion": 4,
- "overwintered": 1,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo"
- },
- {
- "coin": "ACTN-BEP20",
- "name": "actn_bep20",
- "fname": "Action Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xD7380b10bF3886B34Ab3422DEa42E408850375CA"
- }
- },
- "derivation_path": "m/44'/714'"
- },
- {
- "coin": "ATOM",
- "avg_blocktime": 7,
- "name": "cosmos",
- "fname": "Cosmos",
- "mm2": 1,
- "wallet_only": true,
- "protocol": {
- "type": "TENDERMINT",
- "protocol_data": {
- "decimals": 6,
- "denom": "uatom",
- "account_prefix": "cosmos",
- "chain_id": "cosmoshub-4"
- }
- },
- "derivation_path": "m/44'/118'"
- },
- {
- "coin": "IRIS",
- "avg_blocktime": 7,
- "name": "iris",
- "fname": "Iris",
- "mm2": 1,
- "protocol": {
- "type": "TENDERMINT",
- "protocol_data": {
- "decimals": 6,
- "denom": "uiris",
- "account_prefix": "iaa",
- "chain_id": "irishub-1",
- "gas_price": 0.5
- }
- },
- "derivation_path": "m/44'/566'"
- },
- {
- "coin": "OSMO",
- "avg_blocktime": 7,
- "name": "osmosis",
- "fname": "Osmosis",
- "mm2": 1,
- "wallet_only": true,
- "protocol": {
- "type": "TENDERMINT",
- "protocol_data": {
- "decimals": 6,
- "denom": "uosmo",
- "account_prefix": "osmo",
- "chain_id": "osmosis-1",
- "gas_price": 0.5
- }
- }
- },
- {
- "coin": "ATOM-IBC_IRIS",
- "name": "cosmos_ibc_iris",
- "fname": "Cosmos IBC-IRIS",
- "avg_blocktime": 7,
- "mm2": 1,
- "protocol": {
- "type": "TENDERMINTTOKEN",
- "protocol_data": {
- "platform": "IRIS",
- "decimals": 6,
- "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
- "gas_price": 0.5
- }
- },
- "derivation_path": "m/44'/566'"
- },
- {
- "coin": "MAZA",
- "name": "mazacoin",
- "fname": "MazaCoin",
- "sign_message_prefix": "Mazacoin Signed Message:\n",
- "rpcport": 12832,
- "pubtype": 50,
- "p2shtype": 9,
- "wiftype": 244,
- "decimals": 8,
- "signature_version": "base",
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "maza",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/13'",
- "links": {
- "github": "https://github.com/Mazacoin",
- "homepage": "https://www.mazacoin.org"
- }
- },
- {
- "coin": "CRNC",
- "name": "crioniccoin",
- "fname": "CrionicCoin",
- "sign_message_prefix": "Crioniccoin Signed Message:\n",
- "rpcport": 4466,
- "pubtype": 28,
- "p2shtype": 45,
- "wiftype": 176,
- "decimals": 8,
- "signature_version": "base",
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "crnc",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 20,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/192'",
- "links": {
- "github": "https://github.com/diabaths/Crionic-Coin",
- "homepage": "https://coin.crionic.org"
- }
- },
- {
- "coin": "EVR",
- "name": "evrmore",
- "fname": "Evrmore Coin",
- "sign_message_prefix": "Evrmore Signed Message:\n",
- "rpcport": 8819,
- "pubtype": 33,
- "p2shtype": 92,
- "wiftype": 128,
- "segwit": true,
- "txfee": 1000000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/175'",
- "links": {
- "github": "https://github.com/EvrmoreOrg/Evrmore",
- "homepage": "https://evrmorecoin.org"
- }
- },
- {
- "coin": "BKC",
- "name": "bunkercoin",
- "fname": "Bunkercoin",
- "sign_message_prefix": "Bunkercoin Signed Message:\n",
- "rpcport": 22555,
- "pubtype": 25,
- "p2shtype": 22,
- "wiftype": 158,
- "txfee": 1000000,
- "force_min_relay_fee": true,
- "dust": 1000000,
- "mm2": 1,
- "required_confirmations": 10,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/3'",
- "links": {
- "github": "https://github.com/bunkercoin/bunkercoin",
- "homepage": "https://bunkercoin.org"
- }
- },
- {
- "coin": "KIIRO",
- "name": "kiiro",
- "fname": "Kiiro",
- "sign_message_prefix": "Zcoin Signed Message:\n",
- "rpcport": 8999,
- "pubtype": 45,
- "p2shtype": 7,
- "wiftype": 210,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/kiirocoin/kiiro",
- "homepage": "https://kiirocoin.org"
- }
- },
- {
- "coin": "KIIRO-BEP20",
- "name": "kiiro_bep20",
- "fname": "Kiiro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x347862372f7C8f83D69025234367Ac11c5241Db3"
- }
- },
- "derivation_path": "m/44'/714'"
- }
-]
diff --git a/assets/coins_ci.json b/assets/coins_ci.json
new file mode 100644
index 000000000..5694b854e
--- /dev/null
+++ b/assets/coins_ci.json
@@ -0,0 +1,13 @@
+{
+ "bundled_coins_repo_commit": "bb2c35bbc5b29bc64148a015bfeb92ca65cebc8c",
+ "coins_repo_url": "https://api.github.com/repos/KomodoPlatform/coins",
+ "coins_repo_branch": "master",
+ "runtime_updates_enabled": true,
+ "mapped_files": {
+ "assets/coins_config.json": "utils/coins_config.json",
+ "assets/coins.json": "coins"
+ },
+ "mapped_folders": {
+ "assets/coin-icons/": "icons/"
+ }
+}
\ No newline at end of file
diff --git a/assets/coins_config.json b/assets/coins_config.json
deleted file mode 100644
index d6382ace9..000000000
--- a/assets/coins_config.json
+++ /dev/null
@@ -1,41249 +0,0 @@
-{
- "1INCH-AVX20": {
- "coin": "1INCH-AVX20",
- "type": "AVX-20",
- "name": "1Inch",
- "coinpaprika_id": "1inch-1inch",
- "coingecko_id": "1inch",
- "livecoinwatch_id": "1INCH",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xd501281565bf7789224523144Fe5D98e8B28f267"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xd501281565bf7789224523144Fe5D98e8B28f267",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ILNF-PLG20": {
- "coin": "ILNF-PLG20",
- "type": "Matic",
- "name": "Ilien Fuel",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ilien Fuel",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xaFf5Ed00c57b0E0c22123dbA28Cb6A5B26651Bbd"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xaFf5Ed00c57b0E0c22123dbA28Cb6A5B26651Bbd",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ILNF-BEP20": {
- "coin": "ILNF-BEP20",
- "type": "BEP-20",
- "name": "Ilien Fuel",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ilien Fuel",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0D6e16c7066421607F8D334D6C02A48031fc2Eba"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x0D6e16c7066421607F8D334D6C02A48031fc2Eba",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "1INCH-BEP20": {
- "coin": "1INCH-BEP20",
- "type": "BEP-20",
- "name": "1Inch",
- "coinpaprika_id": "1inch-1inch",
- "coingecko_id": "1inch",
- "livecoinwatch_id": "1INCH",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "1INCH-ERC20": {
- "coin": "1INCH-ERC20",
- "type": "ERC-20",
- "name": "1Inch",
- "coinpaprika_id": "1inch-1inch",
- "coingecko_id": "1inch",
- "livecoinwatch_id": "1INCH",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "1INCH-KRC20": {
- "coin": "1INCH-KRC20",
- "type": "KRC-20",
- "name": "1Inch",
- "coinpaprika_id": "1inch-1inch",
- "coingecko_id": "1inch",
- "livecoinwatch_id": "1INCH",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x79f3244F3FFd7500A31a90Bb83C7D56649c2C7C5"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x79f3244F3FFd7500A31a90Bb83C7D56649c2C7C5",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "1INCH-PLG20": {
- "coin": "1INCH-PLG20",
- "type": "Matic",
- "name": "1Inch",
- "coinpaprika_id": "1inch-1inch",
- "coingecko_id": "1inch",
- "livecoinwatch_id": "1INCH",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "1Inch",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PGX-PLG20": {
- "coin": "PGX-PLG20",
- "type": "Matic",
- "name": "Pegaxy Stone",
- "coinpaprika_id": "",
- "coingecko_id": "pegaxy-stone",
- "livecoinwatch_id": "PGX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Pegaxy Stone",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AAVE-AVX20": {
- "coin": "AAVE-AVX20",
- "type": "AVX-20",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AAVE-BEP20": {
- "coin": "AAVE-BEP20",
- "type": "BEP-20",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xfb6115445Bff7b52FeB98650C87f44907E58f802"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xfb6115445Bff7b52FeB98650C87f44907E58f802",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "AAVE-ERC20": {
- "coin": "AAVE-ERC20",
- "type": "ERC-20",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Aave",
- "links": {
- "github": "https://github.com/aave",
- "homepage": "https://aave.com/ "
- },
- "contract_address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AAVE-FTM20": {
- "coin": "AAVE-FTM20",
- "type": "FTM-20",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AAVE-HCO20": {
- "coin": "AAVE-HCO20",
- "type": "HecoChain",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AAVE-KRC20": {
- "coin": "AAVE-KRC20",
- "type": "KRC-20",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xE76e97C157658004eE22e01C03a5e21A4655A2Fd"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xE76e97C157658004eE22e01C03a5e21A4655A2Fd",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AAVE-PLG20": {
- "coin": "AAVE-PLG20",
- "type": "Matic",
- "name": "AAVE",
- "coinpaprika_id": "aave-new",
- "coingecko_id": "aave",
- "livecoinwatch_id": "AAVE",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AAVE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ABY": {
- "coin": "ABY",
- "type": "UTXO",
- "name": "ArtByte",
- "coinpaprika_id": "aby-artbyte",
- "coingecko_id": "artbyte",
- "livecoinwatch_id": "ABY",
- "explorer_url": "https://chainz.cryptoid.info/aby/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ArtByte",
- "isPoS": 1,
- "rpcport": 9262,
- "pubtype": 28,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 550,
- "required_confirmations": 7,
- "avg_blocktime": 45,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "elec-seeder-one.artbytecoin.org:50012",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "elec-seeder-one.artbytecoin.org:50013"
- },
- {
- "url": "elec-seeder-two.artbytecoin.org:50012",
- "protocol": "SSL",
- "ws_url": "elec-seeder-two.artbytecoin.org:50013"
- },
- {
- "url": "electrumx-three.artbyte.live:50012",
- "protocol": "SSL",
- "ws_url": "electrumx-three.artbyte.live:50013"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "ADA-BEP20": {
- "coin": "ADA-BEP20",
- "type": "BEP-20",
- "name": "Cardano",
- "coinpaprika_id": "ada-cardano",
- "coingecko_id": "cardano",
- "livecoinwatch_id": "ADA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Cardano",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ADX-BEP20": {
- "coin": "ADX-BEP20",
- "type": "BEP-20",
- "name": "AdEx",
- "coinpaprika_id": "adx-adex",
- "coingecko_id": "adex",
- "livecoinwatch_id": "ADX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AdEx",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ADX-ERC20": {
- "coin": "ADX-ERC20",
- "type": "ERC-20",
- "name": "AdEx",
- "coinpaprika_id": "adx-adex",
- "coingecko_id": "adex",
- "livecoinwatch_id": "ADX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AdEx",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "AdEx Network",
- "links": {
- "github": "https://github.com/AdExNetwork",
- "homepage": "https://www.adex.network"
- },
- "contract_address": "0xADE00C28244d5CE17D72E40330B1c318cD12B7c3",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AGEUR-AVX20": {
- "coin": "AGEUR-AVX20",
- "type": "AVX-20",
- "name": "agEUR",
- "coinpaprika_id": "",
- "coingecko_id": "ageur",
- "livecoinwatch_id": "EUR",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "agEUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xAEC8318a9a59bAEb39861d10ff6C7f7bf1F96C57"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xAEC8318a9a59bAEb39861d10ff6C7f7bf1F96C57",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AGEUR-ERC20": {
- "coin": "AGEUR-ERC20",
- "type": "ERC-20",
- "name": "agEUR",
- "coinpaprika_id": "ageur-ageur",
- "coingecko_id": "ageur",
- "livecoinwatch_id": "EUR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "agEUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AGEUR-PLG20": {
- "coin": "AGEUR-PLG20",
- "type": "Matic",
- "name": "agEUR",
- "coinpaprika_id": "",
- "coingecko_id": "ageur",
- "livecoinwatch_id": "EUR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "agEUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AGIX-ERC20": {
- "coin": "AGIX-ERC20",
- "type": "ERC-20",
- "name": "SingularityNET",
- "coinpaprika_id": "agix-singularitynet",
- "coingecko_id": "singularitynet",
- "livecoinwatch_id": "AGIX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SingularityNET",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x5B7533812759B45C2B44C19e320ba2cD2681b542"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x5B7533812759B45C2B44C19e320ba2cD2681b542",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AGIX-PLG20": {
- "coin": "AGIX-PLG20",
- "type": "Matic",
- "name": "SingularityNET",
- "coinpaprika_id": "agix-singularitynet",
- "coingecko_id": "singularitynet",
- "livecoinwatch_id": "AGIX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SingularityNET",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x190Eb8a183D22a4bdf278c6791b152228857c033"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x190Eb8a183D22a4bdf278c6791b152228857c033",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ANKR-BEP20": {
- "coin": "ANKR-BEP20",
- "type": "BEP-20",
- "name": "Ankr",
- "coinpaprika_id": "ankr-ankr-network",
- "coingecko_id": "ankr",
- "livecoinwatch_id": "ANKR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ankr",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xf307910A4c7bbc79691fD374889b36d8531B08e3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xf307910A4c7bbc79691fD374889b36d8531B08e3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ANKR-ERC20": {
- "coin": "ANKR-ERC20",
- "type": "ERC-20",
- "name": "Ankr",
- "coinpaprika_id": "ankr-ankr-network",
- "coingecko_id": "ankr",
- "livecoinwatch_id": "ANKR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ankr",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ANKR-PLG20": {
- "coin": "ANKR-PLG20",
- "type": "Matic",
- "name": "Ankr",
- "coinpaprika_id": "ankr-ankr-network",
- "coingecko_id": "ankr",
- "livecoinwatch_id": "ANKR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ankr",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "APE-ERC20": {
- "coin": "APE-ERC20",
- "type": "ERC-20",
- "name": "ApeCoin",
- "coinpaprika_id": "ape-apecoin",
- "coingecko_id": "apecoin",
- "livecoinwatch_id": "APE",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4d224452801ACEd8B2F0aebE155379bb5D594381"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x4d224452801ACEd8B2F0aebE155379bb5D594381",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "APE-BEP20": {
- "coin": "APE-BEP20",
- "type": "BEP-20",
- "name": "ApeCoin",
- "coinpaprika_id": "ape-apecoin",
- "coingecko_id": "apecoin",
- "livecoinwatch_id": "APE",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xC762043E211571eB34f1ef377e5e8e76914962f9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xC762043E211571eB34f1ef377e5e8e76914962f9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "APE-FTM20": {
- "coin": "APE-FTM20",
- "type": "FTM-20",
- "name": "ApeCoin",
- "coinpaprika_id": "ape-apecoin",
- "coingecko_id": "apecoin",
- "livecoinwatch_id": "APE",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x2d72A97a31Dc920dB03330780d30074626e39C8A"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x2d72A97a31Dc920dB03330780d30074626e39C8A",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "APE-PLG20": {
- "coin": "APE-PLG20",
- "type": "Matic",
- "name": "ApeCoin",
- "coinpaprika_id": "ape-apecoin",
- "coingecko_id": "apecoin",
- "livecoinwatch_id": "APE",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ApeCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xB7b31a6BC18e48888545CE79e83E06003bE70930"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xB7b31a6BC18e48888545CE79e83E06003bE70930",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ARPA-BEP20": {
- "coin": "ARPA-BEP20",
- "type": "BEP-20",
- "name": "ARPA Chain",
- "coinpaprika_id": "arpa-arpa-chain",
- "coingecko_id": "arpa",
- "livecoinwatch_id": "ARPA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ARPA Chain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ARPA-ERC20": {
- "coin": "ARPA-ERC20",
- "type": "ERC-20",
- "name": "ARPA Chain",
- "coinpaprika_id": "arpa-arpa-chain",
- "coingecko_id": "arpa",
- "livecoinwatch_id": "ARPA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ARPA Chain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBA50933C268F567BDC86E1aC131BE072C6B0b71a"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xBA50933C268F567BDC86E1aC131BE072C6B0b71a",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ARPA-PLG20": {
- "coin": "ARPA-PLG20",
- "type": "Matic",
- "name": "ARPA Chain",
- "coinpaprika_id": "",
- "coingecko_id": "arpa",
- "livecoinwatch_id": "ARPA",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ARPA Chain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ARRR": {
- "coin": "ARRR",
- "type": "ZHTLC",
- "name": "Pirate",
- "coinpaprika_id": "arrr-pirate",
- "coingecko_id": "pirate-chain",
- "livecoinwatch_id": "ARRR",
- "explorer_url": "https://pirate.komodo.earth/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "light_wallet_d_servers": [
- "https://pirate.spyglass.quest:9447",
- "https://lightd1.pirate.black:443",
- "https://piratelightd1.cryptoforge.cc:443",
- "https://piratelightd2.cryptoforge.cc:443",
- "https://piratelightd3.cryptoforge.cc:443",
- "https://piratelightd4.cryptoforge.cc:443",
- "https://electrum1.cipig.net:9447",
- "https://electrum2.cipig.net:9447",
- "https://electrum3.cipig.net:9447"
- ],
- "asset": "PIRATE",
- "fname": "Pirate",
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "avg_blocktime": 60,
- "protocol": {
- "type": "ZHTLC",
- "protocol_data": {
- "consensus_params": {
- "overwinter_activation_height": 152855,
- "sapling_activation_height": 152855,
- "blossom_activation_height": null,
- "heartwood_activation_height": null,
- "canopy_activation_height": null,
- "coin_type": 133,
- "hrp_sapling_extended_spending_key": "secret-extended-key-main",
- "hrp_sapling_extended_full_viewing_key": "zxviews",
- "hrp_sapling_payment_address": "zs",
- "b58_pubkey_address_prefix": [
- 28,
- 184
- ],
- "b58_script_address_prefix": [
- 28,
- 189
- ]
- },
- "check_point_block": {
- "height": 1900000,
- "time": 1652512363,
- "hash": "44797f3bb78323a7717007f1e289a3689e0b5b3433385dbd8e6f6a1700000000",
- "sapling_tree": "01e40c26f4a28071535b95ae637d30a209531e92a33de0a649e51183771025fd0f016cdc51442fcb328d047a709dc0f41e0173953404711045b3ef3036d7fd4151271501d6c94c5ce6787826af809aaee83768c4b7d4f02c8dc2d24cf60ed5f127a5d730018a752ea9d9efb3e1ac0e6e705ac9f7f9863cfa8f612ad43802175338d8d7cc6000000001fc3542434eff03075ea5f0a64f1dfb2f042d281b1a057e9f6c765b533ce51219013ad9484b1e901e62b93e7538f913dcb27695380c3bc579e79f5cc900f28e596e0001431da5f01fe11d58300134caf5ac76e0b1b7486fd02425dd8871bca4afa94d4b01bb39de1c1d10a25ce0cc775bc74b6b0f056c28639e7c5b7651bb8460060085530000000001732ddf661e68c9e335599bb0b18b048d2f1c06b20eabd18239ad2f3cc45fa910014496bab5eedab205b5f2a206bd1db30c5bc8bc0c1914a102f87010f3431be21a0000010b5fd8e7610754075f936463780e85841f3ab8ca2978f9afdf7c2c250f16a75f01db56bc66eb1cd54ec6861e5cf24af2f4a17991556a52ca781007569e95b9842401c03877ecdd98378b321250640a1885604d675aaa50380e49da8cfa6ff7deaf15"
- }
- }
- },
- "required_confirmations": 2,
- "requires_notarization": true,
- "checkpoint_height": 1900000,
- "checkpoint_blocktime": 1652512363,
- "electrum": [
- {
- "url": "electrum1.cipig.net:10008",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10008",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10008",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20008",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30008"
- },
- {
- "url": "electrum2.cipig.net:20008",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30008"
- },
- {
- "url": "electrum3.cipig.net:20008",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30008"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ARRR-BEP20": {
- "coin": "ARRR-BEP20",
- "type": "BEP-20",
- "name": "Pirate",
- "coinpaprika_id": "arrr-pirate",
- "coingecko_id": "pirate-chain",
- "livecoinwatch_id": "ARRR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Pirate",
- "rpcport": 80,
- "mm2": 1,
- "decimals": 8,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xCDAF240C90F989847c56aC9Dee754F76F41c5833"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xCDAF240C90F989847c56aC9Dee754F76F41c5833",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ATOM-BEP20": {
- "coin": "ATOM-BEP20",
- "type": "BEP-20",
- "name": "Cosmos",
- "coinpaprika_id": "atom-cosmos",
- "coingecko_id": "cosmos",
- "livecoinwatch_id": "ATOM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Cosmos",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "ATOM"
- },
- "ATOM-PLG20": {
- "coin": "ATOM-PLG20",
- "type": "Matic",
- "name": "Cosmos",
- "coinpaprika_id": "atom-cosmos",
- "coingecko_id": "cosmos",
- "livecoinwatch_id": "ATOM",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Cosmos",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xac51C4c48Dc3116487eD4BC16542e27B5694Da1b"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xac51C4c48Dc3116487eD4BC16542e27B5694Da1b",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ATOM"
- },
- "AUR": {
- "coin": "AUR",
- "type": "UTXO",
- "name": "Auroracoin",
- "coinpaprika_id": "aur-auroracoin",
- "coingecko_id": "auroracoin",
- "livecoinwatch_id": "AUR",
- "explorer_url": "https://chainz.cryptoid.info/aur/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "AuroraCoin Signed Message:\n",
- "fname": "Auroracoin",
- "rpcport": 12341,
- "pubtype": 23,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 5000,
- "segwit": false,
- "bech32_hrp": "aur",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/85'",
- "electrum": [
- {
- "url": "electrumx.aur.ewmcx.info:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "electrumx.aur.ewmcx.info:50003"
- },
- {
- "url": "failover.aur.ewmcx.biz:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "failover.aur.ewmcx.biz:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "AVA-BEP20_OLD": {
- "coin": "AVA-BEP20_OLD",
- "type": "BEP-20",
- "name": "Travala.com (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "AVA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Travala.com (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "AVA-ERC20": {
- "coin": "AVA-ERC20",
- "type": "ERC-20",
- "name": "AVA",
- "coinpaprika_id": "ava-travala",
- "coingecko_id": "concierge-io",
- "livecoinwatch_id": "AVA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AVA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AVAXT": {
- "coin": "AVAXT",
- "type": "AVX-20",
- "name": "Avalanche Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://cchain.explorer.avax-test.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Avalanche Testnet",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43113,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "protocol": {
- "type": "ETH"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://api.avax-test.network/ext/bc/C/rpc"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AVAX": {
- "coin": "AVAX",
- "type": "AVX-20",
- "name": "Avalanche",
- "coinpaprika_id": "avax-avalanche",
- "coingecko_id": "avalanche-2",
- "livecoinwatch_id": "AVAX",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Avalanche",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/9000'",
- "trezor_coin": "Avalanche C-Chain",
- "links": {
- "homepage": "https://www.avax.network/"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "AVAX"
- },
- "AVAX-BEP20": {
- "coin": "AVAX-BEP20",
- "type": "BEP-20",
- "name": "Avalanche",
- "coinpaprika_id": "avax-avalanche",
- "coingecko_id": "avalanche-2",
- "livecoinwatch_id": "AVAX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Avalanche",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "AVAX"
- },
- "AVN": {
- "coin": "AVN",
- "type": "UTXO",
- "name": "Avian",
- "coinpaprika_id": "avn-avian",
- "coingecko_id": "avian-network",
- "livecoinwatch_id": "_AVN",
- "explorer_url": "https://explorer-us.avn.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Avian",
- "rpcport": 7896,
- "pubtype": 60,
- "p2shtype": 122,
- "wiftype": 128,
- "segwit": false,
- "fork_id": "0x40",
- "signature_version": "base",
- "txfee": 1000000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/921'",
- "electrum": [
- {
- "url": "electrum-ca.avn.network:50001",
- "contact": [
- {
- "email": "contact@avn.network"
- }
- ]
- },
- {
- "url": "electrum-eu.avn.network:50001",
- "contact": [
- {
- "email": "contact@avn.network"
- }
- ]
- },
- {
- "url": "electrum-us.avn.network:50001",
- "contact": [
- {
- "email": "contact@avn.network"
- }
- ]
- },
- {
- "url": "electrum-ca.avn.network:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "contact@avn.network"
- }
- ],
- "ws_url": "electrum-ca.avn.network:50003"
- },
- {
- "url": "electrum-eu.avn.network:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "contact@avn.network"
- }
- ],
- "ws_url": "electrum-eu.avn.network:50003"
- },
- {
- "url": "electrum-us.avn.network:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "contact@avn.network"
- }
- ],
- "ws_url": "electrum-us.avn.network:50003"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AVN-PLG20": {
- "coin": "AVN-PLG20",
- "type": "Matic",
- "name": "Avian",
- "coinpaprika_id": "avn-avian",
- "coingecko_id": "avian-network",
- "livecoinwatch_id": "_AVN",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Avian",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AWC-ERC20": {
- "coin": "AWC-ERC20",
- "type": "ERC-20",
- "name": "Atomic Wallet Coin",
- "coinpaprika_id": "awc-atomic-wallet-coin",
- "coingecko_id": "atomic-wallet-coin",
- "livecoinwatch_id": "AWC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Atomic Wallet Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaD22f63404f7305e4713CcBd4F296f34770513f4"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xaD22f63404f7305e4713CcBd4F296f34770513f4",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AXE": {
- "coin": "AXE",
- "type": "UTXO",
- "name": "Axe",
- "coinpaprika_id": "axe-axe",
- "coingecko_id": "axe",
- "livecoinwatch_id": "AXE",
- "explorer_url": "https://axe-explorer.arcpool.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Axe",
- "rpcport": 9337,
- "pubtype": 55,
- "p2shtype": 16,
- "wiftype": 204,
- "txfee": 10000,
- "confpath": "USERHOME/.axecore/axe.conf",
- "mm2": 1,
- "mature_confirmations": 101,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/4242'",
- "trezor_coin": "Axe",
- "links": {
- "github": "https://github.com/axerunners/axe",
- "homepage": "https://axerunners.com"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10057",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10057",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10057",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20057",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30057"
- },
- {
- "url": "electrum2.cipig.net:20057",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30057"
- },
- {
- "url": "electrum3.cipig.net:20057",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30057"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AXS-BEP20": {
- "coin": "AXS-BEP20",
- "type": "BEP-20",
- "name": "Axie Infinity",
- "coinpaprika_id": "axs-axie-infinity",
- "coingecko_id": "axie-infinity",
- "livecoinwatch_id": "AXS",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Axie Infinity",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "AXS-ERC20": {
- "coin": "AXS-ERC20",
- "type": "ERC-20",
- "name": "Axie Infinity",
- "coinpaprika_id": "axs-axie-infinity",
- "coingecko_id": "axie-infinity",
- "livecoinwatch_id": "AXS",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Axie Infinity",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Axie Infinity Shards",
- "links": {
- "github": "https://github.com/axieinfinity",
- "homepage": "https://axieinfinity.com/"
- },
- "contract_address": "0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "AYA": {
- "coin": "AYA",
- "type": "UTXO",
- "name": "Aryacoin",
- "coinpaprika_id": "aya-aryacoin",
- "coingecko_id": "aryacoin",
- "livecoinwatch_id": "AYA",
- "explorer_url": "https://explorer.aryacoin.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Aryacoin Signed Message:\n",
- "fname": "Aryacoin",
- "rpcport": 9332,
- "pubtype": 23,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/357'",
- "electrum": [
- {
- "url": "88.99.26.209:5151"
- }
- ],
- "explorer_block_url": "block/"
- },
- "AYA-BEP20": {
- "coin": "AYA-BEP20",
- "type": "BEP-20",
- "name": "Aryacoin",
- "coinpaprika_id": "",
- "coingecko_id": "aryacoin",
- "livecoinwatch_id": "AYA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Aryacoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x86e5775F5c46304939c40959812bC220dD1c0333"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x86e5775F5c46304939c40959812bC220dD1c0333",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BABYDOGE-BEP20": {
- "coin": "BABYDOGE-BEP20",
- "type": "BEP-20",
- "name": "Baby Doge Coin",
- "coinpaprika_id": "babydoge-baby-doge-coin",
- "coingecko_id": "baby-doge-coin",
- "livecoinwatch_id": "BABYDOGE",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Baby Doge Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xc748673057861a797275CD8A068AbB95A902e8de"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xc748673057861a797275CD8A068AbB95A902e8de",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BAL-BEP20": {
- "coin": "BAL-BEP20",
- "type": "BEP-20",
- "name": "Balancer",
- "coinpaprika_id": "bal-balancer",
- "coingecko_id": "balancer",
- "livecoinwatch_id": "BAL",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd4ed60d8368a92b5F1ca33aF61eF2A94714B2d46"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xd4ed60d8368a92b5F1ca33aF61eF2A94714B2d46",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BAL-ERC20": {
- "coin": "BAL-ERC20",
- "type": "ERC-20",
- "name": "Balancer",
- "coinpaprika_id": "bal-balancer",
- "coingecko_id": "balancer",
- "livecoinwatch_id": "BAL",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xba100000625a3754423978a60c9317c58a424e3D"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Balancer",
- "links": {
- "github": "https://github.com/balancer-labs",
- "homepage": "https://balancer.finance"
- },
- "contract_address": "0xba100000625a3754423978a60c9317c58a424e3D",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAL-KRC20": {
- "coin": "BAL-KRC20",
- "type": "KRC-20",
- "name": "Balancer",
- "coinpaprika_id": "bal-balancer",
- "coingecko_id": "balancer",
- "livecoinwatch_id": "BAL",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xFC31366Be1795c1Ff444b9fBF55759733aD4d26D"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xFC31366Be1795c1Ff444b9fBF55759733aD4d26D",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAL-PLG20": {
- "coin": "BAL-PLG20",
- "type": "Matic",
- "name": "Balancer",
- "coinpaprika_id": "bal-balancer",
- "coingecko_id": "balancer",
- "livecoinwatch_id": "BAL",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Balancer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BANANO-BEP20": {
- "coin": "BANANO-BEP20",
- "type": "BEP-20",
- "name": "Banano",
- "coinpaprika_id": "ban-banano",
- "coingecko_id": "banano",
- "livecoinwatch_id": "BAN",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Banano",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BAND-BEP20": {
- "coin": "BAND-BEP20",
- "type": "BEP-20",
- "name": "Band Protocol",
- "coinpaprika_id": "band-band-protocol",
- "coingecko_id": "band-protocol",
- "livecoinwatch_id": "BAND",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BAND-ERC20": {
- "coin": "BAND-ERC20",
- "type": "ERC-20",
- "name": "Band Protocol",
- "coinpaprika_id": "band-band-protocol",
- "coingecko_id": "band-protocol",
- "livecoinwatch_id": "BAND",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAND-FTM20": {
- "coin": "BAND-FTM20",
- "type": "FTM-20",
- "name": "Band Protocol",
- "coinpaprika_id": "band-band-protocol",
- "coingecko_id": "band-protocol",
- "livecoinwatch_id": "BAND",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAND-PLG20": {
- "coin": "BAND-PLG20",
- "type": "Matic",
- "name": "Band Protocol",
- "coinpaprika_id": "band-band-protocol",
- "coingecko_id": "band-protocol",
- "livecoinwatch_id": "BAND",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Band Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xA8b1E0764f85f53dfe21760e8AfE5446D82606ac"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xA8b1E0764f85f53dfe21760e8AfE5446D82606ac",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAT-AVX20": {
- "coin": "BAT-AVX20",
- "type": "AVX-20",
- "name": "Basic Attention Token",
- "coinpaprika_id": "bat-basic-attention-token",
- "coingecko_id": "basic-attention-token",
- "livecoinwatch_id": "BAT",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAT-ERC20": {
- "coin": "BAT-ERC20",
- "type": "ERC-20",
- "name": "Basic Attention Token",
- "coinpaprika_id": "bat-basic-attention-token",
- "coingecko_id": "basic-attention-token",
- "livecoinwatch_id": "BAT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Basic Attention Token",
- "links": {
- "homepage": "https://basicattentiontoken.org"
- },
- "contract_address": "0x0D8775F648430679A709E98d2b0Cb6250d2887EF",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAT-BEP20": {
- "coin": "BAT-BEP20",
- "type": "BEP-20",
- "name": "Basic Attention Token",
- "coinpaprika_id": "bat-basic-attention-token",
- "coingecko_id": "basic-attention-token",
- "livecoinwatch_id": "BAT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x101d82428437127bF1608F699CD651e6Abf9766E"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x101d82428437127bF1608F699CD651e6Abf9766E",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BAT-KRC20": {
- "coin": "BAT-KRC20",
- "type": "KRC-20",
- "name": "Basic Attention Token",
- "coinpaprika_id": "bat-basic-attention-token",
- "coingecko_id": "basic-attention-token",
- "livecoinwatch_id": "BAT",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x0bF46C86Ce3B904660aE85677EaA20B0C1b24064"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x0bF46C86Ce3B904660aE85677EaA20B0C1b24064",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BAT-PLG20": {
- "coin": "BAT-PLG20",
- "type": "Matic",
- "name": "Basic Attention Token",
- "coinpaprika_id": "bat-basic-attention-token",
- "coingecko_id": "basic-attention-token",
- "livecoinwatch_id": "BAT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Basic Attention Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x3Cef98bb43d732E2F285eE605a8158cDE967D219"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x3Cef98bb43d732E2F285eE605a8158cDE967D219",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BCH": {
- "coin": "BCH",
- "type": "UTXO",
- "name": "Bitcoin Cash",
- "coinpaprika_id": "bch-bitcoin-cash",
- "coingecko_id": "bitcoin-cash",
- "livecoinwatch_id": "BCH",
- "explorer_url": "https://blockchair.com/bitcoin-cash/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Bitcoin Signed Message:\n",
- "bchd_urls": [
- "https://bchd.dragonhound.info"
- ],
- "other_types": [
- "SLP"
- ],
- "fname": "Bitcoin Cash",
- "rpcport": 33333,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 1000,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "bitcoincash"
- },
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "BCH",
- "protocol_data": {
- "slp_prefix": "simpleledger"
- }
- },
- "derivation_path": "m/44'/145'",
- "trezor_coin": "Bitcoin Cash",
- "links": {
- "github": "https://github.com/Bitcoin-ABC/bitcoin-abc",
- "homepage": "https://www.bitcoincash.org"
- },
- "allow_slp_unsafe_conf": false,
- "slp_prefix": "simpleledger",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10055",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10055",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10055",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20055",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30055"
- },
- {
- "url": "electrum2.cipig.net:20055",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30055"
- },
- {
- "url": "electrum3.cipig.net:20055",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30055"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "BCH"
- },
- "USDT-SLP": {
- "coin": "USDT-SLP",
- "type": "SLP",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "9fc89d6b7d5be2eac0b3787c5b8236bca5de641b5bafafc8f450727b63615c11",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "9fc89d6b7d5be2eac0b3787c5b8236bca5de641b5bafafc8f450727b63615c11",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "TTT-SLP": {
- "coin": "TTT-SLP",
- "type": "SLP",
- "name": "Trinity Trust Token",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Trinity Trust Token",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 2,
- "token_id": "5321508197ffed321c5fc9a1427e5c68b31d2c1ec92ae1c495f8acb08d8d66cd",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "5321508197ffed321c5fc9a1427e5c68b31d2c1ec92ae1c495f8acb08d8d66cd",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "ASLP-SLP": {
- "coin": "ASLP-SLP",
- "type": "SLP",
- "name": "AtomicSLP",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "AtomicSLP",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 2,
- "token_id": "926894cbf50269b15c97559b9acfc1bd88cd5f20703313ce0ea0683ecdb40911",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "926894cbf50269b15c97559b9acfc1bd88cd5f20703313ce0ea0683ecdb40911",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "SPICE-SLP": {
- "coin": "SPICE-SLP",
- "type": "SLP",
- "name": "Spice",
- "coinpaprika_id": "spice-spice",
- "coingecko_id": "spice",
- "livecoinwatch_id": "",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Spice",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "4de69e374a8ed21cbddd47f2338cc0f479dc58daa2bbe11cd604ca488eca0ddf",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "4de69e374a8ed21cbddd47f2338cc0f479dc58daa2bbe11cd604ca488eca0ddf",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "FLEXUSD-ERC20": {
- "coin": "FLEXUSD-ERC20",
- "type": "ERC-20",
- "name": "flexUSD",
- "coinpaprika_id": "",
- "coingecko_id": "flex-usd",
- "livecoinwatch_id": "FLEXUSD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "flexUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa774FFB4AF6B0A91331C084E1aebAE6Ad535e6F3"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xa774FFB4AF6B0A91331C084E1aebAE6Ad535e6F3",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "FLEXUSD-SLP": {
- "coin": "FLEXUSD-SLP",
- "type": "SLP",
- "name": "FlexUSD",
- "coinpaprika_id": "",
- "coingecko_id": "flex-usd",
- "livecoinwatch_id": "FLEXUSD",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "FlexUSD",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 6,
- "token_id": "dd21be4532d93661e8ffe16db6535af0fb8ee1344d1fef81a193e2b4cfa9fbc9",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "dd21be4532d93661e8ffe16db6535af0fb8ee1344d1fef81a193e2b4cfa9fbc9",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "SOUR-SLP": {
- "coin": "SOUR-SLP",
- "type": "SLP",
- "name": "Sour",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sour",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "6448381f9649ecacd8c30189cfbfee71a91b6b9738ea494fe33f8b8b51cbfca0",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "6448381f9649ecacd8c30189cfbfee71a91b6b9738ea494fe33f8b8b51cbfca0",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "PSF-SLP": {
- "coin": "PSF-SLP",
- "type": "SLP",
- "name": "PS Foundation",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PS Foundation",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 8,
- "token_id": "38e97c5d7d3585a2cbf3f9580c82ca33985f9cb0845d4dcce220cb709f9538b0",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "38e97c5d7d3585a2cbf3f9580c82ca33985f9cb0845d4dcce220cb709f9538b0",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "JOY-PLG20": {
- "coin": "JOY-PLG20",
- "type": "Matic",
- "name": "Joystick.club",
- "coinpaprika_id": "",
- "coingecko_id": "joystick-club",
- "livecoinwatch_id": "JOY",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Joystick.club",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x218645F85Ff27FC456ef46c3CdacBF5c40B2F9E8"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x218645F85Ff27FC456ef46c3CdacBF5c40B2F9E8",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MAZE-SLP": {
- "coin": "MAZE-SLP",
- "type": "SLP",
- "name": "Maze",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Maze",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 6,
- "token_id": "bb553ac2ac7af0fcd4f24f9dfacc7f925bfb1446c6e18c7966db95a8d50fb378",
- "platform": "BCH",
- "required_confirmations": 1,
- "slp_prefix": "simpleledger"
- }
- },
- "mm2": 1,
- "derivation_path": "m/44'/145'",
- "slp_prefix": "simpleledger",
- "token_id": "bb553ac2ac7af0fcd4f24f9dfacc7f925bfb1446c6e18c7966db95a8d50fb378",
- "parent_coin": "SLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "BBK": {
- "coin": "BBK",
- "type": "UTXO",
- "name": "BitBlocks",
- "coinpaprika_id": "bbk-bitblocks",
- "coingecko_id": "",
- "livecoinwatch_id": "BBK",
- "explorer_url": "https://bbk.ccore.online/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "DarkNet Signed Message:\n",
- "fname": "BitBlocks",
- "rpcport": 59768,
- "pubtype": 25,
- "p2shtype": 85,
- "wiftype": 107,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/BitBlocksProject/BitBlocks",
- "homepage": "https://bitblocksproject.com"
- },
- "electrum": [
- {
- "url": "bbk-one.ewm-cx.net:50001",
- "protocol": "TCP"
- },
- {
- "url": "bbk-two.ewm-cx.net:50001",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BBK-BEP20": {
- "coin": "BBK-BEP20",
- "type": "BEP-20",
- "name": "BitBlocks",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "BBK",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitBlocks",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9045B0eda6B6A556cf9B3d81C2db47411714f847"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x9045B0eda6B6A556cf9B3d81C2db47411714f847",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BBK-PLG20": {
- "coin": "BBK-PLG20",
- "type": "Matic",
- "name": "BitBlocks",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "BBK",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitBlocks",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2C8a46eF99Cb64928eB3Dd50A925327e02296F63"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2C8a46eF99Cb64928eB3Dd50A925327e02296F63",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BCH-ERC20": {
- "coin": "BCH-ERC20",
- "type": "ERC-20",
- "name": "Bitcoin Cash",
- "coinpaprika_id": "bch-bitcoin-cash",
- "coingecko_id": "bitcoin-cash",
- "livecoinwatch_id": "BCH",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bitcoin Cash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x85c4EdC43724e954e5849cAAab61A26a9CB65F1B"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x85c4EdC43724e954e5849cAAab61A26a9CB65F1B",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "BCH"
- },
- "BCH-BEP20": {
- "coin": "BCH-BEP20",
- "type": "BEP-20",
- "name": "Bitcoin Cash",
- "coinpaprika_id": "bch-bitcoin-cash",
- "coingecko_id": "bitcoin-cash",
- "livecoinwatch_id": "BCH",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bitcoin Cash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "BCH"
- },
- "BCH-HCO20": {
- "coin": "BCH-HCO20",
- "type": "HecoChain",
- "name": "Bitcoin Cash",
- "coinpaprika_id": "bch-bitcoin-cash",
- "coingecko_id": "bitcoin-cash",
- "livecoinwatch_id": "BCH",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bitcoin Cash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xeF3CEBD77E0C52cb6f60875d9306397B5Caca375"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0xeF3CEBD77E0C52cb6f60875d9306397B5Caca375",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "BCH"
- },
- "BIDR-BEP20": {
- "coin": "BIDR-BEP20",
- "type": "BEP-20",
- "name": "BIDR",
- "coinpaprika_id": "bidr-binanceidr",
- "coingecko_id": "binanceidr",
- "livecoinwatch_id": "BIDR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BIDR",
- "rpcport": 80,
- "mm2": 1,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "forex_id": "IDR"
- },
- "BITN": {
- "coin": "BITN",
- "type": "UTXO",
- "name": "Bitnet",
- "coinpaprika_id": "bit-bitnet",
- "coingecko_id": "bitnet-io",
- "livecoinwatch_id": "________BIT",
- "explorer_url": "https://bitexplorer.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Bitnet Signed Message:\n",
- "fname": "Bitnet",
- "rpcport": 9332,
- "pubtype": 25,
- "p2shtype": 22,
- "wiftype": 158,
- "txfee": 700000,
- "segwit": true,
- "bech32_hrp": "bit",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "bitchair.io:50001",
- "protocol": "TCP",
- "ws_url": "bitchair.io:50004",
- "contact": [
- {
- "discord": "c4pt#7855"
- }
- ]
- },
- {
- "url": "bitexplorer.io:50001",
- "protocol": "TCP",
- "ws_url": "bitexplorer.io:50004",
- "contact": [
- {
- "discord": "c4pt#7855"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "BLK": {
- "coin": "BLK",
- "type": "UTXO",
- "name": "BlackCoin",
- "coinpaprika_id": "blk-blackcoin",
- "coingecko_id": "blackcoin",
- "livecoinwatch_id": "BLK",
- "explorer_url": "https://chainz.cryptoid.info/blk/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "BlackCoin Signed Message:\n",
- "fname": "BlackCoin",
- "isPoS": 1,
- "rpcport": 15715,
- "pubtype": 25,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "mm2": 1,
- "required_confirmations": 5,
- "mature_confirmations": 500,
- "avg_blocktime": 66,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/10'",
- "electrum": [
- {
- "url": "electrum1.blackcoin.nl:10001",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "electrum2.blackcoin.nl:20001",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "electrum3.blackcoin.nl:30001",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "electrum1.blackcoin.nl:10002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "electrum1.blackcoin.nl:10004"
- },
- {
- "url": "electrum2.blackcoin.nl:20002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "electrum2.blackcoin.nl:20004"
- },
- {
- "url": "electrum3.blackcoin.nl:30002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "electrum3.blackcoin.nl:30004"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "BLK-BEP20": {
- "coin": "BLK-BEP20",
- "type": "BEP-20",
- "name": "BlackCoin",
- "coinpaprika_id": "blk-blackcoin",
- "coingecko_id": "blackcoin",
- "livecoinwatch_id": "BLK",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BlackCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd2cDfD5d26dfA1D11116B9ED7DBd7C6B88C6e1D3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xd2cDfD5d26dfA1D11116B9ED7DBd7C6B88C6e1D3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "tBLK": {
- "coin": "tBLK",
- "type": "UTXO",
- "name": "BlackCoin Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://explorer.blackcoin.nl/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BlackCoin Testnet",
- "isPoS": 1,
- "rpcport": 25715,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "txfee": 100000,
- "segwit": true,
- "mm2": 1,
- "required_confirmations": 5,
- "mature_confirmations": 10,
- "avg_blocktime": 66,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrum1.blackcoin.nl:10011",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "electrum2.blackcoin.nl:20011",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "electrum3.blackcoin.nl:30011",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "electrum1.blackcoin.nl:10012",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "electrum1.blackcoin.nl:10014"
- },
- {
- "url": "electrum2.blackcoin.nl:20012",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "electrum2.blackcoin.nl:20014"
- },
- {
- "url": "electrum3.blackcoin.nl:30012",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "electrum3.blackcoin.nl:30014"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BLOCX": {
- "coin": "BLOCX",
- "type": "UTXO",
- "name": "BLOCX.",
- "coinpaprika_id": "blocx-blocx",
- "coingecko_id": "blocx-2",
- "livecoinwatch_id": "BLOCX",
- "explorer_url": "https://explorer.blocx.space/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "DarkCoin Signed Message:\n",
- "fname": "BLOCX.",
- "rpcport": 12973,
- "pubtype": 25,
- "p2shtype": 26,
- "wiftype": 153,
- "segwit": false,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 180,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/BLOCXTECH/BLOCX",
- "homepage": "https://blocx.tech"
- },
- "electrum": [
- {
- "url": "electrum1.blocx.space:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrum2.blocx.space:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrum3.blocx.space:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrum1.blocx.space:50002",
- "protocol": "SSL",
- "ws_url": "electrum1.blocx.space:50004"
- },
- {
- "url": "electrum2.blocx.space:50002",
- "protocol": "SSL",
- "ws_url": "electrum2.blocx.space:50004"
- },
- {
- "url": "electrum3.blocx.space:50002",
- "protocol": "SSL",
- "ws_url": "electrum3.blocx.space:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BNB": {
- "coin": "BNB",
- "type": "BEP-20",
- "name": "Binance Coin",
- "coinpaprika_id": "bnb-binance-coin",
- "coingecko_id": "binancecoin",
- "livecoinwatch_id": "BNB",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance Coin",
- "avg_blocktime": 3,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "required_confirmations": 3,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/714'",
- "trezor_coin": "Binance Smart Chain",
- "links": {
- "homepage": "https://www.binance.org"
- },
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "BNB"
- },
- "BOLI": {
- "coin": "BOLI",
- "type": "UTXO",
- "name": "Bolivarcoin",
- "coinpaprika_id": "boli-bolivarcoin",
- "coingecko_id": "bolivarcoin",
- "livecoinwatch_id": "BOLI",
- "explorer_url": "https://chainz.cryptoid.info/boli/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "DarkCoin Signed Message:\n",
- "fname": "Bolivarcoin",
- "confpath": "USERHOME/.bolivarcoincore/bolivarcoin.conf",
- "rpcport": 3563,
- "pubtype": 85,
- "p2shtype": 5,
- "wiftype": 213,
- "segwit": false,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 180,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/278'",
- "links": {
- "github": "https://github.com/BOLI-Project/BolivarCoin",
- "homepage": "https://bolis.info"
- },
- "electrum": [
- {
- "url": "electrum2.bolivarcoin.tech:23001",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "BONE-ERC20": {
- "coin": "BONE-ERC20",
- "type": "ERC-20",
- "name": "Bone ShibaSwap",
- "coinpaprika_id": "bone-bone-shibaswap",
- "coingecko_id": "bone-shibaswap",
- "livecoinwatch_id": "___BONE",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bone ShibaSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x9813037ee2218799597d83D4a5B6F3b6778218d9"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x9813037ee2218799597d83D4a5B6F3b6778218d9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "RBTC": {
- "coin": "RBTC",
- "type": "RSK Smart Bitcoin",
- "name": "RSK Smart Bitcoin",
- "coinpaprika_id": "rbtc-smart-bitcoin",
- "coingecko_id": "rootstock",
- "livecoinwatch_id": "RBTC",
- "explorer_url": "https://explorer.rsk.co",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "RSK Smart Bitcoin",
- "sign_message_prefix": "RSK Signed Message:\n",
- "avg_blocktime": 6,
- "rpcport": 80,
- "mm2": 1,
- "alias_ticker": "BTC",
- "chain_id": 30,
- "required_confirmations": 1,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/137'",
- "trezor_coin": "RSK",
- "links": {
- "homepage": "https://rsk.co"
- },
- "parent_coin": "RSK",
- "swap_contract_address": "0x6D9CE4bD298de38Bafefd15F5C6F5c95313B1d94",
- "fallback_swap_contract": "0x6D9CE4bD298de38Bafefd15F5C6F5c95313B1d94",
- "nodes": [
- {
- "url": "https://public-node.rsk.co"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BNBT": {
- "coin": "BNBT",
- "type": "BEP-20",
- "name": "Binance Coin Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://testnet.bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance Coin Testnet",
- "avg_blocktime": 15,
- "rpcport": 80,
- "chain_id": 97,
- "mm2": 1,
- "required_confirmations": 3,
- "protocol": {
- "type": "ETH"
- },
- "swap_contract_address": "0xcCD17C913aD7b772755Ad4F0BDFF7B34C6339150",
- "fallback_swap_contract": "0xcCD17C913aD7b772755Ad4F0BDFF7B34C6339150",
- "nodes": [
- {
- "url": "https://data-seed-prebsc-1-s2.binance.org:8545"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BNT-BEP20": {
- "coin": "BNT-BEP20",
- "type": "BEP-20",
- "name": "Bancor",
- "coinpaprika_id": "bnt-bancor",
- "coingecko_id": "bancor",
- "livecoinwatch_id": "BNT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bancor",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA069008A669e2Af00a86673D9D584cfb524A42Cc"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xA069008A669e2Af00a86673D9D584cfb524A42Cc",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BNT-ERC20": {
- "coin": "BNT-ERC20",
- "type": "ERC-20",
- "name": "Bancor",
- "coinpaprika_id": "bnt-bancor",
- "coingecko_id": "bancor",
- "livecoinwatch_id": "BNT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bancor",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Bancor Network Token",
- "links": {
- "github": "https://github.com/bancorprotocol",
- "homepage": "https://www.bancor.network"
- },
- "contract_address": "0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BNT-PLG20": {
- "coin": "BNT-PLG20",
- "type": "Matic",
- "name": "Bancor",
- "coinpaprika_id": "bnt-bancor",
- "coingecko_id": "bancor",
- "livecoinwatch_id": "BNT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bancor",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc26D47d5c33aC71AC5CF9F776D63Ba292a4F7842"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xc26D47d5c33aC71AC5CF9F776D63Ba292a4F7842",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BORG-ERC20": {
- "coin": "BORG-ERC20",
- "type": "ERC-20",
- "name": "SwissBorg",
- "coinpaprika_id": "chsb-swissborg",
- "coingecko_id": "swissborg",
- "livecoinwatch_id": "CHSB",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SwissBorg",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x64d0f55Cd8C7133a9D7102b13987235F486F2224"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SwissBorg",
- "links": {
- "homepage": "https://swissborg.com"
- },
- "contract_address": "0x64d0f55Cd8C7133a9D7102b13987235F486F2224",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BRZ-BEP20": {
- "coin": "BRZ-BEP20",
- "type": "BEP-20",
- "name": "Brazilian Digital Token",
- "coinpaprika_id": "brz-brazilian-digital-token",
- "coingecko_id": "brz",
- "livecoinwatch_id": "BRZ",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 4,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "forex_id": "BRL"
- },
- "BRZ-ERC20_OLD": {
- "coin": "BRZ-ERC20_OLD",
- "type": "ERC-20",
- "name": "Brazilian Digital Token (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "BRZ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Brazilian Digital Token (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 4,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BRZ-ERC20": {
- "coin": "BRZ-ERC20",
- "type": "ERC-20",
- "name": "Brazilian Digital Token",
- "coinpaprika_id": "brz-brazilian-digital-token",
- "coingecko_id": "brz",
- "livecoinwatch_id": "BRZ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x01d33FD36ec67c6Ada32cf36b31e88EE190B1839"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x01d33FD36ec67c6Ada32cf36b31e88EE190B1839",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "BRL"
- },
- "BRZ-PLG20_OLD": {
- "coin": "BRZ-PLG20_OLD",
- "type": "Matic",
- "name": "Brazilian Digital Token (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "BRZ",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Brazilian Digital Token (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 4,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BRZ-PLG20": {
- "coin": "BRZ-PLG20",
- "type": "Matic",
- "name": "Brazilian Digital Token",
- "coinpaprika_id": "brz-brazilian-digital-token",
- "coingecko_id": "brz",
- "livecoinwatch_id": "BRZ",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "BRL"
- },
- "BRZ-AVX20": {
- "coin": "BRZ-AVX20",
- "type": "AVX-20",
- "name": "Brazilian Digital Token",
- "coinpaprika_id": "brz-brazilian-digital-token",
- "coingecko_id": "brz",
- "livecoinwatch_id": "BRZ",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Brazilian Digital Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 4,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "BRL"
- },
- "BSTY": {
- "coin": "BSTY",
- "type": "UTXO",
- "name": "GlobalBoost-Y",
- "coinpaprika_id": "bsty-globalboost-y",
- "coingecko_id": "globalboost",
- "livecoinwatch_id": "",
- "explorer_url": "https://insight.globalboost.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "GlobalBoost-Y",
- "rpcport": 8225,
- "pubtype": 77,
- "p2shtype": 139,
- "wiftype": 208,
- "txfee": 200000,
- "segwit": true,
- "bech32_hrp": "gb",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumserver01.globalboost.info:50014",
- "protocol": "SSL",
- "ws_url": "electrumserver01.globalboost.info:50013"
- },
- {
- "url": "electrumserver02.globalboost.info:50014",
- "protocol": "SSL",
- "ws_url": "electrumserver02.globalboost.info:50013"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BTC": {
- "coin": "BTC",
- "type": "UTXO",
- "name": "Bitcoin",
- "coinpaprika_id": "btc-bitcoin",
- "coingecko_id": "bitcoin",
- "livecoinwatch_id": "BTC",
- "explorer_url": "https://blockchair.com/bitcoin/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Bitcoin Signed Message:\n",
- "fname": "Bitcoin",
- "rpcport": 8332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "bc",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/0'",
- "trezor_coin": "Bitcoin",
- "links": {
- "github": "https://github.com/bitcoin/bitcoin",
- "homepage": "https://bitcoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10000",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10000",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10000",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20000",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30000"
- },
- {
- "url": "electrum2.cipig.net:20000",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30000"
- },
- {
- "url": "electrum3.cipig.net:20000",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30000"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "BTC"
- },
- "BTC-segwit": {
- "coin": "BTC-segwit",
- "type": "UTXO",
- "name": "Bitcoin",
- "coinpaprika_id": "btc-bitcoin",
- "coingecko_id": "bitcoin",
- "livecoinwatch_id": "BTC",
- "explorer_url": "https://blockchair.com/bitcoin/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Bitcoin Signed Message:\n",
- "fname": "Bitcoin",
- "rpcport": 8332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "bc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "BTC",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/0'",
- "trezor_coin": "Bitcoin",
- "links": {
- "github": "https://github.com/bitcoin/bitcoin",
- "homepage": "https://bitcoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10000",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10000",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10000",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20000",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30000"
- },
- {
- "url": "electrum2.cipig.net:20000",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30000"
- },
- {
- "url": "electrum3.cipig.net:20000",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30000"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "BTC"
- },
- "BTC-BEP20": {
- "coin": "BTC-BEP20",
- "type": "BEP-20",
- "name": "Bitcoin",
- "coinpaprika_id": "btc-bitcoin",
- "coingecko_id": "bitcoin",
- "livecoinwatch_id": "BTC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bitcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "BTC"
- },
- "BTCZ": {
- "coin": "BTCZ",
- "type": "UTXO",
- "name": "BitcoinZ",
- "coinpaprika_id": "btcz-bitcoinz",
- "coingecko_id": "bitcoinz",
- "livecoinwatch_id": "BTCZ",
- "explorer_url": "https://explorer.btcz.rocks/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "BitcoinZ Signed Message:\n",
- "fname": "BitcoinZ",
- "rpcport": 1979,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "txfee": 10000,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/177'",
- "electrum": [
- {
- "url": "electrum1.btcz.rocks:50001",
- "contact": [
- {
- "discord": "VandarGR#6065"
- }
- ],
- "ws_url": "electrum1.btcz.rocks:50004"
- },
- {
- "url": "electrum2.btcz.rocks:50001",
- "contact": [
- {
- "discord": "VandarGR#6065"
- }
- ],
- "ws_url": "electrum2.btcz.rocks:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BTCZ-BEP20": {
- "coin": "BTCZ-BEP20",
- "type": "BEP-20",
- "name": "BitcoinZ",
- "coinpaprika_id": "btcz-bitcoinz",
- "coingecko_id": "bitcoinz",
- "livecoinwatch_id": "BTCZ",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitcoinZ",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xcBBB3e5099F769F6d4E2b8b92DC0e268f7E099D8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xcBBB3e5099F769F6d4E2b8b92DC0e268f7E099D8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BTE": {
- "coin": "BTE",
- "type": "UTXO",
- "name": "Bitweb",
- "coinpaprika_id": "bte-bitweb",
- "coingecko_id": "bitweb",
- "livecoinwatch_id": "_BTE",
- "explorer_url": "https://explorer.bitwebcore.net/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Bitweb",
- "rpcport": 1605,
- "pubtype": 33,
- "p2shtype": 30,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "web",
- "txfee": 20000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx.bitwebcore.net:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "mraksoll@gmail.com"
- },
- {
- "discord": "mraksoll#0596"
- },
- {
- "github": "https://github.com/bitweb-project/electrumx/issues"
- }
- ],
- "ws_url": "electrumx.bitwebcore.net:20003"
- },
- {
- "url": "electrumx6.scalaris.info:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "mraksoll@gmail.com"
- },
- {
- "discord": "mraksoll#0596"
- },
- {
- "github": "https://github.com/bitweb-project/electrumx/issues"
- }
- ],
- "ws_url": "electrumx6.scalaris.info:20003"
- },
- {
- "url": "electrumx7.scalaris.info:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "mraksoll@gmail.com"
- },
- {
- "discord": "mraksoll#0596"
- },
- {
- "github": "https://github.com/bitweb-project/electrumx/issues"
- }
- ],
- "ws_url": "electrumx7.scalaris.info:20003"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BTE-segwit": {
- "coin": "BTE-segwit",
- "type": "UTXO",
- "name": "Bitweb",
- "coinpaprika_id": "bte-bitweb",
- "coingecko_id": "bitweb",
- "livecoinwatch_id": "_BTE",
- "explorer_url": "https://explorer.bitwebcore.net/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bitweb",
- "rpcport": 1605,
- "pubtype": 33,
- "p2shtype": 30,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "web",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "BTE",
- "txfee": 20000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx.bitwebcore.net:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "mraksoll@gmail.com"
- },
- {
- "discord": "mraksoll#0596"
- },
- {
- "github": "https://github.com/bitweb-project/electrumx/issues"
- }
- ],
- "ws_url": "electrumx.bitwebcore.net:20003"
- },
- {
- "url": "electrumx6.scalaris.info:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "mraksoll@gmail.com"
- },
- {
- "discord": "mraksoll#0596"
- },
- {
- "github": "https://github.com/bitweb-project/electrumx/issues"
- }
- ],
- "ws_url": "electrumx6.scalaris.info:20003"
- },
- {
- "url": "electrumx7.scalaris.info:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "mraksoll@gmail.com"
- },
- {
- "discord": "mraksoll#0596"
- },
- {
- "github": "https://github.com/bitweb-project/electrumx/issues"
- }
- ],
- "ws_url": "electrumx7.scalaris.info:20003"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BTT-BEP20": {
- "coin": "BTT-BEP20",
- "type": "BEP-20",
- "name": "BitTorrent (OLD)",
- "coinpaprika_id": "btt-bittorrent",
- "coingecko_id": "bittorrent-old",
- "livecoinwatch_id": "",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitTorrent (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8595F9dA7b868b1822194fAEd312235E43007b49"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x8595F9dA7b868b1822194fAEd312235E43007b49",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BTTC-BEP20": {
- "coin": "BTTC-BEP20",
- "type": "BEP-20",
- "name": "BitTorrent",
- "coinpaprika_id": "bttc-bittorrent-chain",
- "coingecko_id": "bittorrent",
- "livecoinwatch_id": "BTT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitTorrent",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BTU-ERC20": {
- "coin": "BTU-ERC20",
- "type": "ERC-20",
- "name": "BTU Protocol",
- "coinpaprika_id": "btu-btu-protocol",
- "coingecko_id": "btu-protocol",
- "livecoinwatch_id": "BTU",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BTU Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xb683D83a532e2Cb7DFa5275eED3698436371cc9f"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "BTU Protocol",
- "links": {
- "github": "https://github.com/btuprotocol",
- "homepage": "https://btu-protocol.com"
- },
- "contract_address": "0xb683D83a532e2Cb7DFa5275eED3698436371cc9f",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BTU-PLG20": {
- "coin": "BTU-PLG20",
- "type": "Matic",
- "name": "BTU Protocol",
- "coinpaprika_id": "btu-btu-protocol",
- "coingecko_id": "btu-protocol",
- "livecoinwatch_id": "BTU",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BTU Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xFdc26CDA2d2440d0E83CD1DeE8E8bE48405806DC"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xFdc26CDA2d2440d0E83CD1DeE8E8bE48405806DC",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BTX": {
- "coin": "BTX",
- "type": "UTXO",
- "name": "BitCore",
- "coinpaprika_id": "btx-bitcore",
- "coingecko_id": "bitcore",
- "livecoinwatch_id": "BTX",
- "explorer_url": "https://chainz.cryptoid.info/btx/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "BitCore",
- "rpcport": 9469,
- "pubtype": 3,
- "p2shtype": 125,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "btx",
- "txfee": 20000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/160'",
- "trezor_coin": "Bitcore",
- "links": {
- "github": "https://github.com/LIMXTEC/BitCore",
- "homepage": "https://bitcore.cc"
- },
- "electrum": [
- {
- "url": "btx-electrumx.coinsmunity.com:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "[MadCatMining]#0677"
- }
- ],
- "ws_url": "btx-electrumx.coinsmunity.com:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "BTX-segwit": {
- "coin": "BTX-segwit",
- "type": "UTXO",
- "name": "BitCore",
- "coinpaprika_id": "btx-bitcore",
- "coingecko_id": "bitcore",
- "livecoinwatch_id": "BTX",
- "explorer_url": "https://chainz.cryptoid.info/btx/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitCore",
- "rpcport": 9469,
- "pubtype": 3,
- "p2shtype": 125,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "btx",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "BTX",
- "txfee": 20000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/160'",
- "trezor_coin": "Bitcore",
- "links": {
- "github": "https://github.com/LIMXTEC/BitCore",
- "homepage": "https://bitcore.cc"
- },
- "electrum": [
- {
- "url": "btx-electrumx.coinsmunity.com:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "[MadCatMining]#0677"
- }
- ],
- "ws_url": "btx-electrumx.coinsmunity.com:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "BTX-BEP20": {
- "coin": "BTX-BEP20",
- "type": "BEP-20",
- "name": "BitCore",
- "coinpaprika_id": "btx-bitcore",
- "coingecko_id": "bitcore",
- "livecoinwatch_id": "BTX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BitCore",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x000000089fb24237dA101020Ff8e2AfD14624687"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x000000089fb24237dA101020Ff8e2AfD14624687",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BUSD-AVX20": {
- "coin": "BUSD-AVX20",
- "type": "AVX-20",
- "name": "Binance USD",
- "coinpaprika_id": "busd-binance-usd",
- "coingecko_id": "binance-usd",
- "livecoinwatch_id": "BUSD",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BUSD-AVX20_OLD": {
- "coin": "BUSD-AVX20_OLD",
- "type": "AVX-20",
- "name": "Binance USD (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "BUSD",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance USD (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BUSD-MVR20": {
- "coin": "BUSD-MVR20",
- "type": "Moonriver",
- "name": "Binance USD",
- "coinpaprika_id": "busd-binance-usd",
- "coingecko_id": "binance-usd",
- "livecoinwatch_id": "BUSD",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x5D9ab5522c64E1F6ef5e3627ECCc093f56167818"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0x5D9ab5522c64E1F6ef5e3627ECCc093f56167818",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "BUSD-ERC20": {
- "coin": "BUSD-ERC20",
- "type": "ERC-20",
- "name": "Binance USD",
- "coinpaprika_id": "busd-binance-usd",
- "coingecko_id": "binance-usd",
- "livecoinwatch_id": "BUSD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4Fabb145d64652a948d72533023f6E7A623C7C53"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Binance USD (BUSD)",
- "links": {
- "github": "https://github.com/paxosglobal/busd-contract",
- "homepage": "https://www.paxos.com/busd"
- },
- "contract_address": "0x4Fabb145d64652a948d72533023f6E7A623C7C53",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BUSD-BEP20": {
- "coin": "BUSD-BEP20",
- "type": "BEP-20",
- "name": "Binance USD",
- "coinpaprika_id": "busd-binance-usd",
- "coingecko_id": "binance-usd",
- "livecoinwatch_id": "BUSD",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "BUSD-PLG20": {
- "coin": "BUSD-PLG20",
- "type": "Matic",
- "name": "Binance USD",
- "coinpaprika_id": "busd-binance-usd",
- "coingecko_id": "binance-usd",
- "livecoinwatch_id": "BUSD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Binance USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CADC-ERC20": {
- "coin": "CADC-ERC20",
- "type": "ERC-20",
- "name": "CAD Coin",
- "coinpaprika_id": "cadc-cad-coin",
- "coingecko_id": "cad-coin",
- "livecoinwatch_id": "CAD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "CAD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xcaDC0acd4B445166f12d2C07EAc6E2544FbE2Eef"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xcaDC0acd4B445166f12d2C07EAc6E2544FbE2Eef",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "CAD"
- },
- "CADC-PLG20": {
- "coin": "CADC-PLG20",
- "type": "Matic",
- "name": "CAD Coin",
- "coinpaprika_id": "cadc-cad-coin",
- "coingecko_id": "cad-coin",
- "livecoinwatch_id": "CAD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "CAD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x9de41aFF9f55219D5bf4359F167d1D0c772A396D"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x9de41aFF9f55219D5bf4359F167d1D0c772A396D",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "CAD"
- },
- "CAKE-BEP20": {
- "coin": "CAKE-BEP20",
- "type": "BEP-20",
- "name": "PancakeSwap",
- "coinpaprika_id": "cake-pancakeswap",
- "coingecko_id": "pancakeswap-token",
- "livecoinwatch_id": "CAKE",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PancakeSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "CASE-BEP20": {
- "coin": "CASE-BEP20",
- "type": "BEP-20",
- "name": "Case Token",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Case Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5cafe85d8983f61C059df359c504F1Bab8009e9e"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x5cafe85d8983f61C059df359c504F1Bab8009e9e",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "CCL": {
- "coin": "CCL",
- "type": "Smart Chain",
- "name": "CoinCollect",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://ccl.kmdexplorer.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "CCL",
- "fname": "CoinCollect",
- "rpcport": 20849,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10029",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10029",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10029",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20029",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30029"
- },
- {
- "url": "electrum2.cipig.net:20029",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30029"
- },
- {
- "url": "electrum3.cipig.net:20029",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30029"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CDN": {
- "coin": "CDN",
- "type": "UTXO",
- "name": "Canada eCoin",
- "coinpaprika_id": "cdn-canada-ecoin",
- "coingecko_id": "canada-ecoin",
- "livecoinwatch_id": "CDN",
- "explorer_url": "https://chainz.cryptoid.info/cdn/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Canada eCoin Signed Message:\n",
- "fname": "Canada eCoin",
- "rpcport": 34330,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 156,
- "txfee": 200000,
- "dust": 54600,
- "segwit": true,
- "bech32_hrp": "cdn",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 300,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/34'",
- "electrum": [
- {
- "url": "chicago.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true
- },
- {
- "url": "holland.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "holland.ecoincore.com:34335"
- },
- {
- "url": "lenoir.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "lenoir.ecoincore.com:34335"
- },
- {
- "url": "miami.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "miami.ecoincore.com:34335"
- },
- {
- "url": "mumbai.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "mumbai.ecoincore.com:34335"
- },
- {
- "url": "oakland.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true
- },
- {
- "url": "seattle.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true
- },
- {
- "url": "woolloomooloo.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "woolloomooloo.ecoincore.com:34335"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "CDN-segwit": {
- "coin": "CDN-segwit",
- "type": "UTXO",
- "name": "Canada eCoin",
- "coinpaprika_id": "cdn-canada-ecoin",
- "coingecko_id": "canada-ecoin",
- "livecoinwatch_id": "CDN",
- "explorer_url": "https://chainz.cryptoid.info/cdn/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Canada eCoin Signed Message:\n",
- "fname": "Canada eCoin",
- "rpcport": 34330,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 156,
- "txfee": 200000,
- "dust": 54600,
- "segwit": true,
- "bech32_hrp": "cdn",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "CDN",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 300,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/34'",
- "electrum": [
- {
- "url": "chicago.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true
- },
- {
- "url": "holland.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "holland.ecoincore.com:34335"
- },
- {
- "url": "lenoir.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "lenoir.ecoincore.com:34335"
- },
- {
- "url": "miami.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "miami.ecoincore.com:34335"
- },
- {
- "url": "mumbai.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "mumbai.ecoincore.com:34335"
- },
- {
- "url": "oakland.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true
- },
- {
- "url": "seattle.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true
- },
- {
- "url": "woolloomooloo.ecoincore.com:34333",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "woolloomooloo.ecoincore.com:34335"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "CEL-ERC20": {
- "coin": "CEL-ERC20",
- "type": "ERC-20",
- "name": "Celsius",
- "coinpaprika_id": "cel-celsius",
- "coingecko_id": "celsius-degree-token",
- "livecoinwatch_id": "CEL",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Celsius",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 4,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CEL-PLG20": {
- "coin": "CEL-PLG20",
- "type": "Matic",
- "name": "Celsius",
- "coinpaprika_id": "cel-celsius",
- "coingecko_id": "celsius-degree-token",
- "livecoinwatch_id": "CEL",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Celsius",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 4,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CELR-ERC20": {
- "coin": "CELR-ERC20",
- "type": "ERC-20",
- "name": "Celer Network",
- "coinpaprika_id": "celr-celer-network",
- "coingecko_id": "celer-network",
- "livecoinwatch_id": "CELR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Celer Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4F9254C83EB525f9FCf346490bbb3ed28a81C667"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "CelerToken",
- "links": {
- "github": "https://github.com/celer-network",
- "homepage": "https://www.celer.network/"
- },
- "contract_address": "0x4F9254C83EB525f9FCf346490bbb3ed28a81C667",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CELR-BEP20": {
- "coin": "CELR-BEP20",
- "type": "BEP-20",
- "name": "Celer Network",
- "coinpaprika_id": "celr-celer-network",
- "coingecko_id": "celer-network",
- "livecoinwatch_id": "CELR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Celer Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "CELR-ARB20": {
- "coin": "CELR-ARB20",
- "type": "Arbitrum",
- "name": "Celer Network",
- "coinpaprika_id": "celr-celer-network",
- "coingecko_id": "celer-network",
- "livecoinwatch_id": "CELR",
- "explorer_url": "https://arbiscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Celer Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 42161,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH-ARB20",
- "contract_address": "0x3a8B787f78D775AECFEEa15706D4221B40F345AB"
- }
- },
- "contract_address": "0x3a8B787f78D775AECFEEa15706D4221B40F345AB",
- "parent_coin": "ETH-ARB20",
- "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/arbitrum",
- "gui_auth": true
- },
- {
- "url": "https://arb1.arbitrum.io/rpc"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CFX-BEP20": {
- "coin": "CFX-BEP20",
- "type": "BEP-20",
- "name": "Conflux",
- "coinpaprika_id": "cfx-conflux-network",
- "coingecko_id": "conflux-token",
- "livecoinwatch_id": "CFX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Conflux",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x045c4324039dA91c52C55DF5D785385Aab073DcF"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x045c4324039dA91c52C55DF5D785385Aab073DcF",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "CHTA": {
- "coin": "CHTA",
- "type": "UTXO",
- "name": "Cheetahcoin",
- "coinpaprika_id": "chta-cheetahcoin",
- "coingecko_id": "",
- "livecoinwatch_id": "CHTA",
- "explorer_url": "http://chtaexplorer.mooo.com:3002/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Cheetahcoin",
- "rpcport": 8536,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 40000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/682'",
- "electrum": [
- {
- "url": "electrum.shorelinecrypto.com:10007",
- "contact": [
- {
- "email": "support@shorelinecrypto.com"
- },
- {
- "discord": "honglu69#5911"
- }
- ]
- },
- {
- "url": "electrum1.mooo.com:10007",
- "contact": [
- {
- "email": "support@shorelinecrypto.com"
- },
- {
- "discord": "honglu69#5911"
- }
- ]
- },
- {
- "url": "electrum2.mooo.com:10007",
- "contact": [
- {
- "email": "support@shorelinecrypto.com"
- },
- {
- "discord": "honglu69#5911"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "CHIPS": {
- "coin": "CHIPS",
- "type": "UTXO",
- "name": "Chips",
- "coinpaprika_id": "chips-chips",
- "coingecko_id": "chips",
- "livecoinwatch_id": "__CHIPS",
- "explorer_url": "https://explorer.chips.cash/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chips",
- "rpcport": 57776,
- "pubtype": 60,
- "p2shtype": 85,
- "wiftype": 188,
- "txfee": 10000,
- "segwit": true,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 10,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10053",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10053",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10053",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20053",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30053"
- },
- {
- "url": "electrum2.cipig.net:20053",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30053"
- },
- {
- "url": "electrum3.cipig.net:20053",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30053"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CHSB-ERC20_OLD": {
- "coin": "CHSB-ERC20_OLD",
- "type": "ERC-20",
- "name": "SwissBorg (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "CHSB",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SwissBorg (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xba9d4199faB4f26eFE3551D490E3821486f135Ba"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SwissBorg",
- "links": {
- "homepage": "https://swissborg.com"
- },
- "contract_address": "0xba9d4199faB4f26eFE3551D490E3821486f135Ba",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CHSB-PLG20": {
- "coin": "CHSB-PLG20",
- "type": "Matic",
- "name": "SwissBorg",
- "coinpaprika_id": "chsb-swissborg",
- "coingecko_id": "swissborg",
- "livecoinwatch_id": "CHSB",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SwissBorg",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x67Ce67ec4fCd4aCa0Fcb738dD080b2a21ff69D75"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x67Ce67ec4fCd4aCa0Fcb738dD080b2a21ff69D75",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CHZ-ERC20": {
- "coin": "CHZ-ERC20",
- "type": "ERC-20",
- "name": "Chiliz",
- "coinpaprika_id": "chz-chiliz",
- "coingecko_id": "chiliz",
- "livecoinwatch_id": "CHZ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chiliz",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x3506424F91fD33084466F402d5D97f05F8e3b4AF",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CHZ-KRC20": {
- "coin": "CHZ-KRC20",
- "type": "KRC-20",
- "name": "Chiliz",
- "coinpaprika_id": "chz-chiliz",
- "coingecko_id": "chiliz",
- "livecoinwatch_id": "CHZ",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chiliz",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x6E8ce0519B7e4d691BaCE464099547E5fC17679c"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x6E8ce0519B7e4d691BaCE464099547E5fC17679c",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CHZ-PLG20": {
- "coin": "CHZ-PLG20",
- "type": "Matic",
- "name": "Chiliz",
- "coinpaprika_id": "chz-chiliz",
- "coingecko_id": "chiliz",
- "livecoinwatch_id": "CHZ",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chiliz",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xf1938Ce12400f9a761084E7A80d37e732a4dA056"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xf1938Ce12400f9a761084E7A80d37e732a4dA056",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "COMP-AVX20": {
- "coin": "COMP-AVX20",
- "type": "AVX-20",
- "name": "Compound",
- "coinpaprika_id": "comp-compoundd",
- "coingecko_id": "compound-governance-token",
- "livecoinwatch_id": "COMP",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "COMP-BEP20": {
- "coin": "COMP-BEP20",
- "type": "BEP-20",
- "name": "Compound",
- "coinpaprika_id": "comp-compoundd",
- "coingecko_id": "compound-governance-token",
- "livecoinwatch_id": "COMP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "COMP-ERC20": {
- "coin": "COMP-ERC20",
- "type": "ERC-20",
- "name": "Compound",
- "coinpaprika_id": "comp-compoundd",
- "coingecko_id": "compound-governance-token",
- "livecoinwatch_id": "COMP",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xc00e94Cb662C3520282E6f5717214004A7f26888"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Compound",
- "links": {
- "github": "https://github.com/compound-finance",
- "homepage": "https://compound.finance"
- },
- "contract_address": "0xc00e94Cb662C3520282E6f5717214004A7f26888",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "COMP-KRC20": {
- "coin": "COMP-KRC20",
- "type": "KRC-20",
- "name": "Compound",
- "coinpaprika_id": "comp-compoundd",
- "coingecko_id": "compound-governance-token",
- "livecoinwatch_id": "COMP",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x16c4106966cE30e06E806A7c40eEFb46d84cE7e5"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x16c4106966cE30e06E806A7c40eEFb46d84cE7e5",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "COMP-PLG20": {
- "coin": "COMP-PLG20",
- "type": "Matic",
- "name": "Compound",
- "coinpaprika_id": "comp-compoundd",
- "coingecko_id": "compound-governance-token",
- "livecoinwatch_id": "COMP",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Compound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRO-ERC20": {
- "coin": "CRO-ERC20",
- "type": "ERC-20",
- "name": "Crypto.com",
- "coinpaprika_id": "cro-cryptocom-chain",
- "coingecko_id": "crypto-com-chain",
- "livecoinwatch_id": "CRO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Crypto.com",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRO-KRC20": {
- "coin": "CRO-KRC20",
- "type": "KRC-20",
- "name": "Crypto.com",
- "coinpaprika_id": "cro-cryptocom-chain",
- "coingecko_id": "crypto-com-chain",
- "livecoinwatch_id": "CRO",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Crypto.com",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x652D253b7Ca91810A4a05ACFc39729387c5090C0"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x652D253b7Ca91810A4a05ACFc39729387c5090C0",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRO-PLG20": {
- "coin": "CRO-PLG20",
- "type": "Matic",
- "name": "Crypto.com",
- "coinpaprika_id": "cro-cryptocom-chain",
- "coingecko_id": "crypto-com-chain",
- "livecoinwatch_id": "CRO",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Crypto.com",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRV-ERC20": {
- "coin": "CRV-ERC20",
- "type": "ERC-20",
- "name": "Curve DAO Token",
- "coinpaprika_id": "crv-curve-dao-token",
- "coingecko_id": "curve-dao-token",
- "livecoinwatch_id": "CRV",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xD533a949740bb3306d119CC777fa900bA034cd52"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xD533a949740bb3306d119CC777fa900bA034cd52",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRV-AVX20": {
- "coin": "CRV-AVX20",
- "type": "AVX-20",
- "name": "Curve DAO Token",
- "coinpaprika_id": "crv-curve-dao-token",
- "coingecko_id": "curve-dao-token",
- "livecoinwatch_id": "CRV",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRV-FTM20": {
- "coin": "CRV-FTM20",
- "type": "FTM-20",
- "name": "Curve DAO Token",
- "coinpaprika_id": "crv-curve-dao-token",
- "coingecko_id": "curve-dao-token",
- "livecoinwatch_id": "CRV",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRV-KRC20": {
- "coin": "CRV-KRC20",
- "type": "KRC-20",
- "name": "Curve DAO Token",
- "coinpaprika_id": "crv-curve-dao-token",
- "coingecko_id": "curve-dao-token",
- "livecoinwatch_id": "CRV",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x4500E16dA66b99e0C55D7B46EBBD59bc413BA171"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x4500E16dA66b99e0C55D7B46EBBD59bc413BA171",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRV-PLG20": {
- "coin": "CRV-PLG20",
- "type": "Matic",
- "name": "Curve DAO Token",
- "coinpaprika_id": "crv-curve-dao-token",
- "coingecko_id": "curve-dao-token",
- "livecoinwatch_id": "CRV",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Curve DAO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CUMMIES-BEP20": {
- "coin": "CUMMIES-BEP20",
- "type": "BEP-20",
- "name": "CumRocket",
- "coinpaprika_id": "cummies-cumrocket",
- "coingecko_id": "cumrocket",
- "livecoinwatch_id": "CUMMIES",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "CumRocket",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "CVX-ERC20": {
- "coin": "CVX-ERC20",
- "type": "ERC-20",
- "name": "Convex Finance",
- "coinpaprika_id": "cvx-convex-finance",
- "coingecko_id": "convex-finance",
- "livecoinwatch_id": "CVX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Convex Finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CY": {
- "coin": "CY",
- "type": "UTXO",
- "name": "Cyberyen",
- "coinpaprika_id": "cy-cyberyen-c",
- "coingecko_id": "cyberyen",
- "livecoinwatch_id": "CY",
- "explorer_url": "https://explorer.cyberyen.org/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Cyberyen Signed Message:\n",
- "fname": "Cyberyen",
- "rpcport": 58382,
- "pubtype": 28,
- "p2shtype": 77,
- "wiftype": 156,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "cy",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/802'",
- "links": {
- "github": "https://github.com/cyberyen/cyberyen",
- "homepage": "https://cyberyen.org"
- },
- "electrum": [
- {
- "url": "electrum02.cyberyen.work:50002",
- "protocol": "SSL",
- "ws_url": "electrum02.cyberyen.work:50004",
- "contact": [
- {
- "email": "ruaxxx@ruaxxx.com"
- },
- {
- "discord": "ruaxxx#3151"
- }
- ]
- },
- {
- "url": "electrum03.cyberyen.work:50002",
- "protocol": "SSL",
- "ws_url": "electrum03.cyberyen.work:50004",
- "contact": [
- {
- "email": "ruaxxx@ruaxxx.com"
- },
- {
- "discord": "ruaxxx#3151"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "CY-segwit": {
- "coin": "CY-segwit",
- "type": "UTXO",
- "name": "Cyberyen",
- "coinpaprika_id": "cy-cyberyen-c",
- "coingecko_id": "cyberyen",
- "livecoinwatch_id": "CY",
- "explorer_url": "https://explorer.cyberyen.org/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Cyberyen Signed Message:\n",
- "fname": "Cyberyen",
- "rpcport": 58382,
- "pubtype": 28,
- "p2shtype": 77,
- "wiftype": 156,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "cy",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "CY",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/802'",
- "links": {
- "github": "https://github.com/cyberyen/cyberyen",
- "homepage": "https://cyberyen.org"
- },
- "electrum": [
- {
- "url": "electrum02.cyberyen.work:50002",
- "protocol": "SSL",
- "ws_url": "electrum02.cyberyen.work:50004",
- "contact": [
- {
- "email": "ruaxxx@ruaxxx.com"
- },
- {
- "discord": "ruaxxx#3151"
- }
- ]
- },
- {
- "url": "electrum03.cyberyen.work:50002",
- "protocol": "SSL",
- "ws_url": "electrum03.cyberyen.work:50004",
- "contact": [
- {
- "email": "ruaxxx@ruaxxx.com"
- },
- {
- "discord": "ruaxxx#3151"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "DAI-AVX20": {
- "coin": "DAI-AVX20",
- "type": "AVX-20",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DAI-ERC20": {
- "coin": "DAI-ERC20",
- "type": "ERC-20",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6B175474E89094C44Da98b954EedeAC495271d0F"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Dai Stablecoin v2.0",
- "links": {
- "github": "https://github.com/makerdao",
- "homepage": "https://makerdao.com"
- },
- "contract_address": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DAI-BEP20": {
- "coin": "DAI-BEP20",
- "type": "BEP-20",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DAI-FTM20": {
- "coin": "DAI-FTM20",
- "type": "FTM-20",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DAI-HCO20": {
- "coin": "DAI-HCO20",
- "type": "HecoChain",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DAI-MVR20": {
- "coin": "DAI-MVR20",
- "type": "Moonriver",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DAI-PLG20": {
- "coin": "DAI-PLG20",
- "type": "Matic",
- "name": "Dai",
- "coinpaprika_id": "dai-dai",
- "coingecko_id": "dai",
- "livecoinwatch_id": "DAI",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DASH": {
- "coin": "DASH",
- "type": "UTXO",
- "name": "Dash",
- "coinpaprika_id": "dash-dash",
- "coingecko_id": "dash",
- "livecoinwatch_id": "DASH",
- "explorer_url": "https://blockchair.com/dash/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dash",
- "confpath": "USERHOME/.dashcore/dash.conf",
- "rpcport": 9998,
- "pubtype": 76,
- "p2shtype": 16,
- "wiftype": 204,
- "txfee": 1000,
- "force_min_relay_fee": true,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/5'",
- "trezor_coin": "Dash",
- "links": {
- "github": "https://github.com/dashpay/dash",
- "homepage": "https://www.dash.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10061",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10061",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10061",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20061",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30061"
- },
- {
- "url": "electrum2.cipig.net:20061",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30061"
- },
- {
- "url": "electrum3.cipig.net:20061",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30061"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "DASH"
- },
- "DDD-ERC20": {
- "coin": "DDD-ERC20",
- "type": "ERC-20",
- "name": "Scry.info",
- "coinpaprika_id": "ddd-scryinfo",
- "coingecko_id": "scry-info",
- "livecoinwatch_id": "DDD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Scry.info",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x9F5F3CFD7a32700C93F971637407ff17b91c7342"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x9F5F3CFD7a32700C93F971637407ff17b91c7342",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DENT-ERC20": {
- "coin": "DENT-ERC20",
- "type": "ERC-20",
- "name": "Dent",
- "coinpaprika_id": "dent-dent",
- "coingecko_id": "dent",
- "livecoinwatch_id": "DENT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dent",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3597bfD533a99c9aa083587B074434E61Eb0A258"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "DENT",
- "links": {
- "homepage": "https://www.dentwireless.com"
- },
- "contract_address": "0x3597bfD533a99c9aa083587B074434E61Eb0A258",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DFX-ERC20": {
- "coin": "DFX-ERC20",
- "type": "ERC-20",
- "name": "DFX Finance",
- "coinpaprika_id": "dfx-dfx-finance",
- "coingecko_id": "dfx-finance",
- "livecoinwatch_id": "__DFX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DFX Finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x888888435FDe8e7d4c54cAb67f206e4199454c60"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x888888435FDe8e7d4c54cAb67f206e4199454c60",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DFX-PLG20_OLD": {
- "coin": "DFX-PLG20_OLD",
- "type": "Matic",
- "name": "DFX Finance (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "__DFX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DFX Finance (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE7804D91dfCDE7F776c90043E03eAa6Df87E6395"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xE7804D91dfCDE7F776c90043E03eAa6Df87E6395",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DFX-PLG20": {
- "coin": "DFX-PLG20",
- "type": "Matic",
- "name": "DFX Finance",
- "coinpaprika_id": "",
- "coingecko_id": "dfx-finance",
- "livecoinwatch_id": "__DFX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DFX Finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DGB": {
- "coin": "DGB",
- "type": "UTXO",
- "name": "DigiByte",
- "coinpaprika_id": "dgb-digibyte",
- "coingecko_id": "digibyte",
- "livecoinwatch_id": "DGB",
- "explorer_url": "https://digiexplorer.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "DigiByte Signed Message:\n",
- "fname": "DigiByte",
- "rpcport": 14022,
- "pubtype": 30,
- "p2shtype": 63,
- "wiftype": 128,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "dgb",
- "mm2": 1,
- "required_confirmations": 7,
- "avg_blocktime": 15,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/20'",
- "trezor_coin": "DigiByte",
- "links": {
- "github": "https://github.com/digibyte/digibyte",
- "homepage": "https://digibyte.io"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10059",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10059",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10059",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20059",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30059"
- },
- {
- "url": "electrum2.cipig.net:20059",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30059"
- },
- {
- "url": "electrum3.cipig.net:20059",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30059"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "DGB"
- },
- "DGB-segwit": {
- "coin": "DGB-segwit",
- "type": "UTXO",
- "name": "Digibyte",
- "coinpaprika_id": "dgb-digibyte",
- "coingecko_id": "digibyte",
- "livecoinwatch_id": "DGB",
- "explorer_url": "https://digiexplorer.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "DigiByte Signed Message:\n",
- "fname": "Digibyte",
- "rpcport": 14022,
- "pubtype": 30,
- "p2shtype": 63,
- "wiftype": 128,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "dgb",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "DGB",
- "mm2": 1,
- "required_confirmations": 7,
- "avg_blocktime": 15,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/20'",
- "trezor_coin": "DigiByte",
- "links": {
- "github": "https://github.com/digibyte/digibyte",
- "homepage": "https://digibyte.io"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10059",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10059",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10059",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20059",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30059"
- },
- {
- "url": "electrum2.cipig.net:20059",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30059"
- },
- {
- "url": "electrum3.cipig.net:20059",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30059"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "DGB"
- },
- "DGC": {
- "coin": "DGC",
- "type": "UTXO",
- "name": "Digitalcoin",
- "coinpaprika_id": "dgc-digitalcoin",
- "coingecko_id": "digitalcoin",
- "livecoinwatch_id": "DGC",
- "explorer_url": "https://chainz.cryptoid.info/dgc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Digitalcoin Signed Message:\n",
- "fname": "Digitalcoin",
- "rpcport": 7998,
- "pubtype": 30,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 36,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/18'",
- "electrum": [
- {
- "url": "electrumx.dgc.ewmcx.org:50001",
- "protocol": "TCP",
- "ws_url": "electrumx.dgc.ewmcx.org:50003"
- },
- {
- "url": "failover.dgc.ewmcx.biz:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "failover.dgc.ewmcx.biz:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "DIA-ERC20": {
- "coin": "DIA-ERC20",
- "type": "ERC-20",
- "name": "DIAToken",
- "coinpaprika_id": "dia-dia",
- "coingecko_id": "dia-data",
- "livecoinwatch_id": "DIA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DIAToken",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DIA-BEP20": {
- "coin": "DIA-BEP20",
- "type": "BEP-20",
- "name": "DIAToken",
- "coinpaprika_id": "dia-dia",
- "coingecko_id": "dia-data",
- "livecoinwatch_id": "DIA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DIAToken",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DIAC": {
- "coin": "DIAC",
- "type": "UTXO",
- "name": "Diabase",
- "coinpaprika_id": "diac-diabase",
- "coingecko_id": "diabase",
- "livecoinwatch_id": "DIAC",
- "explorer_url": "http://explorer.diabasecoin.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Diabase",
- "confpath": "USERHOME/.diabasecore/diabase.conf",
- "rpcport": 7676,
- "pubtype": 76,
- "p2shtype": 16,
- "wiftype": 204,
- "txfee": 1000,
- "force_min_relay_fee": true,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 90,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/5'",
- "links": {
- "github": "https://github.com/diabasecoin/diabase",
- "homepage": "https://www.diabasecoin.com"
- },
- "electrum": [
- {
- "url": "electrumx1.diabasecoin.com:10002",
- "contact": [
- {
- "github": "diabasecoin"
- }
- ]
- },
- {
- "url": "electrumx2.diabasecoin.com:10002",
- "contact": [
- {
- "github": "diabasecoin"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "DIMI": {
- "coin": "DIMI",
- "type": "UTXO",
- "name": "Diminutive Coin",
- "coinpaprika_id": "dimi-diminutive-coin",
- "coingecko_id": "diminutive-coin",
- "livecoinwatch_id": "DIMI",
- "explorer_url": "https://explorer.diminutivecoin.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Diminutive Coin",
- "rpcport": 49122,
- "pubtype": 32,
- "p2shtype": 30,
- "wiftype": 181,
- "isPoS": 1,
- "txfee": 1000,
- "segwit": false,
- "mm2": 1,
- "mature_confirmations": 75,
- "required_confirmations": 7,
- "avg_blocktime": 75,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx1.diminutivecoin.com:50012",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "support@diminutivecoin.com"
- },
- {
- "twitter": "coin_dimi"
- },
- {
- "reddit": "DiminutiveCoin_DIMI"
- },
- {
- "github": "MadCatMining"
- },
- {
- "discord": "[MadCatMining]#0677"
- }
- ],
- "ws_url": "electrumx1.diminutivecoin.com:50013"
- },
- {
- "url": "electrumx2.diminutivecoin.com:50012",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "support@diminutivecoin.com"
- }
- ],
- "ws_url": "electrumx2.diminutivecoin.com:50013"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DIMI-BEP20": {
- "coin": "DIMI-BEP20",
- "type": "BEP-20",
- "name": "Diminutive Coin",
- "coinpaprika_id": "dimi-diminutive-coin",
- "coingecko_id": "diminutive-coin",
- "livecoinwatch_id": "DIMI",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Diminutive Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA33789a5478Add74e8D7628E817a281aAbD92dA9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xA33789a5478Add74e8D7628E817a281aAbD92dA9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DIMI-QRC20": {
- "coin": "DIMI-QRC20",
- "type": "QRC-20",
- "name": "Diminutive Coin",
- "coinpaprika_id": "dimi-diminutive-coin",
- "coingecko_id": "diminutive-coin",
- "livecoinwatch_id": "DIMI",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Diminutive Coin",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x2c660b0d4d53382aeef855d3010d697970fa0bd5"
- }
- },
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x2c660b0d4d53382aeef855d3010d697970fa0bd5",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DODO-BEP20": {
- "coin": "DODO-BEP20",
- "type": "BEP-20",
- "name": "DODO",
- "coinpaprika_id": "dodo-dodo",
- "coingecko_id": "dodo",
- "livecoinwatch_id": "DODO",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DODO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DODO-ERC20": {
- "coin": "DODO-ERC20",
- "type": "ERC-20",
- "name": "DODO",
- "coinpaprika_id": "dodo-dodo",
- "coingecko_id": "dodo",
- "livecoinwatch_id": "DODO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DODO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DODO-KRC20": {
- "coin": "DODO-KRC20",
- "type": "KRC-20",
- "name": "DODO",
- "coinpaprika_id": "dodo-dodo",
- "coingecko_id": "dodo",
- "livecoinwatch_id": "DODO",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DODO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x8724F9FB7B3f1bb6f2c90B3Ad3Fd6B3c20A06429"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x8724F9FB7B3f1bb6f2c90B3Ad3Fd6B3c20A06429",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DOGE": {
- "coin": "DOGE",
- "type": "UTXO",
- "name": "Dogecoin",
- "coinpaprika_id": "doge-dogecoin",
- "coingecko_id": "dogecoin",
- "livecoinwatch_id": "DOGE",
- "explorer_url": "https://dogechain.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Dogecoin Signed Message:\n",
- "fname": "Dogecoin",
- "rpcport": 22555,
- "pubtype": 30,
- "p2shtype": 22,
- "wiftype": 158,
- "txfee": 0,
- "force_min_relay_fee": true,
- "dust": 100000000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/3'",
- "trezor_coin": "Dogecoin",
- "links": {
- "github": "https://github.com/dogecoin/dogecoin",
- "homepage": "https://dogecoin.com"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10060",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10060",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10060",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20060",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30060"
- },
- {
- "url": "electrum2.cipig.net:20060",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30060"
- },
- {
- "url": "electrum3.cipig.net:20060",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30060"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "DOGE"
- },
- "DOGE-BEP20": {
- "coin": "DOGE-BEP20",
- "type": "BEP-20",
- "name": "Dogecoin",
- "coinpaprika_id": "doge-dogecoin",
- "coingecko_id": "dogecoin",
- "livecoinwatch_id": "DOGE",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Dogecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "DOGE"
- },
- "DOGEC": {
- "coin": "DOGEC",
- "type": "UTXO",
- "name": "DogeCash",
- "coinpaprika_id": "dogec-dogecash",
- "coingecko_id": "dogecash",
- "livecoinwatch_id": "DOGEC",
- "explorer_url": "https://explorer.dogecash.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "DarkNet Signed Message:\n",
- "fname": "DogeCash",
- "rpcport": 56750,
- "pubtype": 30,
- "p2shtype": 19,
- "wiftype": 122,
- "txfee": 10000,
- "dust": 5460,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/385'",
- "links": {
- "github": "https://github.com/dogecash/dogecash",
- "homepage": "https://dogecash.net"
- },
- "electrum": [
- {
- "url": "dogec-one.ewm-cx.com:50006",
- "protocol": "TCP",
- "ws_url": "dogec-one.ewm-cx.com:50008"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DOGEDASH-BEP20": {
- "coin": "DOGEDASH-BEP20",
- "type": "BEP-20",
- "name": "Doge Dash",
- "coinpaprika_id": "dogedash-doge-dash",
- "coingecko_id": "doge-dash",
- "livecoinwatch_id": "DOGEDASH",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Doge Dash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DOGGY-BEP20": {
- "coin": "DOGGY-BEP20",
- "type": "BEP-20",
- "name": "Doggy",
- "coinpaprika_id": "doggy-doggy",
- "coingecko_id": "doggy",
- "livecoinwatch_id": "_DOGGY",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Doggy",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DOT-BEP20": {
- "coin": "DOT-BEP20",
- "type": "BEP-20",
- "name": "Polkadot",
- "coinpaprika_id": "dot-polkadot",
- "coingecko_id": "polkadot",
- "livecoinwatch_id": "DOT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polkadot",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "DOT-HCO20": {
- "coin": "DOT-HCO20",
- "type": "HecoChain",
- "name": "Polkadot",
- "coinpaprika_id": "dot-polkadot",
- "coingecko_id": "polkadot",
- "livecoinwatch_id": "DOT",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polkadot",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xA2c49cEe16a5E5bDEFDe931107dc1fae9f7773E3"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0xA2c49cEe16a5E5bDEFDe931107dc1fae9f7773E3",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DP": {
- "coin": "DP",
- "type": "Smart Chain",
- "name": "DigitalPrice",
- "coinpaprika_id": "dp-digitalprice",
- "coingecko_id": "digitalprice",
- "livecoinwatch_id": "DP",
- "explorer_url": "https://dp.explorer.dexstats.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "DP",
- "fname": "DigitalPrice",
- "rpcport": 28388,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "1.eu.dp.electrum.dexstats.info:10021",
- "contact": [
- {
- "discord": "Zanzarismo#6500"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "DOI": {
- "coin": "DOI",
- "type": "UTXO",
- "name": "Doichain",
- "coinpaprika_id": "doi-doichain",
- "coingecko_id": "doichain",
- "livecoinwatch_id": "DOI",
- "explorer_url": "https://explorer.doichain.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Doichain",
- "rpcport": 8339,
- "pubtype": 52,
- "p2shtype": 13,
- "wiftype": 180,
- "txfee": 1000,
- "dust": 5460,
- "segwit": true,
- "bech32_hrp": "dc",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "pink-deer-69.doi.works:50001",
- "protocol": "TCP",
- "contact": [
- {
- "github": "https://github.com/namecoin/electrum-nmc/issues",
- "twitter": "example_username"
- }
- ]
- },
- {
- "url": "big-parrot-60.doi.works:50002",
- "protocol": "SSL",
- "contact": [
- {
- "github": "https://github.com/doichain/electrum-doi/issues",
- "twitter": "example_username"
- }
- ],
- "ws-url": "big-parrot-60.doi.works:50004"
- },
- {
- "url": "itchy-jellyfish-89.doi.works:50002",
- "protocol": "SSL",
- "contact": [
- {
- "github": "https://github.com/doichain/electrum-doi/issues",
- "twitter": "example_username"
- }
- ],
- "ws-url": "itchy-jellyfish-89.doi.works:50004"
- },
- {
- "url": "pink-deer-69.doi.works:50002",
- "protocol": "SSL",
- "contact": [
- {
- "github": "https://github.com/namecoin/electrum-nmc/issues",
- "twitter": "example_username"
- }
- ],
- "ws-url": "pink-deer-69.doi.works:50004"
- },
- {
- "url": "ugly-bird-70.doi.works:50002",
- "protocol": "SSL",
- "contact": [
- {
- "github": "https://github.com/doichain/electrum-doi/issues",
- "twitter": "example_username"
- }
- ],
- "ws-url": "ugly-bird-70.doi.works:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ECA": {
- "coin": "ECA",
- "type": "UTXO",
- "name": "Electra",
- "coinpaprika_id": "eca-electra",
- "coingecko_id": "electra",
- "livecoinwatch_id": "ECA",
- "explorer_url": "https://eca.ccore.online/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Electra",
- "rpcport": 5788,
- "pubtype": 33,
- "p2shtype": 40,
- "wiftype": 161,
- "txfee": 10000,
- "dust": 5460,
- "txversion": 7,
- "mm2": 1,
- "confpath": "USERHOME/.electra/Electra.conf",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/249'",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10052",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10052",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10052",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20052",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30052"
- },
- {
- "url": "electrum2.cipig.net:20052",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30052"
- },
- {
- "url": "electrum3.cipig.net:20052",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30052"
- }
- ],
- "explorer_block_url": "block/"
- },
- "EFL": {
- "coin": "EFL",
- "type": "UTXO",
- "name": "e-Gulden",
- "coinpaprika_id": "efl-e-gulden",
- "coingecko_id": "electronicgulden",
- "livecoinwatch_id": "EFL",
- "explorer_url": "https://chainz.cryptoid.info/efl/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "e-Gulden",
- "confpath": "USERHOME/.egulden/coin.conf",
- "rpcport": 21015,
- "pubtype": 48,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 200000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/78'",
- "electrum": [
- {
- "url": "electrum1.egulden.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "electrum1.egulden.org:50004"
- },
- {
- "url": "electrum3.egulden.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "electrum3.egulden.org:50004"
- },
- {
- "url": "holland.ecoincore.com:11017",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "holland.ecoincore.com:11019"
- },
- {
- "url": "lenoir.ecoincore.com:11017",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "lenoir.ecoincore.com:11019"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "EGLD-BEP20": {
- "coin": "EGLD-BEP20",
- "type": "BEP-20",
- "name": "Elrond",
- "coinpaprika_id": "egld-elrond",
- "coingecko_id": "elrond-erd-2",
- "livecoinwatch_id": "EGLD",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Elrond",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "EILN-ERC20": {
- "coin": "EILN-ERC20",
- "type": "ERC-20",
- "name": "eIlien",
- "coinpaprika_id": "eiln-e-ilien",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "eIlien",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xb0DBa4BD6b6C4fC9A1263D8C19A57A6BdD740A52"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xb0DBa4BD6b6C4fC9A1263D8C19A57A6BdD740A52",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ELF-BEP20": {
- "coin": "ELF-BEP20",
- "type": "BEP-20",
- "name": "aelf",
- "coinpaprika_id": "elf-aelf",
- "coingecko_id": "aelf",
- "livecoinwatch_id": "ELF",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "aelf",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ELF-ERC20": {
- "coin": "ELF-ERC20",
- "type": "ERC-20",
- "name": "aelf",
- "coinpaprika_id": "elf-aelf",
- "coingecko_id": "aelf",
- "livecoinwatch_id": "ELF",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "aelf",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "ELF Token",
- "links": {
- "github": "https://github.com/aelfProject",
- "homepage": "https://aelf.io/"
- },
- "contract_address": "0xbf2179859fc6D5BEE9Bf9158632Dc51678a4100e",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "EMC2": {
- "coin": "EMC2",
- "type": "UTXO",
- "name": "Einsteinium",
- "coinpaprika_id": "emc2-einsteinium",
- "coingecko_id": "einsteinium",
- "livecoinwatch_id": "EMC2",
- "explorer_url": "https://chainz.cryptoid.info/emc2/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Einsteinium Signed Message:\n",
- "fname": "Einsteinium",
- "rpcport": 41879,
- "pubtype": 33,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/41'",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10062",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10062",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10062",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20062",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30062"
- },
- {
- "url": "electrum2.cipig.net:20062",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30062"
- },
- {
- "url": "electrum3.cipig.net:20062",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30062"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "ENJ-ERC20": {
- "coin": "ENJ-ERC20",
- "type": "ERC-20",
- "name": "Enjin Coin",
- "coinpaprika_id": "enj-enjin-coin",
- "coingecko_id": "enjincoin",
- "livecoinwatch_id": "ENJ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Enjin Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "ENJIN",
- "links": {
- "github": "https://github.com/enjin/contracts",
- "homepage": "https://enjincoin.io"
- },
- "contract_address": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ENJ-KRC20": {
- "coin": "ENJ-KRC20",
- "type": "KRC-20",
- "name": "Enjin Coin",
- "coinpaprika_id": "enj-enjin-coin",
- "coingecko_id": "enjincoin",
- "livecoinwatch_id": "ENJ",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Enjin Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x6e2D990C8e718E7b6D86ed08eBf0FF2dEc05253B"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x6e2D990C8e718E7b6D86ed08eBf0FF2dEc05253B",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ENJ-PLG20": {
- "coin": "ENJ-PLG20",
- "type": "Matic",
- "name": "Enjin Coin",
- "coinpaprika_id": "enj-enjin-coin",
- "coingecko_id": "enjincoin",
- "livecoinwatch_id": "ENJ",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Enjin Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7eC26842F195c852Fa843bB9f6D8B583a274a157"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x7eC26842F195c852Fa843bB9f6D8B583a274a157",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "EOS-BEP20": {
- "coin": "EOS-BEP20",
- "type": "BEP-20",
- "name": "EOS",
- "coinpaprika_id": "eos-eos",
- "coingecko_id": "eos",
- "livecoinwatch_id": "EOS",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "EOS",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ETC": {
- "coin": "ETC",
- "type": "Ethereum Classic",
- "name": "Ethereum Classic",
- "coinpaprika_id": "etc-ethereum-classic",
- "coingecko_id": "ethereum-classic",
- "livecoinwatch_id": "ETC",
- "explorer_url": "https://blockscout.com/etc/mainnet/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum Classic",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 61,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/61'",
- "trezor_coin": "Ethereum Classic",
- "links": {
- "homepage": "https://ethereumclassic.org"
- },
- "swap_contract_address": "0x6d9ce4BD298DE38bAfEFD15f5C6f5c95313B1d94",
- "fallback_swap_contract": "0x6d9ce4BD298DE38bAfEFD15f5C6f5c95313B1d94",
- "nodes": [
- {
- "url": "https://geth-de.etc-network.info"
- },
- {
- "url": "https://geth-at.etc-network.info"
- },
- {
- "url": "https://besu-de.etc-network.info"
- },
- {
- "url": "https://besu-at.etc-network.info"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETC"
- },
- "ETC-BEP20": {
- "coin": "ETC-BEP20",
- "type": "BEP-20",
- "name": "Ethereum Classic",
- "coinpaprika_id": "etc-ethereum-classic",
- "coingecko_id": "ethereum-classic",
- "livecoinwatch_id": "ETC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum Classic",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "ETC"
- },
- "ETH": {
- "coin": "ETH",
- "type": "ERC-20",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "sign_message_prefix": "Ethereum Signed Message:\n",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/60'",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-AVX20": {
- "coin": "ETH-AVX20",
- "type": "AVX-20",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-ARB20": {
- "coin": "ETH-ARB20",
- "type": "Arbitrum",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://arbiscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 42161,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/arbitrum",
- "gui_auth": true
- },
- {
- "url": "https://arb1.arbitrum.io/rpc"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-BEP20": {
- "coin": "ETH-BEP20",
- "type": "BEP-20",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-FTM20": {
- "coin": "ETH-FTM20",
- "type": "FTM-20",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x74b23882a30290451A17c44f4F05243b6b58C76d"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x74b23882a30290451A17c44f4F05243b6b58C76d",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-HCO20": {
- "coin": "ETH-HCO20",
- "type": "HecoChain",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x64FF637fB478863B7468bc97D30a5bF3A428a1fD"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x64FF637fB478863B7468bc97D30a5bF3A428a1fD",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-KRC20": {
- "coin": "ETH-KRC20",
- "type": "KRC-20",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "ETH-PLG20": {
- "coin": "ETH-PLG20",
- "type": "Matic",
- "name": "Ethereum",
- "coinpaprika_id": "eth-ethereum",
- "coingecko_id": "ethereum",
- "livecoinwatch_id": "ETH",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ethereum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ETH"
- },
- "EURE-ERC20": {
- "coin": "EURE-ERC20",
- "type": "ERC-20",
- "name": "Monerium EUR",
- "coinpaprika_id": "eure-monerium-eur-emoney",
- "coingecko_id": "monerium-eur-money",
- "livecoinwatch_id": "EUR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Monerium EUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "EURE-PLG20": {
- "coin": "EURE-PLG20",
- "type": "Matic",
- "name": "Monerium EUR",
- "coinpaprika_id": "",
- "coingecko_id": "monerium-eur-money",
- "livecoinwatch_id": "EUR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Monerium EUR",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "EUROE-ERC20": {
- "coin": "EUROE-ERC20",
- "type": "ERC-20",
- "name": "EUROe Stablecoin",
- "coinpaprika_id": "euroe-euroe-stablecoin",
- "coingecko_id": "euroe-stablecoin",
- "livecoinwatch_id": "EUROE",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "EUROe Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "EUR"
- },
- "EUROE-PLG20": {
- "coin": "EUROE-PLG20",
- "type": "Matic",
- "name": "EUROe Stablecoin",
- "coinpaprika_id": "",
- "coingecko_id": "euroe-stablecoin",
- "livecoinwatch_id": "EUROE",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "EUROe Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "EURS-ERC20": {
- "coin": "EURS-ERC20",
- "type": "ERC-20",
- "name": "STASIS EURO",
- "coinpaprika_id": "eurs-stasis-eurs",
- "coingecko_id": "stasis-eurs",
- "livecoinwatch_id": "EURS",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "STASIS EURO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdB25f211AB05b1c97D595516F45794528a807ad8"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "STASIS EURS",
- "links": {
- "github": "https://github.com/stasisnet",
- "homepage": "https://stasis.net"
- },
- "contract_address": "0xdB25f211AB05b1c97D595516F45794528a807ad8",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "EUR"
- },
- "EURS-PLG20": {
- "coin": "EURS-PLG20",
- "type": "Matic",
- "name": "STASIS EURO",
- "coinpaprika_id": "eurs-stasis-eurs",
- "coingecko_id": "stasis-eurs",
- "livecoinwatch_id": "EURS",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "STASIS EURO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 2,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE111178A87A3BFf0c8d18DECBa5798827539Ae99"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xE111178A87A3BFf0c8d18DECBa5798827539Ae99",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "EUR"
- },
- "EWT": {
- "coin": "EWT",
- "type": "EWT",
- "name": "Energy Web",
- "coinpaprika_id": "ewt-energy-web-token",
- "coingecko_id": "energy-web-token",
- "livecoinwatch_id": "EWT",
- "explorer_url": "https://explorer.energyweb.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Energy Web",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 246,
- "required_confirmations": 3,
- "avg_blocktime": 5,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/246'",
- "trezor_coin": "Energy Web",
- "links": {
- "homepage": "https://www.energyweb.org"
- },
- "swap_contract_address": "0x304896fc2F242f13dd852b412E7B60C5F495B79c",
- "fallback_swap_contract": "0x304896fc2F242f13dd852b412E7B60C5F495B79c",
- "nodes": [
- {
- "url": "https://rpc.energyweb.org"
- }
- ],
- "explorer_block_url": "block/"
- },
- "EXN-BEP20": {
- "coin": "EXN-BEP20",
- "type": "BEP-20",
- "name": "Expoin",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Expoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xc88f6F4C400321FAd5c26d574f9933a991011360"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xc88f6F4C400321FAd5c26d574f9933a991011360",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FEI-ERC20": {
- "coin": "FEI-ERC20",
- "type": "ERC-20",
- "name": "Fei USD",
- "coinpaprika_id": "fei-fei-protocol",
- "coingecko_id": "fei-usd",
- "livecoinwatch_id": "FEI",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fei USD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x956F47F50A910163D8BF957Cf5846D573E7f87CA"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x956F47F50A910163D8BF957Cf5846D573E7f87CA",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "FET-ERC20": {
- "coin": "FET-ERC20",
- "type": "ERC-20",
- "name": "Fetch.ai",
- "coinpaprika_id": "fetch-ai",
- "coingecko_id": "fetch-ai",
- "livecoinwatch_id": "FET",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fetch.ai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "FET-BEP20": {
- "coin": "FET-BEP20",
- "type": "BEP-20",
- "name": "Fetch.ai",
- "coinpaprika_id": "fetch-ai",
- "coingecko_id": "fetch-ai",
- "livecoinwatch_id": "FET",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fetch.ai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x031b41e504677879370e9DBcF937283A8691Fa7f"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x031b41e504677879370e9DBcF937283A8691Fa7f",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FET-PLG20": {
- "coin": "FET-PLG20",
- "type": "Matic",
- "name": "Fetch.ai",
- "coinpaprika_id": "fetch-ai",
- "coingecko_id": "fetch-ai",
- "livecoinwatch_id": "FET",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fetch.ai",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7583FEDDbceFA813dc18259940F76a02710A8905"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x7583FEDDbceFA813dc18259940F76a02710A8905",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FIL-BEP20": {
- "coin": "FIL-BEP20",
- "type": "BEP-20",
- "name": "Filecoin",
- "coinpaprika_id": "fil-filecoin",
- "coingecko_id": "filecoin",
- "livecoinwatch_id": "FIL",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Filecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FIL-ERC20": {
- "coin": "FIL-ERC20",
- "type": "ERC-20",
- "name": "Filecoin",
- "coinpaprika_id": "",
- "coingecko_id": "filecoin",
- "livecoinwatch_id": "FIL",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Filecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "FIL-HCO20": {
- "coin": "FIL-HCO20",
- "type": "HecoChain",
- "name": "Filecoin",
- "coinpaprika_id": "fil-filecoin",
- "coingecko_id": "filecoin",
- "livecoinwatch_id": "FIL",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Filecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xae3a768f9aB104c69A7CD6041fE16fFa235d1810"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0xae3a768f9aB104c69A7CD6041fE16fFa235d1810",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FIRO": {
- "coin": "FIRO",
- "type": "UTXO",
- "name": "Firo",
- "coinpaprika_id": "firo-firo",
- "coingecko_id": "zcoin",
- "livecoinwatch_id": "FIRO",
- "explorer_url": "https://explorer.firo.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Firo Signed Message:\n",
- "fname": "Firo",
- "rpcport": 8888,
- "pubtype": 82,
- "p2shtype": 7,
- "wiftype": 210,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 300,
- "protocol": {
- "type": "UTXO"
- },
- "trezor_coin": "Firo",
- "links": {
- "github": "https://github.com/firoorg/firo",
- "homepage": "https://firo.org"
- },
- "electrum": [
- {
- "url": "electrumx.firo.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "github": "https://github.com/firoorg/electrumx-firo/issues"
- }
- ]
- },
- {
- "url": "electrumx01.firo.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "github": "https://github.com/firoorg/electrumx-firo/issues"
- }
- ]
- },
- {
- "url": "electrumx02.firo.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "github": "https://github.com/firoorg/electrumx-firo/issues"
- }
- ]
- },
- {
- "url": "electrumx03.firo.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "github": "https://github.com/firoorg/electrumx-firo/issues"
- }
- ]
- },
- {
- "url": "electrumx05.firo.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "github": "https://github.com/firoorg/electrumx-firo/issues"
- }
- ]
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "FIRO"
- },
- "FIRO-BEP20": {
- "coin": "FIRO-BEP20",
- "type": "BEP-20",
- "name": "Firo",
- "coinpaprika_id": "firo-firo",
- "coingecko_id": "zcoin",
- "livecoinwatch_id": "FIRO",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Firo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "FIRO"
- },
- "FJC": {
- "coin": "FJC",
- "type": "UTXO",
- "name": "Fujicoin",
- "coinpaprika_id": "fjc-fujicoin",
- "coingecko_id": "fujicoin",
- "livecoinwatch_id": "FJC",
- "explorer_url": "https://explorer.fujicoin.org/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "FujiCoin Signed Message:\n",
- "fname": "Fujicoin",
- "rpcport": 3776,
- "pubtype": 36,
- "p2shtype": 16,
- "wiftype": 164,
- "segwit": true,
- "bech32_hrp": "fc",
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/75'",
- "trezor_coin": "Fujicoin",
- "links": {
- "github": "https://github.com/fujicoin/fujicoin",
- "homepage": "https://fujicoin.org"
- },
- "electrum": [
- {
- "url": "electrumx1.fujicoin.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ]
- },
- {
- "url": "electrumx2.fujicoin.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ]
- },
- {
- "url": "electrumx1.fujicoin.org:50003",
- "protocol": "SSL",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ],
- "ws_url": "electrumx1.fujicoin.org:50005"
- },
- {
- "url": "electrumx2.fujicoin.org:50003",
- "protocol": "SSL",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ],
- "ws_url": "electrumx2.fujicoin.org:50005"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FJC-segwit": {
- "coin": "FJC-segwit",
- "type": "UTXO",
- "name": "Fujicoin",
- "coinpaprika_id": "fjc-fujicoin",
- "coingecko_id": "fujicoin",
- "livecoinwatch_id": "FJC",
- "explorer_url": "https://explorer.fujicoin.org/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "FujiCoin Signed Message:\n",
- "fname": "Fujicoin",
- "rpcport": 3776,
- "pubtype": 36,
- "p2shtype": 16,
- "wiftype": 164,
- "segwit": true,
- "bech32_hrp": "fc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "FJC",
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/75'",
- "trezor_coin": "Fujicoin",
- "links": {
- "github": "https://github.com/fujicoin/fujicoin",
- "homepage": "https://fujicoin.org"
- },
- "electrum": [
- {
- "url": "electrumx1.fujicoin.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ]
- },
- {
- "url": "electrumx2.fujicoin.org:50001",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ]
- },
- {
- "url": "electrumx1.fujicoin.org:50003",
- "protocol": "SSL",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ],
- "ws_url": "electrumx1.fujicoin.org:50005"
- },
- {
- "url": "electrumx2.fujicoin.org:50003",
- "protocol": "SSL",
- "contact": [
- {
- "discord": "motty#8318"
- }
- ],
- "ws_url": "electrumx2.fujicoin.org:50005"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FJC-BEP20": {
- "coin": "FJC-BEP20",
- "type": "BEP-20",
- "name": "Fujicoin",
- "coinpaprika_id": "fjc-fujicoin",
- "coingecko_id": "fujicoin",
- "livecoinwatch_id": "FJC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fujicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd4451a8eE7D0978c60651a114b742Fa8d5857CDf"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xd4451a8eE7D0978c60651a114b742Fa8d5857CDf",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FJCB-BEP20": {
- "coin": "FJCB-BEP20",
- "type": "BEP-20",
- "name": "FJCB Fujicoin",
- "coinpaprika_id": "fjcb-fjcb-fujicoin",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "FJCB Fujicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xda73AE86D38D9b5D22C64722320cCC071cB79ba3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xda73AE86D38D9b5D22C64722320cCC071cB79ba3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FLOKI-BEP20": {
- "coin": "FLOKI-BEP20",
- "type": "BEP-20",
- "name": "Floki Inu",
- "coinpaprika_id": "floki-floki-inu",
- "coingecko_id": "floki",
- "livecoinwatch_id": "_FLOKI",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Floki Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "STFIRO-ERC20": {
- "coin": "STFIRO-ERC20",
- "type": "ERC-20",
- "name": "StakedFIRO",
- "coinpaprika_id": "",
- "coingecko_id": "stakehound",
- "livecoinwatch_id": "",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "StakedFIRO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 8,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x160B1E5aaBFD70B2FC40Af815014925D71CEEd7E"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x160B1E5aaBFD70B2FC40Af815014925D71CEEd7E",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "FLOW-BEP20": {
- "coin": "FLOW-BEP20",
- "type": "BEP-20",
- "name": "Flow",
- "coinpaprika_id": "flow-flow",
- "coingecko_id": "flow",
- "livecoinwatch_id": "FLOW",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Flow",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xC943c5320B9c18C153d1e2d12cC3074bebfb31A2"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xC943c5320B9c18C153d1e2d12cC3074bebfb31A2",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FTC": {
- "coin": "FTC",
- "type": "UTXO",
- "name": "Feathercoin",
- "coinpaprika_id": "ftc-feathercoin",
- "coingecko_id": "feathercoin",
- "livecoinwatch_id": "FTC",
- "explorer_url": "https://explorer.feathercoin.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Feathercoin Signed Message:\n",
- "fname": "Feathercoin",
- "rpcport": 9337,
- "pubtype": 14,
- "p2shtype": 5,
- "wiftype": 142,
- "txfee": 1000000,
- "segwit": true,
- "bech32_hrp": "fc",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/8'",
- "trezor_coin": "Feathercoin",
- "links": {
- "github": "https://github.com/FeatherCoin/Feathercoin",
- "homepage": "https://feathercoin.com"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10054",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10054",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10054",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20054",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30054"
- },
- {
- "url": "electrum2.cipig.net:20054",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30054"
- },
- {
- "url": "electrum3.cipig.net:20054",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30054"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FTC-segwit": {
- "coin": "FTC-segwit",
- "type": "UTXO",
- "name": "Feathercoin",
- "coinpaprika_id": "ftc-feathercoin",
- "coingecko_id": "feathercoin",
- "livecoinwatch_id": "FTC",
- "explorer_url": "https://explorer.feathercoin.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Feathercoin Signed Message:\n",
- "fname": "Feathercoin",
- "rpcport": 9337,
- "pubtype": 14,
- "p2shtype": 5,
- "wiftype": 142,
- "txfee": 1000000,
- "segwit": true,
- "bech32_hrp": "fc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "FTC",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/8'",
- "trezor_coin": "Feathercoin",
- "links": {
- "github": "https://github.com/FeatherCoin/Feathercoin",
- "homepage": "https://feathercoin.com"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10054",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10054",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10054",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20054",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30054"
- },
- {
- "url": "electrum2.cipig.net:20054",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30054"
- },
- {
- "url": "electrum3.cipig.net:20054",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30054"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FTMT": {
- "coin": "FTMT",
- "type": "FTM-20",
- "name": "Fantom Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://testnet.ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fantom Testnet",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 4002,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "nodes": [
- {
- "url": "https://rpc.testnet.fantom.network/"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FTM": {
- "coin": "FTM",
- "type": "FTM-20",
- "name": "Fantom",
- "coinpaprika_id": "ftm-fantom",
- "coingecko_id": "fantom",
- "livecoinwatch_id": "FTM",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fantom",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "required_confirmations": 3,
- "avg_blocktime": 1.8,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1007'",
- "trezor_coin": "Fantom Opera",
- "links": {
- "homepage": "https://fantom.foundation"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "FTM"
- },
- "FTM-BEP20": {
- "coin": "FTM-BEP20",
- "type": "BEP-20",
- "name": "Fantom",
- "coinpaprika_id": "ftm-fantom",
- "coingecko_id": "fantom",
- "livecoinwatch_id": "FTM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fantom",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "FTM"
- },
- "FTM-ERC20": {
- "coin": "FTM-ERC20",
- "type": "ERC-20",
- "name": "Fantom",
- "coinpaprika_id": "ftm-fantom",
- "coingecko_id": "fantom",
- "livecoinwatch_id": "FTM",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fantom",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4E15361FD6b4BB609Fa63C81A2be19d873717870"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Fantom Token",
- "links": {
- "github": "https://github.com/Fantom-foundation/",
- "homepage": "https://fantom.foundation/"
- },
- "contract_address": "0x4E15361FD6b4BB609Fa63C81A2be19d873717870",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "FTM"
- },
- "FXS-BEP20": {
- "coin": "FXS-BEP20",
- "type": "BEP-20",
- "name": "Frax Share",
- "coinpaprika_id": "fxs-frax-share",
- "coingecko_id": "frax-share",
- "livecoinwatch_id": "FXS",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "FXS-ERC20": {
- "coin": "FXS-ERC20",
- "type": "ERC-20",
- "name": "Frax Share",
- "coinpaprika_id": "",
- "coingecko_id": "frax-share",
- "livecoinwatch_id": "FXS",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "FXS-PLG20": {
- "coin": "FXS-PLG20",
- "type": "Matic",
- "name": "Frax Share",
- "coinpaprika_id": "",
- "coingecko_id": "frax-share",
- "livecoinwatch_id": "FXS",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1a3acf6D19267E2d3e7f898f42803e90C9219062"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x1a3acf6D19267E2d3e7f898f42803e90C9219062",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FXS-AVX20": {
- "coin": "FXS-AVX20",
- "type": "AVX-20",
- "name": "Frax Share",
- "coinpaprika_id": "",
- "coingecko_id": "frax-share",
- "livecoinwatch_id": "FXS",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x214DB107654fF987AD859F34125307783fC8e387"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x214DB107654fF987AD859F34125307783fC8e387",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FXS-MVR20": {
- "coin": "FXS-MVR20",
- "type": "Moonriver",
- "name": "Frax Share",
- "coinpaprika_id": "",
- "coingecko_id": "frax-share",
- "livecoinwatch_id": "FXS",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FXS-FTM20": {
- "coin": "FXS-FTM20",
- "type": "FTM-20",
- "name": "Frax Share",
- "coinpaprika_id": "",
- "coingecko_id": "frax-share",
- "livecoinwatch_id": "FXS",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Frax Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GALA-ERC20": {
- "coin": "GALA-ERC20",
- "type": "ERC-20",
- "name": "Gala",
- "coinpaprika_id": "gala-gala",
- "coingecko_id": "gala",
- "livecoinwatch_id": "GALA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gala",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GALA-BEP20": {
- "coin": "GALA-BEP20",
- "type": "BEP-20",
- "name": "Gala",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "GALA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Gala",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7dDEE176F665cD201F93eEDE625770E2fD911990"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7dDEE176F665cD201F93eEDE625770E2fD911990",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GAME-ERC20": {
- "coin": "GAME-ERC20",
- "type": "ERC-20",
- "name": "GameCredits",
- "coinpaprika_id": "game-gamecredits",
- "coingecko_id": "gamecredits",
- "livecoinwatch_id": "GAME",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "GameCredits",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x63f88A2298a5c4AEE3c216Aa6D926B184a4b2437",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GAME-PLG20": {
- "coin": "GAME-PLG20",
- "type": "Matic",
- "name": "GameCredits",
- "coinpaprika_id": "",
- "coingecko_id": "gamecredits",
- "livecoinwatch_id": "GAME",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "GameCredits",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8d1566569d5b695d44a9a234540f68D393cDC40D"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x8d1566569d5b695d44a9a234540f68D393cDC40D",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GBX": {
- "coin": "GBX",
- "type": "UTXO",
- "name": "GoByte",
- "coinpaprika_id": "gbx-gobyte",
- "coingecko_id": "gobyte",
- "livecoinwatch_id": "GBX",
- "explorer_url": "https://insight.gobyte.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "DarkCoin Signed Message:\n",
- "fname": "GoByte",
- "confpath": "USERHOME/.gobytecore/gobyte.conf",
- "rpcport": 12454,
- "pubtype": 38,
- "p2shtype": 10,
- "wiftype": 198,
- "segwit": false,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/176'",
- "links": {
- "github": "https://github.com/gobytecoin/gobyte",
- "homepage": "https://gobyte.network"
- },
- "electrum": [
- {
- "url": "88.99.26.209:5128"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GBX-BEP20": {
- "coin": "GBX-BEP20",
- "type": "BEP-20",
- "name": "GoByte",
- "coinpaprika_id": "",
- "coingecko_id": "gobyte",
- "livecoinwatch_id": "GBX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "GoByte",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8E10F08C9A56a93B6adbfBcFda421919B3357596"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x8E10F08C9A56a93B6adbfBcFda421919B3357596",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GFT-BEP20": {
- "coin": "GFT-BEP20",
- "type": "BEP-20",
- "name": "Gifto",
- "coinpaprika_id": "gto-gifto",
- "coingecko_id": "gifto",
- "livecoinwatch_id": "____GFT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gifto",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x72fF5742319eF07061836F5C924aC6D72c919080"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x72fF5742319eF07061836F5C924aC6D72c919080",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GLC": {
- "coin": "GLC",
- "type": "UTXO",
- "name": "Goldcoin",
- "coinpaprika_id": "glc-goldcoin",
- "coingecko_id": "goldcoin",
- "livecoinwatch_id": "GLC",
- "explorer_url": "https://chainz.cryptoid.info/glc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Goldcoin (GLC) Signed Message:\n",
- "fname": "Goldcoin",
- "rpcport": 8122,
- "pubtype": 32,
- "p2shtype": 5,
- "wiftype": 160,
- "segwit": false,
- "txfee": 100000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/goldcoin/goldcoin",
- "homepage": "https://www.goldcoinproject.org"
- },
- "electrum": [
- {
- "url": "electrum1.netseed.net:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrum2.netseed.net:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrum1.netseed.net:50002",
- "protocol": "SSL",
- "ws_url": "electrum1.netseed.net:50003"
- },
- {
- "url": "electrum2.netseed.net:50002",
- "protocol": "SSL",
- "ws_url": "electrum2.netseed.net:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "GLEEC": {
- "coin": "GLEEC",
- "type": "Smart Chain",
- "name": "Gleec",
- "coinpaprika_id": "gleec-gleec-coin",
- "coingecko_id": "gleec-coin",
- "livecoinwatch_id": "GLEEC",
- "explorer_url": "https://gleec.explorer.dexstats.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "GLEEC",
- "fname": "Gleec",
- "rpcport": 23226,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10022",
- "protocol": "TCP",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10022",
- "protocol": "TCP",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10022",
- "protocol": "TCP",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20022",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30022"
- },
- {
- "url": "electrum2.cipig.net:20022",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30022"
- },
- {
- "url": "electrum3.cipig.net:20022",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30022"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GLM-ERC20": {
- "coin": "GLM-ERC20",
- "type": "ERC-20",
- "name": "Golem",
- "coinpaprika_id": "glm-golem",
- "coingecko_id": "golem",
- "livecoinwatch_id": "GLM",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Golem",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GLM-PLG20": {
- "coin": "GLM-PLG20",
- "type": "Matic",
- "name": "Golem",
- "coinpaprika_id": "glm-golem",
- "coingecko_id": "golem",
- "livecoinwatch_id": "GLM",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Golem",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GM-BEP20": {
- "coin": "GM-BEP20",
- "type": "BEP-20",
- "name": "GM Wagmi",
- "coinpaprika_id": "gm-wagmi-gm-wagmi",
- "coingecko_id": "gm",
- "livecoinwatch_id": "_GM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "GM Wagmi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA55C1e67039B6d59E91eb4cDa2bfc5A854989102"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xA55C1e67039B6d59E91eb4cDa2bfc5A854989102",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GMT-BEP20": {
- "coin": "GMT-BEP20",
- "type": "BEP-20",
- "name": "STEPN",
- "coinpaprika_id": "gmt-stepn",
- "coingecko_id": "stepn",
- "livecoinwatch_id": "____GMT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "STEPN",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GMT-PLG20": {
- "coin": "GMT-PLG20",
- "type": "Matic",
- "name": "STEPN",
- "coinpaprika_id": "gmt-stepn",
- "coingecko_id": "stepn",
- "livecoinwatch_id": "____GMT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "STEPN",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x714DB550b574b3E927af3D93E26127D15721D4C2"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x714DB550b574b3E927af3D93E26127D15721D4C2",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GMX-AVX20": {
- "coin": "GMX-AVX20",
- "type": "AVX-20",
- "name": "GMX",
- "coinpaprika_id": "gmx-gmx",
- "coingecko_id": "gmx",
- "livecoinwatch_id": "__GMX",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "GMX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x62edc0692BD897D2295872a9FFCac5425011c661"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x62edc0692BD897D2295872a9FFCac5425011c661",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GNO-ERC20": {
- "coin": "GNO-ERC20",
- "type": "ERC-20",
- "name": "Gnosis",
- "coinpaprika_id": "gno-gnosis",
- "coingecko_id": "gnosis",
- "livecoinwatch_id": "GNO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gnosis",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6810e776880C02933D47DB1b9fc05908e5386b96"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Gnosis",
- "links": {
- "homepage": "https://gnosis.pm"
- },
- "contract_address": "0x6810e776880C02933D47DB1b9fc05908e5386b96",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GNO-PLG20": {
- "coin": "GNO-PLG20",
- "type": "Matic",
- "name": "Gnosis",
- "coinpaprika_id": "gno-gnosis",
- "coingecko_id": "gnosis",
- "livecoinwatch_id": "GNO",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gnosis",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5FFD62D3C3eE2E81C00A7b9079FB248e7dF024A8"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x5FFD62D3C3eE2E81C00A7b9079FB248e7dF024A8",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GNS-PLG20": {
- "coin": "GNS-PLG20",
- "type": "Matic",
- "name": "Gains Network",
- "coinpaprika_id": "gns-gains-network",
- "coingecko_id": "gains-network",
- "livecoinwatch_id": "GNS",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gains Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xE5417Af564e4bFDA1c483642db72007871397896"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xE5417Af564e4bFDA1c483642db72007871397896",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRLC": {
- "coin": "GRLC",
- "type": "UTXO",
- "name": "Garlicoin",
- "coinpaprika_id": "grlc-garlicoin",
- "coingecko_id": "garlicoin",
- "livecoinwatch_id": "GRLC",
- "explorer_url": "https://garlicblocks.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Garlicoin Signed Message:\n",
- "fname": "Garlicoin",
- "rpcport": 42068,
- "pubtype": 38,
- "p2shtype": 50,
- "wiftype": 176,
- "segwit": true,
- "bech32_hrp": "grlc",
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 40,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/69420'",
- "electrum": [
- {
- "url": "electrum.maxpuig.com:50001",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "mecs#4770"
- }
- ]
- },
- {
- "url": "electrum.maxpuig.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "discord": "orpheas#1503"
- }
- ],
- "ws_url": "electrum.maxpuig.com:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRLC-ERC20": {
- "coin": "GRLC-ERC20",
- "type": "ERC-20",
- "name": "Garlicoin",
- "coinpaprika_id": "",
- "coingecko_id": "garlicoin",
- "livecoinwatch_id": "GRLC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Garlicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x58f7345b5295E43aA454911571f13be186655BE9"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x58f7345b5295E43aA454911571f13be186655BE9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRLC-BEP20": {
- "coin": "GRLC-BEP20",
- "type": "BEP-20",
- "name": "Garlicoin",
- "coinpaprika_id": "",
- "coingecko_id": "garlicoin",
- "livecoinwatch_id": "GRLC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Garlicoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7283DfA2d8D7e277b148cc263B5d8Ae02f1076D3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7283DfA2d8D7e277b148cc263B5d8Ae02f1076D3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GRS": {
- "coin": "GRS",
- "type": "UTXO",
- "name": "Groestlcoin",
- "coinpaprika_id": "grs-groestlcoin",
- "coingecko_id": "groestlcoin",
- "livecoinwatch_id": "GRS",
- "explorer_url": "https://groestlsight.groestlcoin.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "GroestCoin Signed Message:\n",
- "fname": "Groestlcoin",
- "rpcport": 1441,
- "pubtype": 36,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 10000,
- "segwit": true,
- "bech32_hrp": "grs",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/17'",
- "trezor_coin": "Groestlcoin",
- "links": {
- "github": "https://github.com/Groestlcoin/groestlcoin",
- "homepage": "https://www.groestlcoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.groestlcoin.org:50001",
- "ws_url": "electrum1.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum12.groestlcoin.org:50001",
- "ws_url": "electrum12.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum14.groestlcoin.org:50001",
- "ws_url": "electrum14.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum15.groestlcoin.org:50001",
- "ws_url": "electrum15.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum16.groestlcoin.org:50001",
- "ws_url": "electrum16.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum17.groestlcoin.org:50001",
- "ws_url": "electrum17.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum19.groestlcoin.org:50001",
- "ws_url": "electrum19.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum2.groestlcoin.org:50001",
- "ws_url": "electrum2.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum20.groestlcoin.org:50001",
- "ws_url": "electrum20.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum21.groestlcoin.org:50001",
- "ws_url": "electrum21.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum22.groestlcoin.org:50001",
- "ws_url": "electrum22.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum23.groestlcoin.org:50001",
- "ws_url": "electrum23.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum24.groestlcoin.org:50001",
- "ws_url": "electrum24.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum25.groestlcoin.org:50001",
- "ws_url": "electrum25.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum27.groestlcoin.org:50001",
- "ws_url": "electrum27.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum28.groestlcoin.org:50001",
- "ws_url": "electrum28.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum35.groestlcoin.org:50001",
- "ws_url": "electrum35.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum36.groestlcoin.org:50001",
- "ws_url": "electrum36.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum37.groestlcoin.org:50001",
- "ws_url": "electrum37.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum38.groestlcoin.org:50001",
- "ws_url": "electrum38.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum39.groestlcoin.org:50001",
- "ws_url": "electrum39.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum40.groestlcoin.org:50001",
- "ws_url": "electrum40.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum9.groestlcoin.org:50001",
- "ws_url": "electrum9.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- },
- {
- "url": "electrum11.groestlcoin.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "electrum11.groestlcoin.org:50004",
- "contact": [
- {
- "email": "jackielove4u@hotmail.com"
- },
- {
- "discord": "jackielove4u#0412"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRT-AVX20": {
- "coin": "GRT-AVX20",
- "type": "AVX-20",
- "name": "The Graph",
- "coinpaprika_id": "grt-the-graph",
- "coingecko_id": "the-graph",
- "livecoinwatch_id": "GRT",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRT-ERC20": {
- "coin": "GRT-ERC20",
- "type": "ERC-20",
- "name": "The Graph",
- "coinpaprika_id": "grt-the-graph",
- "coingecko_id": "the-graph",
- "livecoinwatch_id": "GRT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Graph Token",
- "links": {
- "github": "https://github.com/graphprotocol",
- "homepage": "https://thegraph.com"
- },
- "contract_address": "0xc944E90C64B2c07662A292be6244BDf05Cda44a7",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRT-KRC20": {
- "coin": "GRT-KRC20",
- "type": "KRC-20",
- "name": "The Graph",
- "coinpaprika_id": "grt-the-graph",
- "coingecko_id": "the-graph",
- "livecoinwatch_id": "GRT",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xb49dd3eDB98FBe82A01DFcb556Cd016964baf5A3"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xb49dd3eDB98FBe82A01DFcb556Cd016964baf5A3",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRT-PLG20": {
- "coin": "GRT-PLG20",
- "type": "Matic",
- "name": "The Graph",
- "coinpaprika_id": "grt-the-graph",
- "coingecko_id": "the-graph",
- "livecoinwatch_id": "GRT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Graph",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GST-BEP20": {
- "coin": "GST-BEP20",
- "type": "BEP-20",
- "name": "Green Satoshi Token",
- "coinpaprika_id": "gst-gst",
- "coingecko_id": "green-satoshi-token",
- "livecoinwatch_id": "____GST",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Green Satoshi Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "GT-ERC20": {
- "coin": "GT-ERC20",
- "type": "ERC-20",
- "name": "Gate",
- "coinpaprika_id": "gt-gatechain-token",
- "coingecko_id": "gatechain-token",
- "livecoinwatch_id": "GT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gate",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xE66747a101bFF2dBA3697199DCcE5b743b454759"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xE66747a101bFF2dBA3697199DCcE5b743b454759",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "GUSD-ERC20": {
- "coin": "GUSD-ERC20",
- "type": "ERC-20",
- "name": "Gemini Dollar",
- "coinpaprika_id": "gusd-gemini-dollar",
- "coingecko_id": "gemini-dollar",
- "livecoinwatch_id": "GUSD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Gemini Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "HEX-ERC20": {
- "coin": "HEX-ERC20",
- "type": "ERC-20",
- "name": "HEX",
- "coinpaprika_id": "hex-hex",
- "coingecko_id": "hex",
- "livecoinwatch_id": "HEX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HEX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "HEX",
- "links": {
- "github": "https://github.com/bitcoinHEX",
- "homepage": "https://hex.win"
- },
- "contract_address": "0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "HEX-PLG20": {
- "coin": "HEX-PLG20",
- "type": "Matic",
- "name": "HEX",
- "coinpaprika_id": "hex-hex",
- "coingecko_id": "hex",
- "livecoinwatch_id": "HEX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HEX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "HOT-ERC20": {
- "coin": "HOT-ERC20",
- "type": "ERC-20",
- "name": "Holo",
- "coinpaprika_id": "hot-holo",
- "coingecko_id": "holotoken",
- "livecoinwatch_id": "_HOT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Holo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6c6EE5e31d828De241282B9606C8e98Ea48526E2"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x6c6EE5e31d828De241282B9606C8e98Ea48526E2",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "HOT-PLG20": {
- "coin": "HOT-PLG20",
- "type": "Matic",
- "name": "Holo",
- "coinpaprika_id": "hot-holo",
- "coingecko_id": "holotoken",
- "livecoinwatch_id": "_HOT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Holo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0C51f415cF478f8D08c246a6C6Ee180C5dC3A012"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x0C51f415cF478f8D08c246a6C6Ee180C5dC3A012",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "HT": {
- "coin": "HT",
- "type": "HecoChain",
- "name": "Huobi Token",
- "coinpaprika_id": "ht-huobi-token",
- "coingecko_id": "huobi-token",
- "livecoinwatch_id": "HT",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Huobi Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "required_confirmations": 3,
- "avg_blocktime": 3,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1010'",
- "trezor_coin": "Huobi ECO Chain",
- "links": {
- "homepage": "https://www.hecochain.com"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "HT-ERC20": {
- "coin": "HT-ERC20",
- "type": "ERC-20",
- "name": "Huobi Token",
- "coinpaprika_id": "ht-huobi-token",
- "coingecko_id": "huobi-token",
- "livecoinwatch_id": "HT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Huobi Token",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6f259637dcD74C767781E37Bc6133cd6A68aa161"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Huobi Token",
- "links": {
- "homepage": "https://www.hbg.com"
- },
- "contract_address": "0x6f259637dcD74C767781E37Bc6133cd6A68aa161",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "HUSD-ERC20": {
- "coin": "HUSD-ERC20",
- "type": "ERC-20",
- "name": "HUSD",
- "coinpaprika_id": "husd-husd",
- "coingecko_id": "husd",
- "livecoinwatch_id": "HUSD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdF574c24545E5FfEcb9a659c229253D4111d87e1"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xdF574c24545E5FfEcb9a659c229253D4111d87e1",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "HUSD-HCO20": {
- "coin": "HUSD-HCO20",
- "type": "HecoChain",
- "name": "HUSD",
- "coinpaprika_id": "husd-husd",
- "coingecko_id": "husd",
- "livecoinwatch_id": "HUSD",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x0298c2b32eaE4da002a15f36fdf7615BEa3DA047"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x0298c2b32eaE4da002a15f36fdf7615BEa3DA047",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "HUSD-KRC20": {
- "coin": "HUSD-KRC20",
- "type": "KRC-20",
- "name": "HUSD",
- "coinpaprika_id": "husd-husd",
- "coingecko_id": "husd",
- "livecoinwatch_id": "HUSD",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xBEc1e1009CE00ECf7F16372451Ac849b39C32897"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xBEc1e1009CE00ECf7F16372451Ac849b39C32897",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "HUSD-PLG20": {
- "coin": "HUSD-PLG20",
- "type": "Matic",
- "name": "HUSD",
- "coinpaprika_id": "husd-husd",
- "coingecko_id": "husd",
- "livecoinwatch_id": "HUSD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2088C47Fc0c78356c622F79dBa4CbE1cCfA84A91"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2088C47Fc0c78356c622F79dBa4CbE1cCfA84A91",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "IL8P": {
- "coin": "IL8P",
- "type": "UTXO",
- "name": "InfiniLooP",
- "coinpaprika_id": "il8p-infiniloop",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://chainz.cryptoid.info/il8p/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "InfiniLooP",
- "isPoS": 1,
- "rpcport": 9459,
- "pubtype": 33,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 500,
- "required_confirmations": 7,
- "avg_blocktime": 45,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "il8p.electrumx.transcenders.name:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "coins@ewmci.com"
- },
- {
- "discord": "[CryptoStan]#9341"
- },
- {
- "twitter": "EwmciL"
- },
- {
- "reddit": "InfiniLooP"
- },
- {
- "github": "WikiMin3R"
- }
- ],
- "ws_url": "il8p.electrumx.transcenders.name:50003"
- },
- {
- "url": "il9p.electrumx.transcenders.name:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "coins@ewmci.com"
- },
- {
- "discord": "[CryptoStan]#9341"
- },
- {
- "twitter": "EwmciL"
- },
- {
- "reddit": "InfiniLooP"
- },
- {
- "github": "WikiMin3R"
- }
- ],
- "ws_url": "il9p.electrumx.transcenders.name:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "ILN": {
- "coin": "ILN",
- "type": "Smart Chain",
- "name": "Ilien",
- "coinpaprika_id": "iln-ilien9195",
- "coingecko_id": "",
- "livecoinwatch_id": "ILN",
- "explorer_url": "https://explorer.ilien.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "ILN",
- "fname": "Ilien",
- "rpcport": 12986,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "p2p": 12985,
- "magic": "feb4cb23",
- "nSPV": "5.9.102.210, 5.9.253.195, 5.9.253.196, 5.9.253.197, 5.9.253.198, 5.9.253.199, 5.9.253.200, 5.9.253.201, 5.9.253.202, 5.9.253.203",
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.ilien.io:65011",
- "contact": [
- {
- "email": "admin@ilien.io"
- },
- {
- "discord": "siu - Chainmakers#3920"
- }
- ],
- "ws_url": "electrum1.ilien.io:30069"
- },
- {
- "url": "electrum2.ilien.io:65011",
- "contact": [
- {
- "email": "admin@ilien.io"
- },
- {
- "discord": "siu - Chainmakers#3920"
- }
- ],
- "ws_url": "electrum2.ilien.io:30069"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ILN-BEP20": {
- "coin": "ILN-BEP20",
- "type": "BEP-20",
- "name": "Ilien",
- "coinpaprika_id": "iln-ilien9195",
- "coingecko_id": "",
- "livecoinwatch_id": "ILN",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ilien",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb49a312677BA1E80DDe23C17E46E80B3E86b533d"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xb49a312677BA1E80DDe23C17E46E80B3E86b533d",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ILN-PLG20": {
- "coin": "ILN-PLG20",
- "type": "Matic",
- "name": "Ilien",
- "coinpaprika_id": "iln-ilien9195",
- "coingecko_id": "",
- "livecoinwatch_id": "ILN",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ilien",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2bAa79e7C13C302210436455925E68aD8fA687F0"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2bAa79e7C13C302210436455925E68aD8fA687F0",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ILNSW-PLG20": {
- "coin": "ILNSW-PLG20",
- "type": "Matic",
- "name": "Ilien Swap",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ilien Swap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0483Ddbb510d22b206f2F3bDAC18528C952c4213"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x0483Ddbb510d22b206f2F3bDAC18528C952c4213",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ILV-ERC20": {
- "coin": "ILV-ERC20",
- "type": "ERC-20",
- "name": "Illuvium",
- "coinpaprika_id": "ilv-illuvium",
- "coingecko_id": "illuvium",
- "livecoinwatch_id": "ILV",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Illuvium",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ILV-BEP20": {
- "coin": "ILV-BEP20",
- "type": "BEP-20",
- "name": "Illuvium",
- "coinpaprika_id": "",
- "coingecko_id": "illuvium",
- "livecoinwatch_id": "ILV",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Illuvium",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4d5AC5cc4f8aBdf2EC2Cb986C00C382369f787D4"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x4d5AC5cc4f8aBdf2EC2Cb986C00C382369f787D4",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "IMX-ERC20": {
- "coin": "IMX-ERC20",
- "type": "ERC-20",
- "name": "ImmutableX",
- "coinpaprika_id": "imx-immutable-x",
- "coingecko_id": "immutable-x",
- "livecoinwatch_id": "_IMX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ImmutableX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "INJ-BEP20": {
- "coin": "INJ-BEP20",
- "type": "BEP-20",
- "name": "Injective Protocol",
- "coinpaprika_id": "inj-injective-protocol",
- "coingecko_id": "injective-protocol",
- "livecoinwatch_id": "INJ",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Injective Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "INJ-ERC20": {
- "coin": "INJ-ERC20",
- "type": "ERC-20",
- "name": "Injective Protocol",
- "coinpaprika_id": "inj-injective-protocol",
- "coingecko_id": "injective-protocol",
- "livecoinwatch_id": "INJ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Injective Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "IOTA-BEP20": {
- "coin": "IOTA-BEP20",
- "type": "BEP-20",
- "name": "IOTA",
- "coinpaprika_id": "miota-iota",
- "coingecko_id": "iota",
- "livecoinwatch_id": "MIOTA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "IOTA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "IOTX-BEP20": {
- "coin": "IOTX-BEP20",
- "type": "BEP-20",
- "name": "IoTeX",
- "coinpaprika_id": "iotx-iotex",
- "coingecko_id": "iotex",
- "livecoinwatch_id": "IOTX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "IoTeX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "IOTX-PLG20": {
- "coin": "IOTX-PLG20",
- "type": "Matic",
- "name": "IoTeX",
- "coinpaprika_id": "iotx-iotex",
- "coingecko_id": "iotex",
- "livecoinwatch_id": "IOTX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "IoTeX",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "JDB-BEP20": {
- "coin": "JDB-BEP20",
- "type": "BEP-20",
- "name": "Jeet Detector Bot",
- "coinpaprika_id": "jdb-jeet-detector-bot",
- "coingecko_id": "jeet-detector-bot",
- "livecoinwatch_id": "JDB",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jeet Detector Bot",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7874CAFf04AFB8B6f5cbBE3ebec3f83Fcd882272"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7874CAFf04AFB8B6f5cbBE3ebec3f83Fcd882272",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "JAUD-PLG20": {
- "coin": "JAUD-PLG20",
- "type": "Matic",
- "name": "Jarvis Australian Dollar",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "AUD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Australian Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xCB7F1Ef7246D1497b985f7FC45A1A31F04346133"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xCB7F1Ef7246D1497b985f7FC45A1A31F04346133",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "AUD"
- },
- "JBRL-BEP20": {
- "coin": "JBRL-BEP20",
- "type": "BEP-20",
- "name": "Jarvis Brazilian Real",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-brazilian-real",
- "livecoinwatch_id": "BRL",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Brazilian Real",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x316622977073BBC3dF32E7d2A9B3c77596a0a603"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x316622977073BBC3dF32E7d2A9B3c77596a0a603",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "forex_id": "BRL"
- },
- "JBRL-PLG20": {
- "coin": "JBRL-PLG20",
- "type": "Matic",
- "name": "Jarvis Brazilian Real",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-brazilian-real",
- "livecoinwatch_id": "BRL",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Brazilian Real",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "BRL"
- },
- "JCAD-PLG20": {
- "coin": "JCAD-PLG20",
- "type": "Matic",
- "name": "Jarvis Canadian Dollar",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "CAD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Canadian Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8ca194A3b22077359b5732DE53373D4afC11DeE3"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x8ca194A3b22077359b5732DE53373D4afC11DeE3",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "CAD"
- },
- "JCHF-AVX20": {
- "coin": "JCHF-AVX20",
- "type": "AVX-20",
- "name": "Jarvis Swiss Franc",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "JCHF",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x2d5563da42b06FbBF9c67b7DC073cF6A7842239e"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x2d5563da42b06FbBF9c67b7DC073cF6A7842239e",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "JCHF-BEP20": {
- "coin": "JCHF-BEP20",
- "type": "BEP-20",
- "name": "Jarvis Swiss Franc",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "JCHF",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7c869b5A294b1314E985283d01C702B62224a05f"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7c869b5A294b1314E985283d01C702B62224a05f",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "JCHF-ERC20": {
- "coin": "JCHF-ERC20",
- "type": "ERC-20",
- "name": "Jarvis Swiss Franc",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-swiss-franc",
- "livecoinwatch_id": "JCHF",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x53dfEa0A8CC2A2A2e425E1C174Bc162999723ea0"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x53dfEa0A8CC2A2A2e425E1C174Bc162999723ea0",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "CHF"
- },
- "JCHF-PLG20": {
- "coin": "JCHF-PLG20",
- "type": "Matic",
- "name": "Jarvis Swiss Franc",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-swiss-franc",
- "livecoinwatch_id": "JCHF",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Swiss Franc",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xbD1463F02f61676d53fd183C2B19282BFF93D099"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xbD1463F02f61676d53fd183C2B19282BFF93D099",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "CHF"
- },
- "JCNY-PLG20": {
- "coin": "JCNY-PLG20",
- "type": "Matic",
- "name": "Jarvis Chinese Yuan",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "CNY",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Chinese Yuan",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x84526c812D8f6c4fD6C1a5B68713AFF50733E772"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x84526c812D8f6c4fD6C1a5B68713AFF50733E772",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "CNY"
- },
- "JEUR-AVX20": {
- "coin": "JEUR-AVX20",
- "type": "AVX-20",
- "name": "Jarvis Euro",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-euro",
- "livecoinwatch_id": "JEUR",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9fB1d52596c44603198fB0aee434fac3a679f702"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x9fB1d52596c44603198fB0aee434fac3a679f702",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "JEUR-BEP20": {
- "coin": "JEUR-BEP20",
- "type": "BEP-20",
- "name": "Jarvis Euro",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-euro",
- "livecoinwatch_id": "JEUR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x23b8683Ff98F9E4781552DFE6f12Aa32814924e8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x23b8683Ff98F9E4781552DFE6f12Aa32814924e8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "JEUR-ERC20": {
- "coin": "JEUR-ERC20",
- "type": "ERC-20",
- "name": "Jarvis Euro",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-euro",
- "livecoinwatch_id": "JEUR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0f17BC9a994b87b5225cFb6a2Cd4D667ADb4F20B"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x0f17BC9a994b87b5225cFb6a2Cd4D667ADb4F20B",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "EUR"
- },
- "JEUR-PLG20": {
- "coin": "JEUR-PLG20",
- "type": "Matic",
- "name": "Jarvis Euro",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-euro",
- "livecoinwatch_id": "JEUR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Euro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "EUR"
- },
- "JGBP-BEP20": {
- "coin": "JGBP-BEP20",
- "type": "BEP-20",
- "name": "Jarvis British Pound",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-british-pound",
- "livecoinwatch_id": "GBP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis British Pound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x048E9b1ddF9EBbb224812372280e94Ccac443f9e"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x048E9b1ddF9EBbb224812372280e94Ccac443f9e",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "JGBP-ERC20": {
- "coin": "JGBP-ERC20",
- "type": "ERC-20",
- "name": "Jarvis British Pound",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-british-pound",
- "livecoinwatch_id": "GBP",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis British Pound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7409856CAE628f5d578B285B45669b36E7005283"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x7409856CAE628f5d578B285B45669b36E7005283",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "GBP"
- },
- "JGBP-PLG20": {
- "coin": "JGBP-PLG20",
- "type": "Matic",
- "name": "Jarvis British Pound",
- "coinpaprika_id": "",
- "coingecko_id": "jarvis-synthetic-british-pound",
- "livecoinwatch_id": "GBP",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis British Pound",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x767058F11800FBA6A682E73A6e79ec5eB74Fac8c"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x767058F11800FBA6A682E73A6e79ec5eB74Fac8c",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "GBP"
- },
- "JGOLD-PLG20": {
- "coin": "JGOLD-PLG20",
- "type": "Matic",
- "name": "Jarvis Gold",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "XAU",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x192Ef3FFF1708456D3A1F21354FA8d6bFd86b45c"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x192Ef3FFF1708456D3A1F21354FA8d6bFd86b45c",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "XAU"
- },
- "JJPY-PLG20": {
- "coin": "JJPY-PLG20",
- "type": "Matic",
- "name": "Jarvis Japanese Yen",
- "coinpaprika_id": "jjpy-jarvis-synthetic-japanese-yen",
- "coingecko_id": "jarvis-synthetic-japanese-yen",
- "livecoinwatch_id": "JPY",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Japanese Yen",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x8343091F2499FD4b6174A46D067A920a3b851FF9"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x8343091F2499FD4b6174A46D067A920a3b851FF9",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "JPY"
- },
- "JKRW-PLG20": {
- "coin": "JKRW-PLG20",
- "type": "Matic",
- "name": "Jarvis South Korean Won",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "KRW",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis South Korean Won",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xa22f6bc96f13bcC84dF36109c973d3c0505a067E"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xa22f6bc96f13bcC84dF36109c973d3c0505a067E",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "KRW"
- },
- "JMXN-PLG20": {
- "coin": "JMXN-PLG20",
- "type": "Matic",
- "name": "Jarvis Mexican Peso",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "MXN",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Mexican Peso",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xBD1fe73e1f12bD2bc237De9b626F056f21f86427"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xBD1fe73e1f12bD2bc237De9b626F056f21f86427",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "MXN"
- },
- "JNZD-PLG20": {
- "coin": "JNZD-PLG20",
- "type": "Matic",
- "name": "Jarvis New Zealand Dollar",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "NZD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis New Zealand Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6b526Daf03B4C47AF2bcc5860B12151823Ff70E0"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x6b526Daf03B4C47AF2bcc5860B12151823Ff70E0",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "NZD"
- },
- "JPHP-PLG20": {
- "coin": "JPHP-PLG20",
- "type": "Matic",
- "name": "Jarvis Philippine Peso",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "PHP",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Philippine Peso",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x486880FB16408b47f928F472f57beC55AC6089d1"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x486880FB16408b47f928F472f57beC55AC6089d1",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "PHP"
- },
- "JPLN-PLG20": {
- "coin": "JPLN-PLG20",
- "type": "Matic",
- "name": "Jarvis Polish Zloty",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "PLN",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Polish Zloty",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x08E6d1F0c4877Ef2993Ad733Fc6F1D022d0E9DBf"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x08E6d1F0c4877Ef2993Ad733Fc6F1D022d0E9DBf",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "PLN"
- },
- "JPYC-AVX20": {
- "coin": "JPYC-AVX20",
- "type": "AVX-20",
- "name": "JPY Coin",
- "coinpaprika_id": "jpyc-jpy-coin-v2",
- "coingecko_id": "jpy-coin",
- "livecoinwatch_id": "JPYC",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "JPY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "JPY"
- },
- "JPYC-PLG20": {
- "coin": "JPYC-PLG20",
- "type": "Matic",
- "name": "JPY Coin",
- "coinpaprika_id": "jpyc-jpy-coin-v2",
- "coingecko_id": "jpy-coin",
- "livecoinwatch_id": "JPYC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "JPY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "JPY"
- },
- "JRT-ERC20": {
- "coin": "JRT-ERC20",
- "type": "ERC-20",
- "name": "Jarvis Reward Token",
- "coinpaprika_id": "jrt-jarvis-reward-token",
- "coingecko_id": "jarvis-reward-token",
- "livecoinwatch_id": "JRT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Reward Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8A9C67fee641579dEbA04928c4BC45F66e26343A"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x8A9C67fee641579dEbA04928c4BC45F66e26343A",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "JRT-PLG20": {
- "coin": "JRT-PLG20",
- "type": "Matic",
- "name": "Jarvis Reward Token",
- "coinpaprika_id": "jrt-jarvis-reward-token",
- "coingecko_id": "jarvis-reward-token",
- "livecoinwatch_id": "JRT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Reward Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "JSEK-PLG20": {
- "coin": "JSEK-PLG20",
- "type": "Matic",
- "name": "Jarvis Swedish Krona",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "SEK",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Swedish Krona",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x197E5d6CcfF265AC3E303a34Db360ee1429f5d1A"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x197E5d6CcfF265AC3E303a34Db360ee1429f5d1A",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "SEK"
- },
- "JSGD-PLG20": {
- "coin": "JSGD-PLG20",
- "type": "Matic",
- "name": "Jarvis Singapore Dollar",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "SGD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Singapore Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xa926db7a4CC0cb1736D5ac60495ca8Eb7214B503"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xa926db7a4CC0cb1736D5ac60495ca8Eb7214B503",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "SGD"
- },
- "JTRY-PLG20": {
- "coin": "JTRY-PLG20",
- "type": "Matic",
- "name": "Jarvis Turkish Lira",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "TRY",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis Turkish Lira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2A227fc77Bb2cf8f1881a04eCC8fA01EC57EC9fc"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2A227fc77Bb2cf8f1881a04eCC8fA01EC57EC9fc",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "TRY"
- },
- "JUSD-PLG20": {
- "coin": "JUSD-PLG20",
- "type": "Matic",
- "name": "Jarvis United States Dollar",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "USD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Jarvis United States Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc948EE9a0687C292ac4d8C1e2557aD652D6baf44"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xc948EE9a0687C292ac4d8C1e2557aD652D6baf44",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "USD"
- },
- "JST-BEP20": {
- "coin": "JST-BEP20",
- "type": "BEP-20",
- "name": "JUST",
- "coinpaprika_id": "jst-just",
- "coingecko_id": "just",
- "livecoinwatch_id": "JST",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "JUST",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xeA998D307ACA04D4f0A3B3036Aba84AE2E409C0A"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xeA998D307ACA04D4f0A3B3036Aba84AE2E409C0A",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "KCS": {
- "coin": "KCS",
- "type": "KRC-20",
- "name": "KuCoin Token",
- "coinpaprika_id": "kcs-kucoin-token",
- "coingecko_id": "kucoin-shares",
- "livecoinwatch_id": "KCS",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "KuCoin Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "required_confirmations": 3,
- "avg_blocktime": 3,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/641'",
- "trezor_coin": "KCC",
- "links": {
- "homepage": "https://kcc.io"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "KMD": {
- "coin": "KMD",
- "type": "Smart Chain",
- "name": "Komodo",
- "coinpaprika_id": "kmd-komodo",
- "coingecko_id": "komodo",
- "livecoinwatch_id": "KMD",
- "explorer_url": "https://kmdexplorer.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "fname": "Komodo",
- "rpcport": 7771,
- "pubtype": 60,
- "p2shtype": 85,
- "wiftype": 188,
- "txversion": 4,
- "overwintered": 1,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "links": {
- "github": "https://github.com/komodoplatform/komodo",
- "homepage": "https://komodoplatform.com"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10001",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10001",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10001",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30001"
- },
- {
- "url": "electrum2.cipig.net:20001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30001"
- },
- {
- "url": "electrum3.cipig.net:20001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30001"
- }
- ],
- "explorer_block_url": "block/",
- "is_claimable": true,
- "minimal_claim_amount": "10",
- "binance_id": "KMD"
- },
- "KMD-BEP20": {
- "coin": "KMD-BEP20",
- "type": "BEP-20",
- "name": "Komodo",
- "coinpaprika_id": "kmd-komodo",
- "coingecko_id": "komodo",
- "livecoinwatch_id": "KMD",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Komodo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2003f7ba57Ea956B05B85C60B4B2Ceea9b111256"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x2003f7ba57Ea956B05B85C60B4B2Ceea9b111256",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "KMD"
- },
- "KNC-BEP20": {
- "coin": "KNC-BEP20",
- "type": "BEP-20",
- "name": "Kyber Network",
- "coinpaprika_id": "knc-kyber-network",
- "coingecko_id": "kyber-network-crystal",
- "livecoinwatch_id": "KNC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "KNC-ERC20": {
- "coin": "KNC-ERC20",
- "type": "ERC-20",
- "name": "Kyber Network",
- "coinpaprika_id": "knc-kyber-network",
- "coingecko_id": "kyber-network-crystal",
- "livecoinwatch_id": "KNC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Kyber Network",
- "links": {
- "github": "https://github.com/KyberNetwork",
- "homepage": "https://kyber.network"
- },
- "contract_address": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "KNC-PLG20": {
- "coin": "KNC-PLG20",
- "type": "Matic",
- "name": "Kyber Network",
- "coinpaprika_id": "knc-kyber-network",
- "coingecko_id": "kyber-network-crystal",
- "livecoinwatch_id": "KNC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "KNC-AVX20": {
- "coin": "KNC-AVX20",
- "type": "AVX-20",
- "name": "Kyber Network",
- "coinpaprika_id": "knc-kyber-network",
- "coingecko_id": "kyber-network-crystal",
- "livecoinwatch_id": "KNC",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kyber Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "KOIN": {
- "coin": "KOIN",
- "type": "Smart Chain",
- "name": "Koinon",
- "coinpaprika_id": "koin-koinon",
- "coingecko_id": "koinon",
- "livecoinwatch_id": "",
- "explorer_url": "https://block.koinon.cloud/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "KOIN",
- "fname": "Koinon",
- "rpcport": 10702,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10024",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10024",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10024",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20024",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30024"
- },
- {
- "url": "electrum2.cipig.net:20024",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30024"
- },
- {
- "url": "electrum3.cipig.net:20024",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30024"
- }
- ],
- "explorer_block_url": "block/"
- },
- "KSM-BEP20": {
- "coin": "KSM-BEP20",
- "type": "BEP-20",
- "name": "Kusama",
- "coinpaprika_id": "ksm-kusama",
- "coingecko_id": "kusama",
- "livecoinwatch_id": "KSM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kusama",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2aa69E8D25C045B659787BC1f03ce47a388DB6E8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x2aa69E8D25C045B659787BC1f03ce47a388DB6E8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "LABS": {
- "coin": "LABS",
- "type": "Smart Chain",
- "name": "KMD Labs",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://labs.explorer.dexstats.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "LABS",
- "fname": "KMD Labs",
- "rpcport": 40265,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10019",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10019",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10019",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20019",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30019"
- },
- {
- "url": "electrum2.cipig.net:20019",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30019"
- },
- {
- "url": "electrum3.cipig.net:20019",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30019"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LBC": {
- "coin": "LBC",
- "type": "UTXO",
- "name": "LBRY Credits",
- "coinpaprika_id": "lbc-lbry-credits",
- "coingecko_id": "lbry-credits",
- "livecoinwatch_id": "LBC",
- "explorer_url": "https://explorer.lbry.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "LBRYcrd Signed Message:\n",
- "fname": "LBRY Credits",
- "rpcport": 9245,
- "pubtype": 85,
- "p2shtype": 122,
- "wiftype": 28,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "lbc",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/140'",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10067"
- },
- {
- "url": "electrum2.cipig.net:10067"
- },
- {
- "url": "electrum3.cipig.net:10067"
- },
- {
- "url": "electrum1.cipig.net:20067",
- "disable_cert_verification": false,
- "protocol": "SSL",
- "ws_url": "electrum1.cipig.net:30067"
- },
- {
- "url": "electrum2.cipig.net:20067",
- "disable_cert_verification": false,
- "protocol": "SSL",
- "ws_url": "electrum2.cipig.net:30067"
- },
- {
- "url": "electrum3.cipig.net:20067",
- "disable_cert_verification": false,
- "protocol": "SSL",
- "ws_url": "electrum3.cipig.net:30067"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LBC-segwit": {
- "coin": "LBC-segwit",
- "type": "UTXO",
- "name": "LBRY Credits",
- "coinpaprika_id": "lbc-lbry-credits",
- "coingecko_id": "lbry-credits",
- "livecoinwatch_id": "LBC",
- "explorer_url": "https://explorer.lbry.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "LBRYcrd Signed Message:\n",
- "fname": "LBRY Credits",
- "rpcport": 9245,
- "pubtype": 85,
- "p2shtype": 122,
- "wiftype": 28,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "lbc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "LBC",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/140'",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10067"
- },
- {
- "url": "electrum2.cipig.net:10067"
- },
- {
- "url": "electrum3.cipig.net:10067"
- },
- {
- "url": "electrum1.cipig.net:20067",
- "disable_cert_verification": false,
- "protocol": "SSL",
- "ws_url": "electrum1.cipig.net:30067"
- },
- {
- "url": "electrum2.cipig.net:20067",
- "disable_cert_verification": false,
- "protocol": "SSL",
- "ws_url": "electrum2.cipig.net:30067"
- },
- {
- "url": "electrum3.cipig.net:20067",
- "disable_cert_verification": false,
- "protocol": "SSL",
- "ws_url": "electrum3.cipig.net:30067"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LCC": {
- "coin": "LCC",
- "type": "UTXO",
- "name": "Litecoin Cash",
- "coinpaprika_id": "lcc-litecoin-cash",
- "coingecko_id": "litecoin-cash",
- "livecoinwatch_id": "LCC",
- "explorer_url": "https://chainz.cryptoid.info/lcc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "fname": "Litecoin Cash",
- "rpcport": 62457,
- "pubtype": 28,
- "p2shtype": 50,
- "wiftype": 176,
- "decimals": 7,
- "fork_id": "0x40",
- "signature_version": "base",
- "txfee": 20000,
- "segwit": true,
- "bech32_hrp": "lcc",
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/192'",
- "electrum": [
- {
- "url": "88.99.26.209:5140",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "LCC-segwit": {
- "coin": "LCC-segwit",
- "type": "UTXO",
- "name": "Litecoin Cash",
- "coinpaprika_id": "lcc-litecoin-cash",
- "coingecko_id": "litecoin-cash",
- "livecoinwatch_id": "LCC",
- "explorer_url": "https://chainz.cryptoid.info/lcc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "fname": "Litecoin Cash",
- "rpcport": 62457,
- "pubtype": 28,
- "p2shtype": 5,
- "wiftype": 176,
- "decimals": 7,
- "fork_id": "0x40",
- "signature_version": "base",
- "txfee": 20000,
- "segwit": true,
- "bech32_hrp": "lcc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "LCC",
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/192'",
- "electrum": [
- {
- "url": "88.99.26.209:5140",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "LDO-ERC20": {
- "coin": "LDO-ERC20",
- "type": "ERC-20",
- "name": "Lido DAO",
- "coinpaprika_id": "ldo-lido-dao",
- "coingecko_id": "lido-dao",
- "livecoinwatch_id": "LDO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Lido DAO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "LDO-PLG20": {
- "coin": "LDO-PLG20",
- "type": "Matic",
- "name": "Lido DAO",
- "coinpaprika_id": "ldo-lido-dao",
- "coingecko_id": "lido-dao",
- "livecoinwatch_id": "LDO",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Lido DAO",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LEO-ERC20": {
- "coin": "LEO-ERC20",
- "type": "ERC-20",
- "name": "LEO Token",
- "coinpaprika_id": "leo-leo-token",
- "coingecko_id": "leo-token",
- "livecoinwatch_id": "LEO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "LEO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "LEOcoin",
- "links": {
- "homepage": "https://www.leocoin.org/"
- },
- "contract_address": "0x2AF5D2aD76741191D15Dfe7bF6aC92d4Bd912Ca3",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "LEO-PLG20": {
- "coin": "LEO-PLG20",
- "type": "Matic",
- "name": "LEO Token",
- "coinpaprika_id": "leo-leo-token",
- "coingecko_id": "leo-token",
- "livecoinwatch_id": "LEO",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "LEO Token",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x06D02e9D62A13fC76BB229373FB3BBBD1101D2fC"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x06D02e9D62A13fC76BB229373FB3BBBD1101D2fC",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LINK-ERC20": {
- "coin": "LINK-ERC20",
- "type": "ERC-20",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x514910771AF9Ca656af840dff83E8264EcF986CA"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x514910771AF9Ca656af840dff83E8264EcF986CA",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "LINK-AVX20": {
- "coin": "LINK-AVX20",
- "type": "AVX-20",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x5947BB275c521040051D82396192181b413227A3"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x5947BB275c521040051D82396192181b413227A3",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LINK-BEP20": {
- "coin": "LINK-BEP20",
- "type": "BEP-20",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "LINK-FTM20": {
- "coin": "LINK-FTM20",
- "type": "FTM-20",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LINK-HCO20": {
- "coin": "LINK-HCO20",
- "type": "HecoChain",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x9e004545c59D359F6B7BFB06a26390b087717b42"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x9e004545c59D359F6B7BFB06a26390b087717b42",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LINK-KRC20": {
- "coin": "LINK-KRC20",
- "type": "KRC-20",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x47841910329aaa6b88D5e9DcdE9000195151dc72"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x47841910329aaa6b88D5e9DcdE9000195151dc72",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LINK-PLG20": {
- "coin": "LINK-PLG20",
- "type": "Matic",
- "name": "Chainlink",
- "coinpaprika_id": "link-chainlink",
- "coingecko_id": "chainlink",
- "livecoinwatch_id": "LINK",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Chainlink",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LOOP-BEP20": {
- "coin": "LOOP-BEP20",
- "type": "BEP-20",
- "name": "LoopNetwork",
- "coinpaprika_id": "loop-loopnetwork",
- "coingecko_id": "loopnetwork",
- "livecoinwatch_id": "_LOOP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "LoopNetwork",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xcE186ad6430E2Fe494a22C9eDbD4c68794a28B35"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xcE186ad6430E2Fe494a22C9eDbD4c68794a28B35",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "LRC-ERC20": {
- "coin": "LRC-ERC20",
- "type": "ERC-20",
- "name": "Loopring",
- "coinpaprika_id": "lrc-loopring",
- "coingecko_id": "loopring",
- "livecoinwatch_id": "LRC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Loopring",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Loopring",
- "links": {
- "github": "https://github.com/loopring",
- "homepage": "https://loopring.org"
- },
- "contract_address": "0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "LRC-BEP20": {
- "coin": "LRC-BEP20",
- "type": "BEP-20",
- "name": "Loopring",
- "coinpaprika_id": "lrc-loopring",
- "coingecko_id": "loopring",
- "livecoinwatch_id": "LRC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Loopring",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x66e4d38b20173F509A1fF5d82866949e4fE898da"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x66e4d38b20173F509A1fF5d82866949e4fE898da",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "LRC-PLG20": {
- "coin": "LRC-PLG20",
- "type": "Matic",
- "name": "Loopring",
- "coinpaprika_id": "lrc-loopring",
- "coingecko_id": "loopring",
- "livecoinwatch_id": "LRC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Loopring",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x84e1670F61347CDaeD56dcc736FB990fBB47ddC1"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x84e1670F61347CDaeD56dcc736FB990fBB47ddC1",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "WCN": {
- "coin": "WCN",
- "type": "UTXO",
- "name": "Widecoin",
- "coinpaprika_id": "wcn-widecoin",
- "coingecko_id": "widecoin",
- "livecoinwatch_id": "WCN",
- "explorer_url": "https://explorer.widecoin.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Widecoin",
- "rpcport": 8552,
- "pubtype": 73,
- "p2shtype": 33,
- "wiftype": 153,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "wc",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/613'",
- "electrum": [
- {
- "url": "electrumx.widecoin.org:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrumx2.widecoin.org:50001",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block/"
- },
- "WCN-segwit": {
- "coin": "WCN-segwit",
- "type": "UTXO",
- "name": "Widecoin",
- "coinpaprika_id": "wcn-widecoin",
- "coingecko_id": "widecoin",
- "livecoinwatch_id": "WCN",
- "explorer_url": "https://explorer.widecoin.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Widecoin",
- "rpcport": 8552,
- "pubtype": 73,
- "p2shtype": 33,
- "wiftype": 153,
- "txfee": 100000,
- "segwit": true,
- "bech32_hrp": "wc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "WCN",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/613'",
- "electrum": [
- {
- "url": "electrumx.widecoin.org:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrumx2.widecoin.org:50001",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LEASH-ERC20": {
- "coin": "LEASH-ERC20",
- "type": "ERC-20",
- "name": "Doge Killer",
- "coinpaprika_id": "leash-doge-killer",
- "coingecko_id": "leash",
- "livecoinwatch_id": "LEASH",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Doge Killer",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x27C70Cd1946795B66be9d954418546998b546634"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x27C70Cd1946795B66be9d954418546998b546634",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "LOOM-ERC20": {
- "coin": "LOOM-ERC20",
- "type": "ERC-20",
- "name": "Loom Network",
- "coinpaprika_id": "loom-loom-network",
- "coingecko_id": "loom-network-new",
- "livecoinwatch_id": "LOOM",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Loom Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x42476F744292107e34519F9c357927074Ea3F75D"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "LOOM",
- "links": {
- "github": "github.com/loomnetwork/",
- "homepage": "https://loomx.io"
- },
- "contract_address": "0x42476F744292107e34519F9c357927074Ea3F75D",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "LOOM-BEP20": {
- "coin": "LOOM-BEP20",
- "type": "BEP-20",
- "name": "Loom Network",
- "coinpaprika_id": "loom-loom-network",
- "coingecko_id": "loom-network-new",
- "livecoinwatch_id": "LOOM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Loom Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xE6Ce27025F13f5213bBc560dC275e292965a392F"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xE6Ce27025F13f5213bBc560dC275e292965a392F",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "LSWAP-BEP20": {
- "coin": "LSWAP-BEP20",
- "type": "BEP-20",
- "name": "LoopSwap",
- "coinpaprika_id": "lswap-loopswap",
- "coingecko_id": "loopswap",
- "livecoinwatch_id": "LSWAP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "LoopSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x3F8a14f5a3Ee2F4A3Ed61cCF5EEA3c9535C090C8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x3F8a14f5a3Ee2F4A3Ed61cCF5EEA3c9535C090C8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "LTC": {
- "coin": "LTC",
- "type": "UTXO",
- "name": "Litecoin",
- "coinpaprika_id": "ltc-litecoin",
- "coingecko_id": "litecoin",
- "livecoinwatch_id": "LTC",
- "explorer_url": "https://blockchair.com/litecoin/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "fname": "Litecoin",
- "rpcport": 9332,
- "pubtype": 48,
- "p2shtype": 50,
- "wiftype": 176,
- "txfee": 0,
- "dust": 5460,
- "segwit": true,
- "bech32_hrp": "ltc",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/2'",
- "trezor_coin": "Litecoin",
- "links": {
- "github": "https://github.com/litecoin-project/litecoin",
- "homepage": "https://litecoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10063",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10063",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10063",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20063",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30063"
- },
- {
- "url": "electrum2.cipig.net:20063",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30063"
- },
- {
- "url": "electrum3.cipig.net:20063",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30063"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "LTC"
- },
- "LTC-segwit": {
- "coin": "LTC-segwit",
- "type": "UTXO",
- "name": "Litecoin",
- "coinpaprika_id": "ltc-litecoin",
- "coingecko_id": "litecoin",
- "livecoinwatch_id": "LTC",
- "explorer_url": "https://blockchair.com/litecoin/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Litecoin Signed Message:\n",
- "fname": "Litecoin",
- "rpcport": 9332,
- "pubtype": 48,
- "p2shtype": 50,
- "wiftype": 176,
- "txfee": 0,
- "dust": 5460,
- "segwit": true,
- "bech32_hrp": "ltc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "LTC",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/2'",
- "trezor_coin": "Litecoin",
- "links": {
- "github": "https://github.com/litecoin-project/litecoin",
- "homepage": "https://litecoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10063",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10063",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10063",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20063",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30063"
- },
- {
- "url": "electrum2.cipig.net:20063",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30063"
- },
- {
- "url": "electrum3.cipig.net:20063",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30063"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "LTC"
- },
- "LYNX": {
- "coin": "LYNX",
- "type": "UTXO",
- "name": "Lynx",
- "coinpaprika_id": "lynx-lynx",
- "coingecko_id": "lynx",
- "livecoinwatch_id": "LYNX",
- "explorer_url": "https://chainz.cryptoid.info/lynx/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Lynx Signed Message:\n",
- "fname": "Lynx",
- "rpcport": 9332,
- "pubtype": 45,
- "p2shtype": 22,
- "wiftype": 173,
- "txfee": 100000,
- "dust": 54600,
- "segwit": false,
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 1200,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/191'",
- "electrum": [
- {
- "url": "electrum5.getlynx.io:50002",
- "protocol": "SSL",
- "ws_url": "electrum5.getlynx.io:50004"
- },
- {
- "url": "electrum6.getlynx.io:50002",
- "protocol": "SSL",
- "ws_url": "electrum6.getlynx.io:50004"
- },
- {
- "url": "electrum7.getlynx.io:50002",
- "protocol": "SSL",
- "ws_url": "electrum7.getlynx.io:50004"
- },
- {
- "url": "electrum9.getlynx.io:50002",
- "protocol": "SSL",
- "ws_url": "electrum9.getlynx.io:50004"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "MANA-ERC20": {
- "coin": "MANA-ERC20",
- "type": "ERC-20",
- "name": "Decentraland",
- "coinpaprika_id": "mana-decentraland",
- "coingecko_id": "decentraland",
- "livecoinwatch_id": "MANA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0F5D2fB29fb7d3CFeE444a200298f468908cC942"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Decentraland MANA",
- "links": {
- "github": "https://github.com/decentraland",
- "homepage": "https://decentraland.org"
- },
- "contract_address": "0x0F5D2fB29fb7d3CFeE444a200298f468908cC942",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MANA-BEP20": {
- "coin": "MANA-BEP20",
- "type": "BEP-20",
- "name": "Decentraland",
- "coinpaprika_id": "mana-decentraland",
- "coingecko_id": "decentraland",
- "livecoinwatch_id": "MANA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "MANA-KRC20": {
- "coin": "MANA-KRC20",
- "type": "KRC-20",
- "name": "Decentraland",
- "coinpaprika_id": "mana-decentraland",
- "coingecko_id": "decentraland",
- "livecoinwatch_id": "MANA",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MANA-PLG20": {
- "coin": "MANA-PLG20",
- "type": "Matic",
- "name": "Decentraland",
- "coinpaprika_id": "mana-decentraland",
- "coingecko_id": "decentraland",
- "livecoinwatch_id": "MANA",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Decentraland",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MASK-BEP20": {
- "coin": "MASK-BEP20",
- "type": "BEP-20",
- "name": "Mask Network",
- "coinpaprika_id": "",
- "coingecko_id": "mask-network",
- "livecoinwatch_id": "_MASK",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Mask Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "MASK-ERC20": {
- "coin": "MASK-ERC20",
- "type": "ERC-20",
- "name": "Mask Network",
- "coinpaprika_id": "mask-mask-network",
- "coingecko_id": "mask-network",
- "livecoinwatch_id": "_MASK",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Mask Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MASK-PLG20": {
- "coin": "MASK-PLG20",
- "type": "Matic",
- "name": "Mask Network",
- "coinpaprika_id": "",
- "coingecko_id": "mask-network",
- "livecoinwatch_id": "_MASK",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Mask Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MATICTEST": {
- "coin": "MATICTEST",
- "type": "Matic",
- "name": "Matic Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://mumbai.polygonscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Matic Testnet",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 80001,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ETH"
- },
- "swap_contract_address": "0x73c1Dd989218c3A154C71Fc08Eb55A24Bd2B3A10",
- "nodes": [
- {
- "url": "https://rpc-mumbai.matic.today"
- },
- {
- "url": "https://matic-mumbai.chainstacklabs.com"
- },
- {
- "url": "https://rpc-mumbai.maticvigil.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MATIC": {
- "coin": "MATIC",
- "type": "Matic",
- "name": "Polygon",
- "coinpaprika_id": "matic-matic-network",
- "coingecko_id": "matic-network",
- "livecoinwatch_id": "MATIC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/966'",
- "trezor_coin": "Polygon",
- "links": {
- "homepage": "https://polygon.technology/"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "MATIC"
- },
- "MATIC-BEP20": {
- "coin": "MATIC-BEP20",
- "type": "BEP-20",
- "name": "Polygon",
- "coinpaprika_id": "matic-matic-network",
- "coingecko_id": "matic-network",
- "livecoinwatch_id": "MATIC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "MATIC"
- },
- "MATIC-ERC20": {
- "coin": "MATIC-ERC20",
- "type": "ERC-20",
- "name": "Polygon",
- "coinpaprika_id": "matic-matic-network",
- "coingecko_id": "matic-network",
- "livecoinwatch_id": "MATIC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Matic Token",
- "links": {
- "homepage": "https://polygon.technology/"
- },
- "contract_address": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "MATIC"
- },
- "MATIC-HCO20": {
- "coin": "MATIC-HCO20",
- "type": "HecoChain",
- "name": "Polygon",
- "coinpaprika_id": "matic-matic-network",
- "coingecko_id": "matic-network",
- "livecoinwatch_id": "MATIC",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xdB11743fe8B129b49b11236E8a715004BDabe7e5"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0xdB11743fe8B129b49b11236E8a715004BDabe7e5",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "MATIC"
- },
- "MATIC-KRC20": {
- "coin": "MATIC-KRC20",
- "type": "KRC-20",
- "name": "Polygon",
- "coinpaprika_id": "matic-matic-network",
- "coingecko_id": "matic-network",
- "livecoinwatch_id": "MATIC",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Polygon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x1B8e27ABA297466fc6765Ce55BD12A8E216759da"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x1B8e27ABA297466fc6765Ce55BD12A8E216759da",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "MATIC"
- },
- "MC-ERC20": {
- "coin": "MC-ERC20",
- "type": "ERC-20",
- "name": "Merit Circle",
- "coinpaprika_id": "mc-merit-circle",
- "coingecko_id": "merit-circle",
- "livecoinwatch_id": "_MC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Merit Circle",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MC-BEP20": {
- "coin": "MC-BEP20",
- "type": "BEP-20",
- "name": "Merit Circle",
- "coinpaprika_id": "mc-merit-circle",
- "coingecko_id": "merit-circle",
- "livecoinwatch_id": "_MC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Merit Circle",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "MCL": {
- "coin": "MCL",
- "type": "Smart Chain",
- "name": "Marmara Credit Loops",
- "coinpaprika_id": "mcl-marmara-credit-loops",
- "coingecko_id": "marmara-credit-loops",
- "livecoinwatch_id": "_MCL",
- "explorer_url": "https://explorer.marmara.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "MCL",
- "fname": "Marmara Credit Loops",
- "rpcport": 33825,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10023",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10023",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10023",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20023",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30023"
- },
- {
- "url": "electrum2.cipig.net:20023",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30023"
- },
- {
- "url": "electrum3.cipig.net:20023",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30023"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MINDS-ERC20": {
- "coin": "MINDS-ERC20",
- "type": "ERC-20",
- "name": "Minds",
- "coinpaprika_id": "minds-minds",
- "coingecko_id": "minds",
- "livecoinwatch_id": "MINDS",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Minds",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB26631c6dda06aD89B93C71400D25692de89c068"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Minds Token",
- "links": {
- "homepage": "https://www.minds.com/"
- },
- "contract_address": "0xB26631c6dda06aD89B93C71400D25692de89c068",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MIL": {
- "coin": "MIL",
- "type": "UTXO",
- "name": "Milevium",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://chainz.cryptoid.info/mil/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "MIL Signed Message:\n",
- "fname": "Milevium",
- "rpcport": 41889,
- "pubtype": 50,
- "p2shtype": 196,
- "wiftype": 239,
- "txfee": 100000,
- "dust": 54600,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10069",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10069",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10069",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20069",
- "ws_url": "electrum1.cipig.net:30069",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:20069",
- "ws_url": "electrum2.cipig.net:30069",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:20069",
- "ws_url": "electrum3.cipig.net:30069",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "MIR-ERC20": {
- "coin": "MIR-ERC20",
- "type": "ERC-20",
- "name": "Mirror Protocol",
- "coinpaprika_id": "mir-mirror-protocol",
- "coingecko_id": "mirror-protocol",
- "livecoinwatch_id": "MIR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Mirror Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x09a3EcAFa817268f77BE1283176B946C4ff2E608"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x09a3EcAFa817268f77BE1283176B946C4ff2E608",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MIR-BEP20": {
- "coin": "MIR-BEP20",
- "type": "BEP-20",
- "name": "Mirror Protocol",
- "coinpaprika_id": "mir-mirror-protocol",
- "coingecko_id": "mirror-protocol",
- "livecoinwatch_id": "MIR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Mirror Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "MKR-AVX20": {
- "coin": "MKR-AVX20",
- "type": "AVX-20",
- "name": "Maker",
- "coinpaprika_id": "mkr-maker",
- "coingecko_id": "maker",
- "livecoinwatch_id": "MKR",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MKR-BEP20": {
- "coin": "MKR-BEP20",
- "type": "BEP-20",
- "name": "Maker",
- "coinpaprika_id": "mkr-maker",
- "coingecko_id": "maker",
- "livecoinwatch_id": "MKR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "MKR-ERC20": {
- "coin": "MKR-ERC20",
- "type": "ERC-20",
- "name": "Maker",
- "coinpaprika_id": "mkr-maker",
- "coingecko_id": "maker",
- "livecoinwatch_id": "MKR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "MakerDAO",
- "links": {
- "github": "https://github.com/makerdao",
- "homepage": "https://makerdao.com"
- },
- "contract_address": "0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MKR-KRC20": {
- "coin": "MKR-KRC20",
- "type": "KRC-20",
- "name": "Maker",
- "coinpaprika_id": "mkr-maker",
- "coingecko_id": "maker",
- "livecoinwatch_id": "MKR",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xdE81028C743f5304fe2cdEfac588f572d629a687"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xdE81028C743f5304fe2cdEfac588f572d629a687",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MKR-PLG20": {
- "coin": "MKR-PLG20",
- "type": "Matic",
- "name": "Maker",
- "coinpaprika_id": "",
- "coingecko_id": "maker",
- "livecoinwatch_id": "MKR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Maker",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MM-ERC20": {
- "coin": "MM-ERC20",
- "type": "ERC-20",
- "name": "Million",
- "coinpaprika_id": "mm-million",
- "coingecko_id": "million",
- "livecoinwatch_id": "_MM",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Million",
- "links": {
- "homepage": "https://www.milliontoken.org"
- },
- "contract_address": "0x6B4c7A5e3f0B99FCD83e9c089BDDD6c7FCe5c611",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MM-AVX20": {
- "coin": "MM-AVX20",
- "type": "AVX-20",
- "name": "Million",
- "coinpaprika_id": "mm-million",
- "coingecko_id": "million",
- "livecoinwatch_id": "_MM",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x993163CaD35162fB579D7B64e6695cB076EF5064"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x993163CaD35162fB579D7B64e6695cB076EF5064",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MM-BEP20": {
- "coin": "MM-BEP20",
- "type": "BEP-20",
- "name": "Million",
- "coinpaprika_id": "mm-million",
- "coingecko_id": "million",
- "livecoinwatch_id": "_MM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "MM-MVR20": {
- "coin": "MM-MVR20",
- "type": "Moonriver",
- "name": "Million",
- "coinpaprika_id": "mm-million",
- "coingecko_id": "million",
- "livecoinwatch_id": "_MM",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0x95bf7E307BC1ab0BA38ae10fc27084bC36FcD605"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0x95bf7E307BC1ab0BA38ae10fc27084bC36FcD605",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MM-PLG20": {
- "coin": "MM-PLG20",
- "type": "Matic",
- "name": "Million",
- "coinpaprika_id": "mm-million",
- "coingecko_id": "million",
- "livecoinwatch_id": "_MM",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Million",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MONA": {
- "coin": "MONA",
- "type": "UTXO",
- "name": "MonaCoin",
- "coinpaprika_id": "mona-monacoin",
- "coingecko_id": "monacoin",
- "livecoinwatch_id": "MONA",
- "explorer_url": "https://blockbook.electrum-mona.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Monacoin Signed Message:\n",
- "fname": "MonaCoin",
- "rpcport": 9402,
- "pubtype": 50,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "mona",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 90,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/22'",
- "trezor_coin": "Monacoin",
- "links": {
- "github": "https://github.com/monacoinproject/monacoin",
- "homepage": "https://monacoin.org"
- },
- "electrum": [
- {
- "url": "133.167.67.203:50001"
- },
- {
- "url": "electrumx.tamami-foundation.org:50001"
- },
- {
- "url": "electrumx1.monacoin.ninja:50001"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MONA-segwit": {
- "coin": "MONA-segwit",
- "type": "UTXO",
- "name": "MonaCoin",
- "coinpaprika_id": "mona-monacoin",
- "coingecko_id": "monacoin",
- "livecoinwatch_id": "MONA",
- "explorer_url": "https://blockbook.electrum-mona.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Monacoin Signed Message:\n",
- "fname": "MonaCoin",
- "rpcport": 9402,
- "pubtype": 50,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "mona",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "MONA",
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 90,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/22'",
- "trezor_coin": "Monacoin",
- "links": {
- "github": "https://github.com/monacoinproject/monacoin",
- "homepage": "https://monacoin.org"
- },
- "electrum": [
- {
- "url": "133.167.67.203:50001"
- },
- {
- "url": "electrumx.tamami-foundation.org:50001"
- },
- {
- "url": "electrumx1.monacoin.ninja:50001"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MOVR": {
- "coin": "MOVR",
- "type": "Moonriver",
- "name": "Moonriver",
- "coinpaprika_id": "movr-moonriver",
- "coingecko_id": "moonriver",
- "livecoinwatch_id": "MOVR",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Moonriver",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1285'",
- "trezor_coin": "Moonriver",
- "links": {
- "homepage": "https://moonbeam.network/networks/moonriver/"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "MOVR"
- },
- "GLMR": {
- "coin": "GLMR",
- "type": "Moonbeam",
- "name": "Moonbeam",
- "coinpaprika_id": "glmr-moonbeam",
- "coingecko_id": "moonbeam",
- "livecoinwatch_id": "GLMR",
- "explorer_url": "https://moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Moonbeam",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1284,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1284'",
- "trezor_coin": "Moonbeam",
- "links": {
- "homepage": "https://moonbeam.network/networks/moonbeam/"
- },
- "swap_contract_address": "0x6d9ce4BD298DE38bAfEFD15f5C6f5c95313B1d94",
- "fallback_swap_contract": "0x6d9ce4BD298DE38bAfEFD15f5C6f5c95313B1d94",
- "nodes": [
- {
- "url": "https://rpc.api.moonbeam.network"
- },
- {
- "url": "https://moonbeam.public.blastapi.io"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "GLMR"
- },
- "NAV": {
- "coin": "NAV",
- "type": "UTXO",
- "name": "Navcoin",
- "coinpaprika_id": "nav-navcoin",
- "coingecko_id": "nav-coin",
- "livecoinwatch_id": "NAV",
- "explorer_url": "https://www.navexplorer.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Navcoin Signed Message:\n",
- "fname": "Navcoin",
- "isPoS": 1,
- "txversion": 3,
- "confpath": "USERHOME/.navcoin4/navcoin.conf",
- "rpcport": 44444,
- "pubtype": 53,
- "p2shtype": 85,
- "wiftype": 150,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 10,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/130'",
- "electrum": [
- {
- "url": "electrum2.nav.community:40002",
- "protocol": "SSL",
- "ws_url": "electrum2.nav.community:40004"
- },
- {
- "url": "electrum3.nav.community:40002",
- "protocol": "SSL",
- "ws_url": "electrum3.nav.community:40004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "NAV-BEP20": {
- "coin": "NAV-BEP20",
- "type": "BEP-20",
- "name": "Navcoin",
- "coinpaprika_id": "nav-navcoin",
- "coingecko_id": "nav-coin",
- "livecoinwatch_id": "NAV",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Navcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "NEAR-BEP20": {
- "coin": "NEAR-BEP20",
- "type": "BEP-20",
- "name": "NEAR Protocol",
- "coinpaprika_id": "near-near-protocol",
- "coingecko_id": "near",
- "livecoinwatch_id": "NEAR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "NEAR Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "NENG": {
- "coin": "NENG",
- "type": "UTXO",
- "name": "Nengcoin",
- "coinpaprika_id": "neng-nengcoin",
- "coingecko_id": "nengcoin",
- "livecoinwatch_id": "NENG",
- "explorer_url": "http://nengexplorer.mooo.com:3001/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Nengcoin",
- "rpcport": 6376,
- "pubtype": 53,
- "p2shtype": 5,
- "wiftype": 176,
- "txfee": 200000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/681'",
- "electrum": [
- {
- "url": "electrum.shorelinecrypto.com:10001",
- "contact": [
- {
- "email": "support@shorelinecrypto.com"
- },
- {
- "discord": "honglu69#5911"
- }
- ]
- },
- {
- "url": "electrum1.mooo.com:10001",
- "contact": [
- {
- "email": "support@shorelinecrypto.com"
- },
- {
- "discord": "honglu69#5911"
- }
- ]
- },
- {
- "url": "electrum2.mooo.com:10001",
- "contact": [
- {
- "email": "support@shorelinecrypto.com"
- },
- {
- "discord": "honglu69#5911"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "NEXO-ERC20": {
- "coin": "NEXO-ERC20",
- "type": "ERC-20",
- "name": "Nexo",
- "coinpaprika_id": "nexo-nexo",
- "coingecko_id": "nexo",
- "livecoinwatch_id": "NEXO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Nexo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Nexo",
- "links": {
- "homepage": "http://nexo.io"
- },
- "contract_address": "0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "NEXO-KRC20": {
- "coin": "NEXO-KRC20",
- "type": "KRC-20",
- "name": "Nexo",
- "coinpaprika_id": "nexo-nexo",
- "coingecko_id": "nexo",
- "livecoinwatch_id": "NEXO",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Nexo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xb7A18bd55e8E3E2262d7c8Ee7b4DD9B216Df0Faf"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xb7A18bd55e8E3E2262d7c8Ee7b4DD9B216Df0Faf",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "NEXO-PLG20": {
- "coin": "NEXO-PLG20",
- "type": "Matic",
- "name": "Nexo",
- "coinpaprika_id": "nexo-nexo",
- "coingecko_id": "nexo",
- "livecoinwatch_id": "NEXO",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Nexo",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x41b3966B4FF7b427969ddf5da3627d6AEAE9a48E"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x41b3966B4FF7b427969ddf5da3627d6AEAE9a48E",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "NINJA": {
- "coin": "NINJA",
- "type": "Smart Chain",
- "name": "Ninja",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://ninja.komodo.earth/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "NINJA",
- "fname": "Ninja",
- "rpcport": 8427,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10036",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10036",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10036",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20036",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:20036",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:20036",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "NMC": {
- "coin": "NMC",
- "type": "UTXO",
- "name": "Namecoin",
- "coinpaprika_id": "nmc-namecoin",
- "coingecko_id": "namecoin",
- "livecoinwatch_id": "NMC",
- "explorer_url": "https://nmc.tokenview.com/en/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Namecoin",
- "rpcport": 8336,
- "pubtype": 52,
- "p2shtype": 13,
- "wiftype": 180,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "nc",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/7'",
- "trezor_coin": "Namecoin",
- "links": {
- "github": "https://github.com/namecoin/namecoin-core",
- "homepage": "https://namecoin.org"
- },
- "electrum": [
- {
- "url": "46.229.238.187:57001"
- },
- {
- "url": "nmc2.bitcoins.sk:57002",
- "protocol": "SSL",
- "disable_cert_verification": true
- }
- ],
- "explorer_block_url": "block/"
- },
- "NMC-segwit": {
- "coin": "NMC-segwit",
- "type": "UTXO",
- "name": "Namecoin",
- "coinpaprika_id": "nmc-namecoin",
- "coingecko_id": "namecoin",
- "livecoinwatch_id": "NMC",
- "explorer_url": "https://nmc.tokenview.com/en/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Namecoin",
- "rpcport": 8336,
- "pubtype": 52,
- "p2shtype": 13,
- "wiftype": 180,
- "txfee": 0,
- "segwit": true,
- "bech32_hrp": "nc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "NMC",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/7'",
- "trezor_coin": "Namecoin",
- "links": {
- "github": "https://github.com/namecoin/namecoin-core",
- "homepage": "https://namecoin.org"
- },
- "electrum": [
- {
- "url": "46.229.238.187:57001"
- },
- {
- "url": "nmc2.bitcoins.sk:57002",
- "protocol": "SSL",
- "disable_cert_verification": true
- }
- ],
- "explorer_block_url": "block/"
- },
- "NVC": {
- "coin": "NVC",
- "type": "UTXO",
- "name": "Novacoin",
- "coinpaprika_id": "nvc-novacoin",
- "coingecko_id": "novacoin",
- "livecoinwatch_id": "NVC",
- "explorer_url": "https://explorer.novaco.in/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Novacoin Signed Message:\n",
- "fname": "Novacoin",
- "isPoS": 1,
- "rpcport": 8344,
- "pubtype": 8,
- "p2shtype": 20,
- "wiftype": 136,
- "decimals": 6,
- "txfee": 1000,
- "dust": 10000,
- "mm2": 1,
- "mature_confirmations": 500,
- "required_confirmations": 1,
- "avg_blocktime": 450,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/50'",
- "electrum": [
- {
- "url": "electrumx.nvc.ewmcx.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "coins@ewmci.com"
- },
- {
- "discord": "[CryptoStan]#9341"
- },
- {
- "twitter": "EwmciL"
- },
- {
- "reddit": "NovacoinCommunity"
- },
- {
- "github": "novacoin-project"
- }
- ]
- },
- {
- "url": "failover.nvc.ewmcx.biz:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "coins@ewmci.com"
- },
- {
- "discord": "[CryptoStan]#9341"
- },
- {
- "twitter": "EwmciL"
- },
- {
- "reddit": "NovacoinCommunity"
- },
- {
- "github": "novacoin-project"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "NVC-BEP20": {
- "coin": "NVC-BEP20",
- "type": "BEP-20",
- "name": "Novacoin",
- "coinpaprika_id": "nvc-novacoin",
- "coingecko_id": "novacoin",
- "livecoinwatch_id": "NVC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Novacoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBF84720097de111A80f46f9D077643967042841A"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xBF84720097de111A80f46f9D077643967042841A",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "NVC-QRC20": {
- "coin": "NVC-QRC20",
- "type": "QRC-20",
- "name": "Novacoin",
- "coinpaprika_id": "nvc-novacoin",
- "coingecko_id": "novacoin",
- "livecoinwatch_id": "NVC",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Novacoin",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xffb67c56c42b71144ae394dbfe298d863fbb3b9e"
- }
- },
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xffb67c56c42b71144ae394dbfe298d863fbb3b9e",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "NZDS-ERC20": {
- "coin": "NZDS-ERC20",
- "type": "ERC-20",
- "name": "NZD Stablecoin",
- "coinpaprika_id": "",
- "coingecko_id": "nzd-stablecoin",
- "livecoinwatch_id": "NZD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "NZD Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xDa446fAd08277B4D2591536F204E018f32B6831c"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xDa446fAd08277B4D2591536F204E018f32B6831c",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "NZD"
- },
- "NZDS-PLG20": {
- "coin": "NZDS-PLG20",
- "type": "Matic",
- "name": "NZD Stablecoin",
- "coinpaprika_id": "",
- "coingecko_id": "nzd-stablecoin",
- "livecoinwatch_id": "NZD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "NZD Stablecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xeaFE31Cd9e8E01C8f0073A2C974f728Fb80e9DcE"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xeaFE31Cd9e8E01C8f0073A2C974f728Fb80e9DcE",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "NZD"
- },
- "OCEAN-BEP20": {
- "coin": "OCEAN-BEP20",
- "type": "BEP-20",
- "name": "Ocean Protocol",
- "coinpaprika_id": "ocean-ocean-protocol",
- "coingecko_id": "ocean-protocol",
- "livecoinwatch_id": "OCEAN",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ocean Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "OCEAN-ERC20": {
- "coin": "OCEAN-ERC20",
- "type": "ERC-20",
- "name": "Ocean Protocol",
- "coinpaprika_id": "ocean-ocean-protocol",
- "coingecko_id": "ocean-protocol",
- "livecoinwatch_id": "OCEAN",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ocean Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Ocean Token",
- "links": {
- "github": "https://github.com/oceanprotocol",
- "homepage": "https://oceanprotocol.com"
- },
- "contract_address": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "OCEAN-PLG20": {
- "coin": "OCEAN-PLG20",
- "type": "Matic",
- "name": "Ocean Protocol",
- "coinpaprika_id": "ocean-ocean-protocol",
- "coingecko_id": "ocean-protocol",
- "livecoinwatch_id": "OCEAN",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ocean Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "OMG-ERC20": {
- "coin": "OMG-ERC20",
- "type": "ERC-20",
- "name": "OMG Network",
- "coinpaprika_id": "omg-omg-network",
- "coingecko_id": "omisego",
- "livecoinwatch_id": "OMG",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "OMG Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "OmiseGO",
- "links": {
- "github": "https://github.com/omisego",
- "homepage": "https://omg.omise.co"
- },
- "contract_address": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "OMG-PLG20": {
- "coin": "OMG-PLG20",
- "type": "Matic",
- "name": "OMG Network",
- "coinpaprika_id": "omg-omg-network",
- "coingecko_id": "omisego",
- "livecoinwatch_id": "OMG",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "OMG Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x62414D03084EeB269E18C970a21f45D2967F0170"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x62414D03084EeB269E18C970a21f45D2967F0170",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ONE": {
- "coin": "ONE",
- "type": "HRC-20",
- "name": "Harmony",
- "coinpaprika_id": "one-harmony",
- "coingecko_id": "harmony",
- "livecoinwatch_id": "ONE",
- "explorer_url": "https://explorer.harmony.one/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Harmony",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1666600000,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/1023'",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/harmony",
- "gui_auth": true
- },
- {
- "url": "https://api.harmony.one"
- },
- {
- "url": "https://api.s0.t.hmny.io"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ONE"
- },
- "ONT-BEP20": {
- "coin": "ONT-BEP20",
- "type": "BEP-20",
- "name": "Ontology",
- "coinpaprika_id": "ont-ontology",
- "coingecko_id": "ontology",
- "livecoinwatch_id": "ONT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ontology",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "PAX-ERC20": {
- "coin": "PAX-ERC20",
- "type": "ERC-20",
- "name": "Paxos Standard",
- "coinpaprika_id": "pax-paxos-standard-token",
- "coingecko_id": "paxos-standard",
- "livecoinwatch_id": "USDP",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8E870D67F660D95d5be530380D0eC0bd388289E1"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Paxos Standard (PAX)",
- "links": {
- "github": "https://github.com/paxosglobal",
- "homepage": "https://www.paxos.com/standard"
- },
- "contract_address": "0x8E870D67F660D95d5be530380D0eC0bd388289E1",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "PAX-BEP20": {
- "coin": "PAX-BEP20",
- "type": "BEP-20",
- "name": "Paxos Standard",
- "coinpaprika_id": "pax-paxos-standard-token",
- "coingecko_id": "paxos-standard",
- "livecoinwatch_id": "USDP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "PAX-KRC20": {
- "coin": "PAX-KRC20",
- "type": "KRC-20",
- "name": "Paxos Standard",
- "coinpaprika_id": "pax-paxos-standard-token",
- "coingecko_id": "paxos-standard",
- "livecoinwatch_id": "USDP",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x69a7169F9Da9BBa04b982e49Ffd8d6a16c70c590"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x69a7169F9Da9BBa04b982e49Ffd8d6a16c70c590",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PAX-PLG20": {
- "coin": "PAX-PLG20",
- "type": "Matic",
- "name": "Paxos Standard",
- "coinpaprika_id": "pax-paxos-standard-token",
- "coingecko_id": "paxos-standard",
- "livecoinwatch_id": "USDP",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Paxos Standard",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6F3B3286fd86d8b47EC737CEB3D0D354cc657B3e"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x6F3B3286fd86d8b47EC737CEB3D0D354cc657B3e",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PAXG-BEP20": {
- "coin": "PAXG-BEP20",
- "type": "BEP-20",
- "name": "PAX Gold",
- "coinpaprika_id": "paxg-pax-gold",
- "coingecko_id": "pax-gold",
- "livecoinwatch_id": "PAXG",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PAX Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7950865a9140cB519342433146Ed5b40c6F210f7"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7950865a9140cB519342433146Ed5b40c6F210f7",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "PAXG-ERC20": {
- "coin": "PAXG-ERC20",
- "type": "ERC-20",
- "name": "PAX Gold",
- "coinpaprika_id": "paxg-pax-gold",
- "coingecko_id": "pax-gold",
- "livecoinwatch_id": "PAXG",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "PAX Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x45804880De22913dAFE09f4980848ECE6EcbAf78"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Paxos Gold",
- "links": {
- "github": "https://github.com/paxosglobal/paxos-gold-contract",
- "homepage": "https://www.paxos.com/paxgold"
- },
- "contract_address": "0x45804880De22913dAFE09f4980848ECE6EcbAf78",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "PAXG-PLG20": {
- "coin": "PAXG-PLG20",
- "type": "Matic",
- "name": "PAX Gold",
- "coinpaprika_id": "paxg-pax-gold",
- "coingecko_id": "pax-gold",
- "livecoinwatch_id": "PAXG",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PAX Gold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x553d3D295e0f695B9228246232eDF400ed3560B5"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x553d3D295e0f695B9228246232eDF400ed3560B5",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PINK": {
- "coin": "PINK",
- "type": "UTXO",
- "name": "Pinkcoin",
- "coinpaprika_id": "pink-pinkcoin",
- "coingecko_id": "pinkcoin",
- "livecoinwatch_id": "PINK",
- "explorer_url": "https://chainz.cryptoid.info/pink/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Pinkcoin Signed Message:\n",
- "fname": "Pinkcoin",
- "rpcport": 9135,
- "isPoS": 1,
- "pubtype": 3,
- "p2shtype": 28,
- "wiftype": 131,
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/117'",
- "links": {
- "github": "https://github.com/Pink2Dev/Pink2",
- "homepage": "https://getstarted.with.pink"
- },
- "electrum": [
- {
- "url": "pink-one.ewm-cx.net:50001",
- "protocol": "TCP"
- },
- {
- "url": "pink-two.ewm-cx.net:50001",
- "protocol": "TCP"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "PIVX": {
- "coin": "PIVX",
- "type": "UTXO",
- "name": "PIVX",
- "coinpaprika_id": "pivx-pivx",
- "coingecko_id": "pivx",
- "livecoinwatch_id": "PIVX",
- "explorer_url": "https://chainz.cryptoid.info/pivx/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PIVX",
- "rpcport": 51473,
- "pubtype": 30,
- "p2shtype": 13,
- "wiftype": 212,
- "txfee": 100000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/119'",
- "electrum": [
- {
- "url": "electrum01.chainster.org:50001",
- "ws_url": "electrum01.chainster.org:50003",
- "contact": [
- {
- "discord": "312541186793406465"
- }
- ]
- },
- {
- "url": "electrum02.chainster.org:50001",
- "ws_url": "electrum02.chainster.org:50003",
- "contact": [
- {
- "discord": "312541186793406465"
- }
- ]
- }
- ],
- "explorer_block_url": "block.dws?",
- "binance_id": "PIVX"
- },
- "PND": {
- "coin": "PND",
- "type": "UTXO",
- "name": "Pandacoin",
- "coinpaprika_id": "pnd-pandacoin",
- "coingecko_id": "pandacoin",
- "livecoinwatch_id": "PND",
- "explorer_url": "https://chainz.cryptoid.info/pnd/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Pandacoin",
- "isPoS": 1,
- "rpcport": 22444,
- "pubtype": 55,
- "p2shtype": 22,
- "wiftype": 183,
- "decimals": 6,
- "txfee": 10000000,
- "dust": 1000000,
- "segwit": true,
- "bech32_hrp": "pn",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/37'",
- "electrum": [
- {
- "url": "electrum.thepandacoin.net:50001",
- "ws_url": "electrum.thepandacoin.net:443"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "POT": {
- "coin": "POT",
- "type": "UTXO",
- "name": "PotCoin",
- "coinpaprika_id": "pot-potcoin",
- "coingecko_id": "potcoin",
- "livecoinwatch_id": "_POT",
- "explorer_url": "https://chainz.cryptoid.info/pot/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Potcoin Signed Message:\n",
- "fname": "PotCoin",
- "isPoSV": 1,
- "rpcport": 42000,
- "pubtype": 55,
- "p2shtype": 5,
- "wiftype": 183,
- "txversion": 4,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 240,
- "required_confirmations": 5,
- "avg_blocktime": 40,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/81'",
- "electrum": [
- {
- "url": "pot-duo.ewmcx.net:50012",
- "protocol": "SSL",
- "ws_url": "pot-duo.ewmcx.net:50013"
- },
- {
- "url": "pot-uno.ewmcx.net:50002",
- "protocol": "SSL",
- "ws_url": "pot-uno.ewmcx.net:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "POT-ERC20": {
- "coin": "POT-ERC20",
- "type": "ERC-20",
- "name": "PotCoin",
- "coinpaprika_id": "",
- "coingecko_id": "potcoin",
- "livecoinwatch_id": "_POT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PotCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x390603F023A33C76e3A4bf7B6Cc9Fba5E87dd05D"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x390603F023A33C76e3A4bf7B6Cc9Fba5E87dd05D",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "POT-PLG20": {
- "coin": "POT-PLG20",
- "type": "Matic",
- "name": "PotCoin",
- "coinpaprika_id": "",
- "coingecko_id": "potcoin",
- "livecoinwatch_id": "_POT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PotCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xd7c8469c7eC40f853dA5f651DE81b45aeD47e5aB"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xd7c8469c7eC40f853dA5f651DE81b45aeD47e5aB",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "POWR-ERC20": {
- "coin": "POWR-ERC20",
- "type": "ERC-20",
- "name": "Power Ledger",
- "coinpaprika_id": "powr-power-ledger",
- "coingecko_id": "power-ledger",
- "livecoinwatch_id": "POWR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Power Ledger",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x595832F8FC6BF59c85C527fEC3740A1b7a361269"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "PowerLedger",
- "links": {
- "homepage": "https://powerledger.io"
- },
- "contract_address": "0x595832F8FC6BF59c85C527fEC3740A1b7a361269",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "POWR-PLG20": {
- "coin": "POWR-PLG20",
- "type": "Matic",
- "name": "Power Ledger",
- "coinpaprika_id": "powr-power-ledger",
- "coingecko_id": "power-ledger",
- "livecoinwatch_id": "POWR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Power Ledger",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0AaB8DC887D34f00D50E19aee48371a941390d14"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x0AaB8DC887D34f00D50E19aee48371a941390d14",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PPC": {
- "coin": "PPC",
- "type": "UTXO",
- "name": "Peercoin",
- "coinpaprika_id": "ppc-peercoin",
- "coingecko_id": "peercoin",
- "livecoinwatch_id": "PPC",
- "explorer_url": "https://chainz.cryptoid.info/ppc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Peercoin",
- "isPoS": 1,
- "rpcport": 9902,
- "pubtype": 55,
- "p2shtype": 117,
- "wiftype": 183,
- "decimals": 6,
- "txfee": 0,
- "dust": 10000,
- "segwit": true,
- "bech32_hrp": "pc",
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 510,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/6'",
- "trezor_coin": "Peercoin",
- "links": {
- "github": "https://github.com/peercoin/peercoin",
- "homepage": "https://peercoin.net"
- },
- "electrum": [
- {
- "url": "allingas.peercoinexplorer.net:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "allingas.peercoinexplorer.net:50004"
- },
- {
- "url": "electrum.peercoinexplorer.net:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "electrum.peercoinexplorer.net:50004"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "PPC-ERC20": {
- "coin": "PPC-ERC20",
- "type": "ERC-20",
- "name": "Peercoin",
- "coinpaprika_id": "ppc-peercoin",
- "coingecko_id": "peercoin",
- "livecoinwatch_id": "PPC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Peercoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x044d078F1c86508e13328842Cc75AC021B272958"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x044d078F1c86508e13328842Cc75AC021B272958",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "PPC-PLG20": {
- "coin": "PPC-PLG20",
- "type": "Matic",
- "name": "Peercoin",
- "coinpaprika_id": "ppc-peercoin",
- "coingecko_id": "peercoin",
- "livecoinwatch_id": "PPC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Peercoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x91E7E32C710661C44ae44D10Aa86135d91C3Ed65"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x91E7E32C710661C44ae44D10Aa86135d91C3Ed65",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PRCY-BEP20": {
- "coin": "PRCY-BEP20",
- "type": "BEP-20",
- "name": "PRivaCY Coin",
- "coinpaprika_id": "prcy-privacy-coin",
- "coingecko_id": "privacy-coin",
- "livecoinwatch_id": "PRCY",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PRivaCY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "PRCY-ERC20": {
- "coin": "PRCY-ERC20",
- "type": "ERC-20",
- "name": "PRivaCY Coin",
- "coinpaprika_id": "prcy-privacy-coin",
- "coingecko_id": "privacy-coin",
- "livecoinwatch_id": "PRCY",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PRivaCY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 8,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "PRCY-PLG20": {
- "coin": "PRCY-PLG20",
- "type": "Matic",
- "name": "PRivaCY Coin",
- "coinpaprika_id": "prcy-privacy-coin",
- "coingecko_id": "privacy-coin",
- "livecoinwatch_id": "PRCY",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PRivaCY Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PRUX": {
- "coin": "PRUX",
- "type": "UTXO",
- "name": "PRUX",
- "coinpaprika_id": "prux-prux-coin",
- "coingecko_id": "prux-coin",
- "livecoinwatch_id": "",
- "explorer_url": "https://explorer.prux.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "PRUX",
- "rpcport": 19595,
- "pubtype": 55,
- "p2shtype": 117,
- "wiftype": 183,
- "txfee": 10000,
- "segwit": false,
- "bech32_hrp": "pr",
- "mm2": 1,
- "required_confirmations": 9,
- "avg_blocktime": 9,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx.live:50010",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "PRUX-Coin#1668"
- }
- ]
- },
- {
- "url": "txserver.live:50001",
- "protocol": "TCP",
- "contact": [
- {
- "discord": "PRUX-Coin#1668"
- }
- ]
- },
- {
- "url": "electrumx.live:50012",
- "protocol": "SSL",
- "ws_url": "electrumx.live:30010",
- "contact": [
- {
- "discord": "PRUX-Coin#1668"
- }
- ]
- },
- {
- "url": "txserver.live:50002",
- "protocol": "SSL",
- "ws_url": "txserver.live:30001",
- "contact": [
- {
- "discord": "PRUX-Coin#1668"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "PYR-ERC20": {
- "coin": "PYR-ERC20",
- "type": "ERC-20",
- "name": "Vulcan Forged",
- "coinpaprika_id": "pyr-vulcan-forged",
- "coingecko_id": "vulcan-forged",
- "livecoinwatch_id": "PYR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Vulcan Forged",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "PYR-PLG20": {
- "coin": "PYR-PLG20",
- "type": "Matic",
- "name": "Vulcan Forged",
- "coinpaprika_id": "",
- "coingecko_id": "vulcan-forged",
- "livecoinwatch_id": "PYR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Vulcan Forged",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SHIB-BEP20": {
- "coin": "SHIB-BEP20",
- "type": "BEP-20",
- "name": "Shiba Inu",
- "coinpaprika_id": "shib-shiba-inu",
- "coingecko_id": "shiba-inu",
- "livecoinwatch_id": "SHIB",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SHIB-ERC20": {
- "coin": "SHIB-ERC20",
- "type": "ERC-20",
- "name": "Shiba Inu",
- "coinpaprika_id": "shib-shiba-inu",
- "coingecko_id": "shiba-inu",
- "livecoinwatch_id": "SHIB",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SHIBA INU",
- "links": {
- "homepage": "https://shibatoken.com"
- },
- "contract_address": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SHIB-KRC20": {
- "coin": "SHIB-KRC20",
- "type": "KRC-20",
- "name": "Shiba Inu",
- "coinpaprika_id": "shib-shiba-inu",
- "coingecko_id": "shiba-inu",
- "livecoinwatch_id": "SHIB",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x73b6086955c820370A18002F60E9b51FB67d7e1A"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x73b6086955c820370A18002F60E9b51FB67d7e1A",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SHIB-PLG20": {
- "coin": "SHIB-PLG20",
- "type": "Matic",
- "name": "Shiba Inu",
- "coinpaprika_id": "",
- "coingecko_id": "shiba-inu",
- "livecoinwatch_id": "SHIB",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Shiba Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6f8a06447Ff6FcF75d803135a7de15CE88C1d4ec"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x6f8a06447Ff6FcF75d803135a7de15CE88C1d4ec",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QC-QRC20": {
- "coin": "QC-QRC20",
- "type": "QRC-20",
- "name": "Qcash",
- "coinpaprika_id": "qc-qcash",
- "coingecko_id": "qcash",
- "livecoinwatch_id": "QC",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Qcash",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xf2033ede578e17fa6231047265010445bca8cf1c"
- }
- },
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xf2033ede578e17fa6231047265010445bca8cf1c",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QIAIR-QRC20": {
- "coin": "QIAIR-QRC20",
- "type": "QRC-20",
- "name": "Qi Airdrop Token",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Qi Airdrop Token",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x60f33e17d8d2dba280cf85b6c35880dedd8ed728"
- }
- },
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x60f33e17d8d2dba280cf85b6c35880dedd8ed728",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QI-QRC20": {
- "coin": "QI-QRC20",
- "type": "QRC-20",
- "name": "Qi Swap",
- "coinpaprika_id": "qi-qiswap",
- "coingecko_id": "qiswap",
- "livecoinwatch_id": "QI",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Qi Swap",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x54fefdb5b31164f66ddb68becd7bdd864cacd65b"
- }
- },
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x54fefdb5b31164f66ddb68becd7bdd864cacd65b",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QKC-BEP20": {
- "coin": "QKC-BEP20",
- "type": "BEP-20",
- "name": "QuarkChain",
- "coinpaprika_id": "qkc-quarkchain",
- "coingecko_id": "quark-chain",
- "livecoinwatch_id": "QKC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "QuarkChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xA1434F1FC3F437fa33F7a781E041961C0205B5Da"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xA1434F1FC3F437fa33F7a781E041961C0205B5Da",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "QKC-ERC20": {
- "coin": "QKC-ERC20",
- "type": "ERC-20",
- "name": "QuarkChain",
- "coinpaprika_id": "qkc-quarkchain",
- "coingecko_id": "quark-chain",
- "livecoinwatch_id": "QKC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "QuarkChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "QuarkChain",
- "links": {
- "homepage": "https://quarkchain.io"
- },
- "contract_address": "0xEA26c4aC16D4a5A106820BC8AEE85fd0b7b2b664",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "QNT-ERC20": {
- "coin": "QNT-ERC20",
- "type": "ERC-20",
- "name": "Quant",
- "coinpaprika_id": "qnt-quant",
- "coingecko_id": "quant-network",
- "livecoinwatch_id": "QNT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Quant",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4a220E6096B25EADb88358cb44068A3248254675"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Quant",
- "links": {
- "github": "https://github.com/quantnetwork",
- "homepage": "https://www.quant.network/"
- },
- "contract_address": "0x4a220E6096B25EADb88358cb44068A3248254675",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "QNT-KRC20": {
- "coin": "QNT-KRC20",
- "type": "KRC-20",
- "name": "Quant",
- "coinpaprika_id": "qnt-quant",
- "coingecko_id": "quant-network",
- "livecoinwatch_id": "QNT",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Quant",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x791630C11c7159A748d8c2267a66780B3DDC40a7"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x791630C11c7159A748d8c2267a66780B3DDC40a7",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QRC20": {
- "coin": "QRC20",
- "type": "QRC-20",
- "name": "QRC20",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://testnet.qtum.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "QRC20",
- "pubtype": 120,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 400000,
- "mm2": 1,
- "mature_confirmations": 2000,
- "required_confirmations": 1,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "tQTUM",
- "contract_address": "0xd362e096e873eb7907e205fadc6175c6fec7bc44"
- }
- },
- "contract_address": "0xd362e096e873eb7907e205fadc6175c6fec7bc44",
- "parent_coin": "tQTUM",
- "swap_contract_address": "0xba8b71f3544b93e2f681f996da519a98ace0107a",
- "fallback_swap_contract": "0xba8b71f3544b93e2f681f996da519a98ace0107a",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10071",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10071",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10071",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20071",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30071"
- },
- {
- "url": "electrum2.cipig.net:20071",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30071"
- },
- {
- "url": "electrum3.cipig.net:20071",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30071"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QTUM": {
- "coin": "QTUM",
- "type": "QRC-20",
- "name": "Qtum",
- "coinpaprika_id": "qtum-qtum",
- "coingecko_id": "qtum",
- "livecoinwatch_id": "QTUM",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Qtum Signed Message:\n",
- "fname": "Qtum",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": true,
- "bech32_hrp": "qc",
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "force_min_relay_fee": true,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QTUM"
- },
- "derivation_path": "m/44'/2301'",
- "trezor_coin": "Qtum",
- "links": {
- "github": "https://github.com/qtumproject/qtum",
- "homepage": "https://qtum.org"
- },
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "QTUM"
- },
- "QTUM-ERC20": {
- "coin": "QTUM-ERC20",
- "type": "ERC-20",
- "name": "Qtum",
- "coinpaprika_id": "qtum-qtum",
- "coingecko_id": "qtum",
- "livecoinwatch_id": "QTUM",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Qtum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3103dF8F05c4D8aF16fD22AE63E406b97FeC6938"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Qtum",
- "links": {
- "github": "https://github.com/qtumproject",
- "homepage": "https://qtum.org/"
- },
- "contract_address": "0x3103dF8F05c4D8aF16fD22AE63E406b97FeC6938",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "QTUM"
- },
- "tQTUM": {
- "coin": "tQTUM",
- "type": "QRC-20",
- "name": "QTUM Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://testnet.qtum.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "QTUM Testnet",
- "rpcport": 13889,
- "pubtype": 120,
- "p2shtype": 110,
- "wiftype": 239,
- "segwit": true,
- "bech32_hrp": "tq",
- "txfee": 400000,
- "mm2": 1,
- "required_confirmations": 1,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QTUM"
- },
- "swap_contract_address": "0xba8b71f3544b93e2f681f996da519a98ace0107a",
- "fallback_swap_contract": "0xba8b71f3544b93e2f681f996da519a98ace0107a",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10071",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10071",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10071",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20071",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30071"
- },
- {
- "url": "electrum2.cipig.net:20071",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30071"
- },
- {
- "url": "electrum3.cipig.net:20071",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30071"
- }
- ],
- "explorer_block_url": "block/"
- },
- "RDD": {
- "coin": "RDD",
- "type": "UTXO",
- "name": "ReddCoin",
- "coinpaprika_id": "rdd-reddcoin",
- "coingecko_id": "reddcoin",
- "livecoinwatch_id": "RDD",
- "explorer_url": "https://live.reddcoin.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "ReddCoin",
- "isPoSV": 1,
- "rpcport": 45443,
- "pubtype": 61,
- "p2shtype": 5,
- "wiftype": 189,
- "txversion": 2,
- "txfee": 100000,
- "dust": 100000,
- "segwit": false,
- "mm2": 1,
- "mature_confirmations": 30,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/4'",
- "trezor_coin": "Reddcoin",
- "links": {
- "github": "https://github.com/reddcoin-project/reddcoin",
- "homepage": "https://reddcoin.com"
- },
- "electrum": [
- {
- "url": "electrum01.reddcoin.com:50002",
- "protocol": "SSL",
- "ws_url": "electrum01.reddcoin.com:50004"
- },
- {
- "url": "electrum02.reddcoin.com:50002",
- "protocol": "SSL",
- "ws_url": "electrum02.reddcoin.com:50004"
- },
- {
- "url": "electrum03.reddcoin.com:50002",
- "protocol": "SSL",
- "ws_url": "electrum03.reddcoin.com:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "REN-ERC20": {
- "coin": "REN-ERC20",
- "type": "ERC-20",
- "name": "Ren",
- "coinpaprika_id": "ren-republic-protocol",
- "coingecko_id": "republic-protocol",
- "livecoinwatch_id": "REN",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ren",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x408e41876cCCDC0F92210600ef50372656052a38"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Republic Token",
- "links": {
- "github": "https://github.com/renproject",
- "homepage": "https://renproject.io/"
- },
- "contract_address": "0x408e41876cCCDC0F92210600ef50372656052a38",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "REN-HCO20": {
- "coin": "REN-HCO20",
- "type": "HecoChain",
- "name": "Ren",
- "coinpaprika_id": "ren-republic-protocol",
- "coingecko_id": "republic-protocol",
- "livecoinwatch_id": "REN",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ren",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x212208bcc81F3a2D0188afF76A2d39351eb53b96"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x212208bcc81F3a2D0188afF76A2d39351eb53b96",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "REP-ERC20": {
- "coin": "REP-ERC20",
- "type": "ERC-20",
- "name": "Augur",
- "coinpaprika_id": "rep-augur",
- "coingecko_id": "augur",
- "livecoinwatch_id": "REP",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Augur",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x221657776846890989a759BA2973e427DfF5C9bB"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Augur",
- "links": {
- "homepage": "https://augur.net"
- },
- "contract_address": "0x221657776846890989a759BA2973e427DfF5C9bB",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "REQ-ERC20": {
- "coin": "REQ-ERC20",
- "type": "ERC-20",
- "name": "Request",
- "coinpaprika_id": "req-request-network",
- "coingecko_id": "request-network",
- "livecoinwatch_id": "REQ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Request",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x8f8221aFbB33998d8584A2B05749bA73c37a938a",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "REQ-PLG20": {
- "coin": "REQ-PLG20",
- "type": "Matic",
- "name": "Request",
- "coinpaprika_id": "",
- "coingecko_id": "request-network",
- "livecoinwatch_id": "REQ",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Request",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "DOC": {
- "coin": "DOC",
- "type": "Smart Chain",
- "name": "DOC",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://doc.komodo.earth/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "DOC",
- "fname": "DOC",
- "rpcport": 62415,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 1,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10020",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10020",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10020",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20020",
- "ws_url": "electrum1.cipig.net:30020",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:20020",
- "ws_url": "electrum2.cipig.net:30020",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:20020",
- "ws_url": "electrum3.cipig.net:30020",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "MARTY": {
- "coin": "MARTY",
- "type": "Smart Chain",
- "name": "MARTY",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://marty.komodo.earth/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "MARTY",
- "fname": "MARTY",
- "rpcport": 52592,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 1,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10021",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10021",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10021",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20021",
- "ws_url": "electrum1.cipig.net:30021",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:20021",
- "ws_url": "electrum2.cipig.net:30021",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:20021",
- "ws_url": "electrum3.cipig.net:30021",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "RLC-ERC20": {
- "coin": "RLC-ERC20",
- "type": "ERC-20",
- "name": "iExec RLC",
- "coinpaprika_id": "rlc-iexec-rlc",
- "coingecko_id": "iexec-rlc",
- "livecoinwatch_id": "RLC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "iExec RLC",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 9,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x607F4C5BB672230e8672085532f7e901544a7375"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "IEx.ec",
- "links": {
- "homepage": "http://iex.ec/"
- },
- "contract_address": "0x607F4C5BB672230e8672085532f7e901544a7375",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "RLC-PLG20": {
- "coin": "RLC-PLG20",
- "type": "Matic",
- "name": "iExec RLC",
- "coinpaprika_id": "rlc-iexec-rlc",
- "coingecko_id": "iexec-rlc",
- "livecoinwatch_id": "RLC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "iExec RLC",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 9,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xbe662058e00849C3Eef2AC9664f37fEfdF2cdbFE"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xbe662058e00849C3Eef2AC9664f37fEfdF2cdbFE",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "RNDR-ERC20": {
- "coin": "RNDR-ERC20",
- "type": "ERC-20",
- "name": "Render",
- "coinpaprika_id": "rndr-render-token",
- "coingecko_id": "render-token",
- "livecoinwatch_id": "RNDR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Render",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x6De037ef9aD2725EB40118Bb1702EBb27e4Aeb24",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "RNDR-PLG20": {
- "coin": "RNDR-PLG20",
- "type": "Matic",
- "name": "Render",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "RNDR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Render",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x61299774020dA444Af134c82fa83E3810b309991"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x61299774020dA444Af134c82fa83E3810b309991",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "RPL-ERC20": {
- "coin": "RPL-ERC20",
- "type": "ERC-20",
- "name": "Rocket Pool",
- "coinpaprika_id": "rpl-rocket-pool",
- "coingecko_id": "rocket-pool",
- "livecoinwatch_id": "RPL",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Rocket Pool",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xD33526068D116cE69F19A9ee46F0bd304F21A51f",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "RSR-ERC20": {
- "coin": "RSR-ERC20",
- "type": "ERC-20",
- "name": "Reserve Rights",
- "coinpaprika_id": "rsr-reserve-rights",
- "coingecko_id": "reserve-rights-token",
- "livecoinwatch_id": "RSR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Reserve Rights",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x320623b8E4fF03373931769A31Fc52A4E78B5d70"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Reserve Rights",
- "links": {
- "github": "https://github.com/reserve-protocol/rsr-mainnet",
- "homepage": "https://reserve.org"
- },
- "contract_address": "0x320623b8E4fF03373931769A31Fc52A4E78B5d70",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "RTM": {
- "coin": "RTM",
- "type": "UTXO",
- "name": "Raptoreum",
- "coinpaprika_id": "rtm-raptoreum",
- "coingecko_id": "raptoreum",
- "livecoinwatch_id": "RTM",
- "explorer_url": "https://explorer.raptoreum.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Raptoreum",
- "rpcport": 9998,
- "pubtype": 60,
- "p2shtype": 16,
- "wiftype": 128,
- "txfee": 1000,
- "mm2": 1,
- "confpath": "USERHOME/.raptoreumcore/raptoreum.conf",
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/10226'",
- "electrum": [
- {
- "url": "x1.raptoreum.com:50001",
- "ws_url": "x1.raptoreum.com:50004"
- },
- {
- "url": "x2.raptoreum.com:50001",
- "ws_url": "x2.raptoreum.com:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "RTM-BEP20": {
- "coin": "RTM-BEP20",
- "type": "BEP-20",
- "name": "Raptoreum",
- "coinpaprika_id": "rtm-raptoreum",
- "coingecko_id": "raptoreum",
- "livecoinwatch_id": "RTM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Raptoreum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xF7C71cab11E3694638Bb9A106E0F430565BD15F1"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xF7C71cab11E3694638Bb9A106E0F430565BD15F1",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "RVN": {
- "coin": "RVN",
- "type": "UTXO",
- "name": "RavenCoin",
- "coinpaprika_id": "rvn-ravencoin",
- "coingecko_id": "ravencoin",
- "livecoinwatch_id": "RVN",
- "explorer_url": "https://ravencoin.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Raven Signed Message:\n",
- "fname": "RavenCoin",
- "rpcport": 8766,
- "pubtype": 60,
- "p2shtype": 122,
- "wiftype": 128,
- "segwit": true,
- "txfee": 1000000,
- "dust": 1000000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/175'",
- "trezor_coin": "Ravencoin",
- "links": {
- "github": "https://github.com/RavenProject/Ravencoin",
- "homepage": "https://ravencoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10051",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10051",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10051",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20051",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30051"
- },
- {
- "url": "electrum2.cipig.net:20051",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30051"
- },
- {
- "url": "electrum3.cipig.net:20051",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30051"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "RVN"
- },
- "SAND-ERC20": {
- "coin": "SAND-ERC20",
- "type": "ERC-20",
- "name": "The Sandbox",
- "coinpaprika_id": "sand-the-sandbox",
- "coingecko_id": "the-sandbox",
- "livecoinwatch_id": "SAND",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Sandbox",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x3845badAde8e6dFF049820680d1F14bD3903a5d0",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SAND-BEP20": {
- "coin": "SAND-BEP20",
- "type": "BEP-20",
- "name": "The Sandbox",
- "coinpaprika_id": "sand-the-sandbox",
- "coingecko_id": "the-sandbox",
- "livecoinwatch_id": "SAND",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Sandbox",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SAND-PLG20": {
- "coin": "SAND-PLG20",
- "type": "Matic",
- "name": "The Sandbox",
- "coinpaprika_id": "sand-the-sandbox",
- "coingecko_id": "the-sandbox",
- "livecoinwatch_id": "SAND",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "The Sandbox",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SCRT-BEP20": {
- "coin": "SCRT-BEP20",
- "type": "BEP-20",
- "name": "Secret",
- "coinpaprika_id": "scrt-secret",
- "coingecko_id": "secret",
- "livecoinwatch_id": "SCRT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Secret",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SIGNA-BEP20": {
- "coin": "SIGNA-BEP20",
- "type": "BEP-20",
- "name": "Signum",
- "coinpaprika_id": "signa-signa",
- "coingecko_id": "signum",
- "livecoinwatch_id": "SIGNA",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Signum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7b0E7E40eE4672599F7095D1DdD730b0805195BA"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7b0E7E40eE4672599F7095D1DdD730b0805195BA",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SNX-AVX20": {
- "coin": "SNX-AVX20",
- "type": "AVX-20",
- "name": "Synthetix",
- "coinpaprika_id": "snx-synthetix-network-token",
- "coingecko_id": "havven",
- "livecoinwatch_id": "SNX",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SNX-BEP20": {
- "coin": "SNX-BEP20",
- "type": "BEP-20",
- "name": "Synthetix",
- "coinpaprika_id": "snx-synthetix-network-token",
- "coingecko_id": "havven",
- "livecoinwatch_id": "SNX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SNX-ERC20": {
- "coin": "SNX-ERC20",
- "type": "ERC-20",
- "name": "Synthetix",
- "coinpaprika_id": "snx-synthetix-network-token",
- "coingecko_id": "havven",
- "livecoinwatch_id": "SNX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Synthetix Network Token",
- "links": {
- "github": "https://github.com/havven/havven",
- "homepage": "https://synthetix.io"
- },
- "contract_address": "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SNX-FTM20": {
- "coin": "SNX-FTM20",
- "type": "FTM-20",
- "name": "Synthetix",
- "coinpaprika_id": "snx-synthetix-network-token",
- "coingecko_id": "havven",
- "livecoinwatch_id": "SNX",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SNX-KRC20": {
- "coin": "SNX-KRC20",
- "type": "KRC-20",
- "name": "Synthetix",
- "coinpaprika_id": "snx-synthetix-network-token",
- "coingecko_id": "havven",
- "livecoinwatch_id": "SNX",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x31965b5c9c55f5579eb49F4b3AcC59aA10a7B98E"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x31965b5c9c55f5579eb49F4b3AcC59aA10a7B98E",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SNX-PLG20": {
- "coin": "SNX-PLG20",
- "type": "Matic",
- "name": "Synthetix",
- "coinpaprika_id": "snx-synthetix-network-token",
- "coingecko_id": "havven",
- "livecoinwatch_id": "SNX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Synthetix",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SOL-BEP20": {
- "coin": "SOL-BEP20",
- "type": "BEP-20",
- "name": "Solana",
- "coinpaprika_id": "sol-solana",
- "coingecko_id": "solana",
- "livecoinwatch_id": "SOL",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Solana",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SOL-PLG20": {
- "coin": "SOL-PLG20",
- "type": "Matic",
- "name": "Solana",
- "coinpaprika_id": "sol-solana",
- "coingecko_id": "solana",
- "livecoinwatch_id": "SOL",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Solana",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SOLVE-ERC20": {
- "coin": "SOLVE-ERC20",
- "type": "ERC-20",
- "name": "SOLVE",
- "coinpaprika_id": "solve-solve",
- "coingecko_id": "solve-care",
- "livecoinwatch_id": "SOLVE",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SOLVE",
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x446C9033E7516D820cc9a2ce2d0B7328b579406F"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x446C9033E7516D820cc9a2ce2d0B7328b579406F",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SPACE": {
- "coin": "SPACE",
- "type": "Smart Chain",
- "name": "Spacecoin",
- "coinpaprika_id": "space-spacecoin7367",
- "coingecko_id": "",
- "livecoinwatch_id": "__________SPACE",
- "explorer_url": "https://explorer.spaceworks.co/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "SPACE",
- "fname": "Spacecoin",
- "rpcport": 35593,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 6,
- "requires_notarization": false,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10011",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10011",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10011",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20011",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30011"
- },
- {
- "url": "electrum2.cipig.net:20011",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30011"
- },
- {
- "url": "electrum3.cipig.net:20011",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30011"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SRM-ERC20": {
- "coin": "SRM-ERC20",
- "type": "ERC-20",
- "name": "Serum",
- "coinpaprika_id": "srm-serum",
- "coingecko_id": "serum",
- "livecoinwatch_id": "SRM",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Serum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x476c5E26a75bd202a9683ffD34359C0CC15be0fF"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x476c5E26a75bd202a9683ffD34359C0CC15be0fF",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SRM-PLG20": {
- "coin": "SRM-PLG20",
- "type": "Matic",
- "name": "Serum",
- "coinpaprika_id": "srm-serum",
- "coingecko_id": "serum",
- "livecoinwatch_id": "SRM",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Serum",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x6Bf2eb299E51Fc5DF30Dec81D9445dDe70e3F185"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x6Bf2eb299E51Fc5DF30Dec81D9445dDe70e3F185",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUM": {
- "coin": "SUM",
- "type": "UTXO",
- "name": "Sumcoin",
- "coinpaprika_id": "sum-sumcoin",
- "coingecko_id": "sumcoin",
- "livecoinwatch_id": "SUM",
- "explorer_url": "https://sumcoinexplorer.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Sumcoin Signed Message:\n",
- "fname": "Sumcoin",
- "isPoS": 1,
- "rpcport": 3332,
- "pubtype": 63,
- "p2shtype": 125,
- "wiftype": 187,
- "decimals": 6,
- "txfee": 0,
- "dust": 10000,
- "segwit": false,
- "bech32_hrp": "sum",
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/552'",
- "trezor_coin": "Sumcoin",
- "links": {
- "github": "https://github.com/sumcoinlabs/sumcoin",
- "homepage": "https://www.sumcoin.org"
- },
- "electrum": [
- {
- "url": "sumpos.electrum-sum.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "sumpos.electrum-sum.org:50004"
- },
- {
- "url": "sumpos2.electrum-sum.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "sumpos2.electrum-sum.org:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUPERNET": {
- "coin": "SUPERNET",
- "type": "Smart Chain",
- "name": "Supernet",
- "coinpaprika_id": "unity-supernet",
- "coingecko_id": "supernet",
- "livecoinwatch_id": "",
- "explorer_url": "https://supernet.kmdexplorer.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "SUPERNET",
- "fname": "Supernet",
- "rpcport": 11341,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10005",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10005",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10005",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20005",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30005"
- },
- {
- "url": "electrum2.cipig.net:20005",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30005"
- },
- {
- "url": "electrum3.cipig.net:20005",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30005"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUSHI-AVX20": {
- "coin": "SUSHI-AVX20",
- "type": "AVX-20",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUSHI-BEP20": {
- "coin": "SUSHI-BEP20",
- "type": "BEP-20",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SUSHI-ERC20": {
- "coin": "SUSHI-ERC20",
- "type": "ERC-20",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "SushiToken",
- "links": {
- "github": "https://github.com/sushiswap",
- "homepage": "https://sushiswapclassic.org/"
- },
- "contract_address": "0x6B3595068778DD592e39A122f4f5a5cF09C90fE2",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUSHI-FTM20": {
- "coin": "SUSHI-FTM20",
- "type": "FTM-20",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUSHI-KRC20": {
- "coin": "SUSHI-KRC20",
- "type": "KRC-20",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xE0a60890BB7F9250089455620063fb6fe4DC159a"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xE0a60890BB7F9250089455620063fb6fe4DC159a",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUSHI-MVR20": {
- "coin": "SUSHI-MVR20",
- "type": "Moonriver",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0xf390830DF829cf22c53c8840554B98eafC5dCBc2"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0xf390830DF829cf22c53c8840554B98eafC5dCBc2",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SUSHI-PLG20": {
- "coin": "SUSHI-PLG20",
- "type": "Matic",
- "name": "Sushi",
- "coinpaprika_id": "sushi-sushi",
- "coingecko_id": "sushi",
- "livecoinwatch_id": "SUSHI",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sushi",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "SWAP-BEP20": {
- "coin": "SWAP-BEP20",
- "type": "BEP-20",
- "name": "SafeSwap",
- "coinpaprika_id": "swap-safeswap-online",
- "coingecko_id": "safeswap-online",
- "livecoinwatch_id": "_SWAP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SafeSwap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xe56a473043EaAB7947c0a2408cEA623074500EE3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xe56a473043EaAB7947c0a2408cEA623074500EE3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SXP-BEP20": {
- "coin": "SXP-BEP20",
- "type": "BEP-20",
- "name": "Swipe",
- "coinpaprika_id": "sxp-swipe",
- "coingecko_id": "swipe",
- "livecoinwatch_id": "SXP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Swipe",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "SXP-ERC20": {
- "coin": "SXP-ERC20",
- "type": "ERC-20",
- "name": "Swipe",
- "coinpaprika_id": "sxp-swipe",
- "coingecko_id": "swipe",
- "livecoinwatch_id": "SXP",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Swipe",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SBCH": {
- "coin": "SBCH",
- "type": "SmartBCH",
- "name": "SmartBCH",
- "coinpaprika_id": "bch-bitcoin-cash",
- "coingecko_id": "bitcoin-cash",
- "livecoinwatch_id": "BCH",
- "explorer_url": "https://www.smartscan.cash/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SmartBCH",
- "rpcport": 80,
- "mm2": 1,
- "alias_ticker": "BCH",
- "chain_id": 10000,
- "required_confirmations": 3,
- "avg_blocktime": 6,
- "protocol": {
- "type": "ETH"
- },
- "swap_contract_address": "0x25bF2AAB8749AD2e4360b3e0B738f3Cd700C4D68",
- "fallback_swap_contract": "0x25bF2AAB8749AD2e4360b3e0B738f3Cd700C4D68",
- "nodes": [
- {
- "url": "https://smartbch.fountainhead.cash/mainnet",
- "contact": {
- "email": "blockparty-sh@yandex.com"
- }
- },
- {
- "url": "https://smartbch.greyh.at",
- "contact": {
- "email": "quest@mac.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SYS": {
- "coin": "SYS",
- "type": "UTXO",
- "name": "Syscoin",
- "coinpaprika_id": "sys-syscoin",
- "coingecko_id": "syscoin",
- "livecoinwatch_id": "SYS",
- "explorer_url": "https://chainz.cryptoid.info/sys/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Syscoin Signed Message:\n",
- "fname": "Syscoin",
- "rpcport": 8370,
- "pubtype": 63,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 1820,
- "segwit": true,
- "bech32_hrp": "sys",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/57'",
- "trezor_coin": "Syscoin",
- "links": {
- "github": "https://github.com/syscoin/syscoin",
- "homepage": "https://syscoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10064",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10064",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10064",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20064",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30064"
- },
- {
- "url": "electrum2.cipig.net:20064",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30064"
- },
- {
- "url": "electrum3.cipig.net:20064",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30064"
- }
- ],
- "explorer_block_url": "block.dws?",
- "binance_id": "SYS"
- },
- "SYS-segwit": {
- "coin": "SYS-segwit",
- "type": "UTXO",
- "name": "Syscoin",
- "coinpaprika_id": "sys-syscoin",
- "coingecko_id": "syscoin",
- "livecoinwatch_id": "SYS",
- "explorer_url": "https://chainz.cryptoid.info/sys/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Syscoin Signed Message:\n",
- "fname": "Syscoin",
- "rpcport": 8370,
- "pubtype": 63,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 1820,
- "segwit": true,
- "bech32_hrp": "sys",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "SYS",
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/57'",
- "trezor_coin": "Syscoin",
- "links": {
- "github": "https://github.com/syscoin/syscoin",
- "homepage": "https://syscoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10064",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10064",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10064",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20064",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30064"
- },
- {
- "url": "electrum2.cipig.net:20064",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30064"
- },
- {
- "url": "electrum3.cipig.net:20064",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30064"
- }
- ],
- "explorer_block_url": "block.dws?",
- "binance_id": "SYS"
- },
- "TAMA-ERC20": {
- "coin": "TAMA-ERC20",
- "type": "ERC-20",
- "name": "Tamadoge",
- "coinpaprika_id": "",
- "coingecko_id": "tamadoge",
- "livecoinwatch_id": "__TAMA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tamadoge",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x12b6893cE26Ea6341919FE289212ef77e51688c8"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x12b6893cE26Ea6341919FE289212ef77e51688c8",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "tBTC": {
- "coin": "tBTC",
- "type": "UTXO",
- "name": "BTC Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://blockstream.info/testnet/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "BTC Testnet",
- "rpcport": 18332,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "segwit": true,
- "bech32_hrp": "tb",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "required_confirmations": 0,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10068",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10068",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10068",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "testnet.aranguren.org:51001",
- "protocol": "TCP"
- },
- {
- "url": "electrum1.cipig.net:20068",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30068"
- },
- {
- "url": "electrum2.cipig.net:20068",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30068"
- },
- {
- "url": "electrum3.cipig.net:20068",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30068"
- }
- ],
- "explorer_block_url": "block/"
- },
- "tBTC-segwit": {
- "coin": "tBTC-segwit",
- "type": "UTXO",
- "name": "tBitcoin",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://blockstream.info/testnet/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "tBitcoin",
- "rpcport": 18332,
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "segwit": true,
- "bech32_hrp": "tb",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "tBTC",
- "txfee": 0,
- "estimate_fee_mode": "ECONOMICAL",
- "mm2": 1,
- "required_confirmations": 0,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10068",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10068",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10068",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "testnet.aranguren.org:51001",
- "protocol": "TCP"
- },
- {
- "url": "electrum1.cipig.net:20068",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30068"
- },
- {
- "url": "electrum2.cipig.net:20068",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30068"
- },
- {
- "url": "electrum3.cipig.net:20068",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30068"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TEL-ERC20": {
- "coin": "TEL-ERC20",
- "type": "ERC-20",
- "name": "Telcoin",
- "coinpaprika_id": "tel-telcoin",
- "coingecko_id": "telcoin",
- "livecoinwatch_id": "TEL",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Telcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x467Bccd9d29f223BcE8043b84E8C8B282827790F"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x467Bccd9d29f223BcE8043b84E8C8B282827790F",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "TEL-KRC20": {
- "coin": "TEL-KRC20",
- "type": "KRC-20",
- "name": "Telcoin",
- "coinpaprika_id": "tel-telcoin",
- "coingecko_id": "telcoin",
- "livecoinwatch_id": "TEL",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Telcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x621C1E8610e4B9b7fc9F043203C008EDe52E92F5"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x621C1E8610e4B9b7fc9F043203C008EDe52E92F5",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TEL-PLG20": {
- "coin": "TEL-PLG20",
- "type": "Matic",
- "name": "Telcoin",
- "coinpaprika_id": "tel-telcoin",
- "coingecko_id": "telcoin",
- "livecoinwatch_id": "TEL",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Telcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 2,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TFT-BEP20": {
- "coin": "TFT-BEP20",
- "type": "BEP-20",
- "name": "ThreeFold",
- "coinpaprika_id": "tft-threefold-token",
- "coingecko_id": "threefold-token",
- "livecoinwatch_id": "_TFT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "ThreeFold",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 7,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8f0FB159380176D324542b3a7933F0C2Fd0c2bbf"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x8f0FB159380176D324542b3a7933F0C2Fd0c2bbf",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "THC": {
- "coin": "THC",
- "type": "Smart Chain",
- "name": "HempCoin",
- "coinpaprika_id": "thc-hempcoin",
- "coingecko_id": "hempcoin-thc",
- "livecoinwatch_id": "THC",
- "explorer_url": "https://thc.explorer.dexstats.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "THC",
- "fname": "HempCoin",
- "rpcport": 36790,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "2.eu.thc.electrum.dexstats.info:10020",
- "contact": [
- {
- "discord": "CHMEX#0686"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "THC-BEP20": {
- "coin": "THC-BEP20",
- "type": "BEP-20",
- "name": "HempCoin",
- "coinpaprika_id": "thc-hempcoin",
- "coingecko_id": "hempcoin-thc",
- "livecoinwatch_id": "THC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HempCoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBD9a8CA934e673b874937761D7CFa7084ecBdd53"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xBD9a8CA934e673b874937761D7CFa7084ecBdd53",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "TKL": {
- "coin": "TKL",
- "type": "Smart Chain",
- "name": "Tokel",
- "coinpaprika_id": "tkl-tokel",
- "coingecko_id": "tokel",
- "livecoinwatch_id": "TKL",
- "explorer_url": "https://explorer.tokel.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "TOKEL",
- "fname": "Tokel",
- "rpcport": 29405,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": true,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "1.eu.tokel.electrum.dexstats.info:10077",
- "contact": [
- {
- "email": "chmex@dexstats.info"
- },
- {
- "discord": "chmex#0686"
- }
- ]
- },
- {
- "url": "1.eu.tokel.electrum.dexstats.info:11077",
- "protocol": "SSL",
- "contact": [
- {
- "email": "chmex@dexstats.info"
- },
- {
- "discord": "chmex#0686"
- }
- ],
- "ws_url": "1.eu.tokel.electrum.dexstats.info:9077"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TON-ERC20": {
- "coin": "TON-ERC20",
- "type": "ERC-20",
- "name": "Toncoin",
- "coinpaprika_id": "toncoin-the-open-network",
- "coingecko_id": "the-open-network",
- "livecoinwatch_id": "TONCOIN",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Toncoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 9,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "TON-BEP20": {
- "coin": "TON-BEP20",
- "type": "BEP-20",
- "name": "Toncoin",
- "coinpaprika_id": "toncoin-the-open-network",
- "coingecko_id": "the-open-network",
- "livecoinwatch_id": "TONCOIN",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Toncoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 9,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "TRC": {
- "coin": "TRC",
- "type": "UTXO",
- "name": "Terracoin",
- "coinpaprika_id": "trc-terracoin",
- "coingecko_id": "terracoin",
- "livecoinwatch_id": "TRC",
- "explorer_url": "https://chainz.cryptoid.info/trc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Terracoin",
- "confpath": "USERHOME/.terracoincore/terracoin.conf",
- "rpcport": 13332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10000,
- "dust": 5460,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/83'",
- "electrum": [
- {
- "url": "failover.trc-uis.ewmcx.biz:50006",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "failover.trc-uis.ewmcx.biz:50007"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "TRX-BEP20_OLD": {
- "coin": "TRX-BEP20_OLD",
- "type": "BEP-20",
- "name": "TRON (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "TRX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TRON (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "TRX-BEP20": {
- "coin": "TRX-BEP20",
- "type": "BEP-20",
- "name": "TRON",
- "coinpaprika_id": "trx-tron",
- "coingecko_id": "tron",
- "livecoinwatch_id": "TRX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TRON",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "TRYB-AVX20": {
- "coin": "TRYB-AVX20",
- "type": "AVX-20",
- "name": "BiLira",
- "coinpaprika_id": "tryb-bilira",
- "coingecko_id": "bilira",
- "livecoinwatch_id": "TRYB",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x564A341Df6C126f90cf3ECB92120FD7190ACb401"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x564A341Df6C126f90cf3ECB92120FD7190ACb401",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "TRY"
- },
- "TRYB-BEP20": {
- "coin": "TRYB-BEP20",
- "type": "BEP-20",
- "name": "BiLira",
- "coinpaprika_id": "tryb-bilira",
- "coingecko_id": "bilira",
- "livecoinwatch_id": "TRYB",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xC1fdbed7Dac39caE2CcC0748f7a80dC446F6a594"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xC1fdbed7Dac39caE2CcC0748f7a80dC446F6a594",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "forex_id": "TRY"
- },
- "TRYB-PLG20": {
- "coin": "TRYB-PLG20",
- "type": "Matic",
- "name": "BiLira",
- "coinpaprika_id": "tryb-bilira",
- "coingecko_id": "bilira",
- "livecoinwatch_id": "TRYB",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x4Fb71290Ac171E1d144F7221D882BECAc7196EB5"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x4Fb71290Ac171E1d144F7221D882BECAc7196EB5",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "TRY"
- },
- "TRYB-ERC20": {
- "coin": "TRYB-ERC20",
- "type": "ERC-20",
- "name": "BiLira",
- "coinpaprika_id": "tryb-bilira",
- "coingecko_id": "bilira",
- "livecoinwatch_id": "TRYB",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "BiLira",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2C537E5624e4af88A7ae4060C022609376C8D0EB"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x2C537E5624e4af88A7ae4060C022609376C8D0EB",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "TRY"
- },
- "TUSD-BEP20_OLD": {
- "coin": "TUSD-BEP20_OLD",
- "type": "BEP-20",
- "name": "TrueUSD (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x14016E85a25aeb13065688cAFB43044C2ef86784"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x14016E85a25aeb13065688cAFB43044C2ef86784",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "TUSD-BEP20": {
- "coin": "TUSD-BEP20",
- "type": "BEP-20",
- "name": "TrueUSD",
- "coinpaprika_id": "tusd-trueusd",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "TUSD-ERC20": {
- "coin": "TUSD-ERC20",
- "type": "ERC-20",
- "name": "TrueUSD",
- "coinpaprika_id": "tusd-trueusd",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0000000000085d4780B73119b644AE5ecd22b376"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "TrueUSD",
- "links": {
- "github": "https://github.com/trusttoken",
- "homepage": "https://www.trusttoken.com"
- },
- "contract_address": "0x0000000000085d4780B73119b644AE5ecd22b376",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "TUSD-AVX20": {
- "coin": "TUSD-AVX20",
- "type": "AVX-20",
- "name": "TrueUSD",
- "coinpaprika_id": "",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TUSD-FTM20": {
- "coin": "TUSD-FTM20",
- "type": "FTM-20",
- "name": "TrueUSD",
- "coinpaprika_id": "",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x9879aBDea01a879644185341F7aF7d8343556B7a"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x9879aBDea01a879644185341F7aF7d8343556B7a",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TUSD-HCO20": {
- "coin": "TUSD-HCO20",
- "type": "HecoChain",
- "name": "TrueUSD",
- "coinpaprika_id": "tusd-trueusd",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TUSD-KRC20": {
- "coin": "TUSD-KRC20",
- "type": "KRC-20",
- "name": "TrueUSD",
- "coinpaprika_id": "tusd-trueusd",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xD17027b85Abf02721F953EE528721A980fa58941"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xD17027b85Abf02721F953EE528721A980fa58941",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TUSD-PLG20": {
- "coin": "TUSD-PLG20",
- "type": "Matic",
- "name": "TrueUSD",
- "coinpaprika_id": "tusd-trueusd",
- "coingecko_id": "true-usd",
- "livecoinwatch_id": "TUSD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "TrueUSD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TWT-BEP20": {
- "coin": "TWT-BEP20",
- "type": "BEP-20",
- "name": "Trust Wallet",
- "coinpaprika_id": "twt-trust-wallet-token",
- "coingecko_id": "trust-wallet-token",
- "livecoinwatch_id": "TWT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Trust Wallet",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "UBT-ERC20": {
- "coin": "UBT-ERC20",
- "type": "ERC-20",
- "name": "Unibright",
- "coinpaprika_id": "ubt-unibright",
- "coingecko_id": "unibright",
- "livecoinwatch_id": "UBT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Unibright",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Unibright",
- "links": {
- "homepage": "https://unibright.io"
- },
- "contract_address": "0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UBT-PLG20": {
- "coin": "UBT-PLG20",
- "type": "Matic",
- "name": "Unibright",
- "coinpaprika_id": "ubt-unibright",
- "coingecko_id": "unibright",
- "livecoinwatch_id": "UBT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Unibright",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x7FBc10850caE055B27039aF31bD258430e714c62"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x7FBc10850caE055B27039aF31bD258430e714c62",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UIS": {
- "coin": "UIS",
- "type": "UTXO",
- "name": "Unitus",
- "coinpaprika_id": "uis-unitus",
- "coingecko_id": "unitus",
- "livecoinwatch_id": "UIS",
- "explorer_url": "https://explorer.unitus.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Unitus",
- "rpcport": 50604,
- "pubtype": 68,
- "p2shtype": 10,
- "wiftype": 132,
- "txfee": 2000000,
- "dust": 6000000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "failover.trc-uis.ewmcx.biz:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "failover.trc-uis.ewmcx.biz:50003"
- },
- {
- "url": "uis-uno.ewmcx.net:50002",
- "protocol": "SSL",
- "disable_cert_verification": false,
- "ws_url": "uis-uno.ewmcx.net:50003"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UMA-AVX20": {
- "coin": "UMA-AVX20",
- "type": "AVX-20",
- "name": "UMA",
- "coinpaprika_id": "uma-uma",
- "coingecko_id": "uma",
- "livecoinwatch_id": "UMA",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "UMA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UMA-ERC20": {
- "coin": "UMA-ERC20",
- "type": "ERC-20",
- "name": "UMA",
- "coinpaprika_id": "uma-uma",
- "coingecko_id": "uma",
- "livecoinwatch_id": "UMA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "UMA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UMA-PLG20": {
- "coin": "UMA-PLG20",
- "type": "Matic",
- "name": "UMA",
- "coinpaprika_id": "uma-uma",
- "coingecko_id": "uma",
- "livecoinwatch_id": "UMA",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "UMA",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x3066818837c5e6eD6601bd5a91B0762877A6B731"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x3066818837c5e6eD6601bd5a91B0762877A6B731",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UNI-AVX20": {
- "coin": "UNI-AVX20",
- "type": "AVX-20",
- "name": "Uniswap",
- "coinpaprika_id": "uni-uniswap",
- "coingecko_id": "uniswap",
- "livecoinwatch_id": "UNI",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UNI-ERC20": {
- "coin": "UNI-ERC20",
- "type": "ERC-20",
- "name": "Uniswap",
- "coinpaprika_id": "uni-uniswap",
- "coingecko_id": "uniswap",
- "livecoinwatch_id": "UNI",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Uniswap",
- "links": {
- "homepage": "https://uniswap.org/"
- },
- "contract_address": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UNI-BEP20": {
- "coin": "UNI-BEP20",
- "type": "BEP-20",
- "name": "Uniswap",
- "coinpaprika_id": "uni-uniswap",
- "coingecko_id": "uniswap",
- "livecoinwatch_id": "UNI",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "UNI-HCO20": {
- "coin": "UNI-HCO20",
- "type": "HecoChain",
- "name": "Uniswap",
- "coinpaprika_id": "uni-uniswap",
- "coingecko_id": "uniswap",
- "livecoinwatch_id": "UNI",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UNI-KRC20": {
- "coin": "UNI-KRC20",
- "type": "KRC-20",
- "name": "Uniswap",
- "coinpaprika_id": "uni-uniswap",
- "coingecko_id": "uniswap",
- "livecoinwatch_id": "UNI",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xEe58E4D62b10A92dB1089d4D040B759C28aE16Cd"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xEe58E4D62b10A92dB1089d4D040B759C28aE16Cd",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UNI-PLG20": {
- "coin": "UNI-PLG20",
- "type": "Matic",
- "name": "Uniswap",
- "coinpaprika_id": "uni-uniswap",
- "coingecko_id": "uniswap",
- "livecoinwatch_id": "UNI",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uniswap",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "UNO": {
- "coin": "UNO",
- "type": "UTXO",
- "name": "Unobtanium",
- "coinpaprika_id": "uno-unobtanium",
- "coingecko_id": "unobtanium",
- "livecoinwatch_id": "UNO",
- "explorer_url": "https://chainz.cryptoid.info/uno/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Unobtanium Signed Message:\n",
- "fname": "Unobtanium",
- "rpcport": 65535,
- "pubtype": 130,
- "p2shtype": 30,
- "wiftype": 224,
- "txfee": 0,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/92'",
- "trezor_coin": "Unobtanium",
- "links": {
- "github": "https://github.com/unobtanium-official/unobtanium",
- "homepage": "https://unobtanium.uno"
- },
- "electrum": [
- {
- "url": "uno-bkp.coinmunity.gold:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "uno-bkp.coinmunity.gold:50003"
- },
- {
- "url": "uno-main.coinmunity.gold:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "uno-main.coinmunity.gold:50003"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "USDC-AVX20": {
- "coin": "USDC-AVX20",
- "type": "AVX-20",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-AVX20_OLD": {
- "coin": "USDC-AVX20_OLD",
- "type": "AVX-20",
- "name": "USD Coin (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-ERC20": {
- "coin": "USDC-ERC20",
- "type": "ERC-20",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "USD//Coin",
- "links": {
- "github": "https://github.com/centrehq/centre-tokens",
- "homepage": "https://www.centre.io"
- },
- "contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-BEP20": {
- "coin": "USDC-BEP20",
- "type": "BEP-20",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "USDC-FTM20": {
- "coin": "USDC-FTM20",
- "type": "FTM-20",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-HCO20": {
- "coin": "USDC-HCO20",
- "type": "HecoChain",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "avg_blocktime": 3,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-KRC20": {
- "coin": "USDC-KRC20",
- "type": "KRC-20",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-MVR20": {
- "coin": "USDC-MVR20",
- "type": "Moonriver",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-PLG20": {
- "coin": "USDC-PLG20",
- "type": "Matic",
- "name": "USD Coin",
- "coinpaprika_id": "usdc-usd-coin",
- "coingecko_id": "usd-coin",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDC-PLG20_OLD": {
- "coin": "USDC-PLG20_OLD",
- "type": "Matic",
- "name": "USD Coin (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "USDC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USD Coin (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDD-BEP20": {
- "coin": "USDD-BEP20",
- "type": "BEP-20",
- "name": "USDD",
- "coinpaprika_id": "",
- "coingecko_id": "usdd",
- "livecoinwatch_id": "USDD",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USDD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xd17479997F34dd9156Deef8F95A52D81D265be9c"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xd17479997F34dd9156Deef8F95A52D81D265be9c",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "USDD-ERC20": {
- "coin": "USDD-ERC20",
- "type": "ERC-20",
- "name": "USDD",
- "coinpaprika_id": "usdd-usdd",
- "coingecko_id": "usdd",
- "livecoinwatch_id": "USDD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "USDD",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-MVR20": {
- "coin": "USDT-MVR20",
- "type": "Moonriver",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://moonriver.moonscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1285,
- "avg_blocktime": 15,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MOVR",
- "contract_address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C"
- }
- },
- "derivation_path": "m/44'/1285'",
- "contract_address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C",
- "parent_coin": "MOVR",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://moonriver.public.blastapi.io"
- },
- {
- "url": "https://rpc.api.moonriver.moonbeam.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-FTM20": {
- "coin": "USDT-FTM20",
- "type": "FTM-20",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-HCO20": {
- "coin": "USDT-HCO20",
- "type": "HecoChain",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://hecoinfo.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 128,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "HT",
- "contract_address": "0xa71EdC38d189767582C38A3145b5873052c3e47a"
- }
- },
- "derivation_path": "m/44'/1023'",
- "contract_address": "0xa71EdC38d189767582C38A3145b5873052c3e47a",
- "parent_coin": "HT",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://http-mainnet.hecochain.com"
- },
- {
- "url": "https://http-mainnet-node.huobichain.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-KRC20": {
- "coin": "USDT-KRC20",
- "type": "KRC-20",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "avg_blocktime": 3,
- "decimals": 18,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-PLG20": {
- "coin": "USDT-PLG20",
- "type": "Matic",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-ARB20": {
- "coin": "USDT-ARB20",
- "type": "Arbitrum",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://arbiscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 42161,
- "avg_blocktime": 15,
- "decimals": 6,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH-ARB20",
- "contract_address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
- }
- },
- "contract_address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
- "parent_coin": "ETH-ARB20",
- "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/arbitrum",
- "gui_auth": true
- },
- {
- "url": "https://arb1.arbitrum.io/rpc"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-AVX20": {
- "coin": "USDT-AVX20",
- "type": "AVX-20",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-AVX20_OLD": {
- "coin": "USDT-AVX20_OLD",
- "type": "AVX-20",
- "name": "Tether (OLD)",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether (OLD)",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 6,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDT-BEP20": {
- "coin": "USDT-BEP20",
- "type": "BEP-20",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x55d398326f99059fF775485246999027B3197955"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x55d398326f99059fF775485246999027B3197955",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "USDT-ERC20": {
- "coin": "USDT-ERC20",
- "type": "ERC-20",
- "name": "Tether",
- "coinpaprika_id": "usdt-tether",
- "coingecko_id": "tether",
- "livecoinwatch_id": "USDT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Tether",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "USD Tether (erc20)",
- "links": {
- "homepage": "https://tether.to"
- },
- "contract_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "WWCN-ERC20": {
- "coin": "WWCN-ERC20",
- "type": "ERC-20",
- "name": "Wrapped Widecoin",
- "coinpaprika_id": "wwcn-wrapped-widecoin",
- "coingecko_id": "wrapped-widecoin",
- "livecoinwatch_id": "",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Wrapped Widecoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x54a3017754BFba73F71F37d893A368814CbFf457"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x54a3017754BFba73F71F37d893A368814CbFf457",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "VAL": {
- "coin": "VAL",
- "type": "UTXO",
- "name": "Validity",
- "coinpaprika_id": "val-validity",
- "coingecko_id": "radium",
- "livecoinwatch_id": "__VAL",
- "explorer_url": "https://chainz.cryptoid.info/val/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Validity",
- "confpath": "USERHOME/.Validity/validity.conf",
- "isPoS": 1,
- "rpcport": 27914,
- "pubtype": 76,
- "p2shtype": 58,
- "wiftype": 121,
- "txfee": 100000,
- "dust": 300000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "mature_confirmations": 60,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "e1.validitytech.com:11001",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "e2.validitytech.com:11001",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "e3.validitytech.com:11001",
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ]
- },
- {
- "url": "e1.validitytech.com:11002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "e1.validitytech.com:11004"
- },
- {
- "url": "e2.validitytech.com:11002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "e2.validitytech.com:11004"
- },
- {
- "url": "e3.validitytech.com:11002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "discord": "michelvankessel#7656"
- }
- ],
- "ws_url": "e3.validitytech.com:11004"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "VET-BEP20": {
- "coin": "VET-BEP20",
- "type": "BEP-20",
- "name": "VeChain",
- "coinpaprika_id": "vet-vechain",
- "coingecko_id": "vechain",
- "livecoinwatch_id": "VET",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "VeChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "VRA-ERC20": {
- "coin": "VRA-ERC20",
- "type": "ERC-20",
- "name": "Verasity",
- "coinpaprika_id": "vra-verasity",
- "coingecko_id": "verasity",
- "livecoinwatch_id": "VRA",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Verasity",
- "rpcport": 80,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xF411903cbC70a74d22900a5DE66A2dda66507255"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xF411903cbC70a74d22900a5DE66A2dda66507255",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "VGX-ERC20": {
- "coin": "VGX-ERC20",
- "type": "ERC-20",
- "name": "Voyager",
- "coinpaprika_id": "ethos-ethos",
- "coingecko_id": "ethos",
- "livecoinwatch_id": "VGX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Voyager",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x3C4B6E6e1eA3D4863700D7F76b36B7f3D3f13E3d",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "VGX-PLG20": {
- "coin": "VGX-PLG20",
- "type": "Matic",
- "name": "Voyager",
- "coinpaprika_id": "ethos-ethos",
- "coingecko_id": "ethos",
- "livecoinwatch_id": "VGX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Voyager",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x054c42b6414747F5263b4A86f21B1aFAD00326Bf"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x054c42b6414747F5263b4A86f21B1aFAD00326Bf",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "VIA": {
- "coin": "VIA",
- "type": "UTXO",
- "name": "Viacoin",
- "coinpaprika_id": "via-viacoin",
- "coingecko_id": "viacoin",
- "livecoinwatch_id": "VIA",
- "explorer_url": "https://explorer.viacoin.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Viacoin Signed Message:\n",
- "fname": "Viacoin",
- "rpcport": 5222,
- "pubtype": 71,
- "p2shtype": 33,
- "wiftype": 199,
- "txfee": 100000,
- "dust": 54600,
- "required_confirmations": 7,
- "mature_confirmations": 3600,
- "avg_blocktime": 24,
- "segwit": true,
- "bech32_hrp": "via",
- "mm2": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/14'",
- "trezor_coin": "Viacoin",
- "links": {
- "github": "https://github.com/viacoin",
- "homepage": "https://viacoin.org"
- },
- "electrum": [
- {
- "url": "88.99.26.209:5102"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "VIA"
- },
- "VITE-BEP20": {
- "coin": "VITE-BEP20",
- "type": "BEP-20",
- "name": "Vite",
- "coinpaprika_id": "vite-vite",
- "coingecko_id": "vite",
- "livecoinwatch_id": "VITE",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Vite",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x2794DAD4077602eD25A88d03781528D1637898B4"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x2794DAD4077602eD25A88d03781528D1637898B4",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "VRSC": {
- "coin": "VRSC",
- "type": "Smart Chain",
- "name": "Verus Coin",
- "coinpaprika_id": "vrsc-verus-coin",
- "coingecko_id": "verus-coin",
- "livecoinwatch_id": "VRSC",
- "explorer_url": "https://explorer.verus.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "VRSC",
- "fname": "Verus Coin",
- "rpcport": 27486,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "el0.verus.io:17485",
- "contact": [
- {
- "email": "0x03-ctrlc@protonmail.com"
- },
- {
- "discord": "0x03#8822"
- },
- {
- "keybase": "bloodynora"
- }
- ]
- },
- {
- "url": "el1.verus.io:17485",
- "contact": [
- {
- "email": "0x03-ctrlc@protonmail.com"
- },
- {
- "discord": "0x03#8822"
- },
- {
- "keybase": "bloodynora"
- }
- ]
- },
- {
- "url": "el2.verus.io:17485",
- "contact": [
- {
- "email": "0x03-ctrlc@protonmail.com"
- },
- {
- "discord": "0x03#8822"
- },
- {
- "keybase": "bloodynora"
- }
- ]
- },
- {
- "url": "el0.verus.io:17486",
- "protocol": "SSL",
- "contact": [
- {
- "email": "0x03-ctrlc@protonmail.com"
- },
- {
- "discord": "0x03#8822"
- },
- {
- "keybase": "bloodynora"
- }
- ],
- "disable_cert_verification": false,
- "ws_url": "el0.verus.io:17488"
- },
- {
- "url": "el1.verus.io:17486",
- "protocol": "SSL",
- "contact": [
- {
- "email": "0x03-ctrlc@protonmail.com"
- },
- {
- "discord": "0x03#8822"
- },
- {
- "keybase": "bloodynora"
- }
- ],
- "disable_cert_verification": false,
- "ws_url": "el1.verus.io:17488"
- },
- {
- "url": "el2.verus.io:17486",
- "protocol": "SSL",
- "contact": [
- {
- "email": "0x03-ctrlc@protonmail.com"
- },
- {
- "discord": "0x03#8822"
- },
- {
- "keybase": "bloodynora"
- }
- ],
- "disable_cert_verification": false,
- "ws_url": "el2.verus.io:17488"
- }
- ],
- "explorer_block_url": "block/"
- },
- "GRMS": {
- "coin": "GRMS",
- "type": "Smart Chain",
- "name": "GRMS",
- "coinpaprika_id": "grms-grms",
- "coingecko_id": "",
- "livecoinwatch_id": "GRMS",
- "explorer_url": "https://explorer.grms.pw/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "GRMS",
- "fname": "GRMS",
- "rpcport": 21687,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.grms.pw:17485",
- "contact": [
- {
- "email": "contact@grms.pw"
- },
- {
- "discord": "miner113#7864"
- },
- {
- "github": "Miner113"
- }
- ]
- },
- {
- "url": "electrum3.grms.pw:17485",
- "contact": [
- {
- "email": "contact@grms.pw"
- },
- {
- "discord": "miner113#7864"
- },
- {
- "github": "Miner113"
- }
- ]
- },
- {
- "url": "electrum1.grms.pw:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "contact@grms.pw"
- },
- {
- "discord": "miner113#7864"
- },
- {
- "github": "Miner113"
- }
- ],
- "ws_url": "electrum1.grms.pw:50004"
- },
- {
- "url": "electrum3.grms.pw:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "contact@grms.pw"
- },
- {
- "discord": "miner113#7864"
- },
- {
- "github": "Miner113"
- }
- ],
- "ws_url": "electrum3.grms.pw:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "VPRM": {
- "coin": "VPRM",
- "type": "Smart Chain",
- "name": "Vaporum",
- "coinpaprika_id": "vprm-vaporum-coin",
- "coingecko_id": "vaporum-coin",
- "livecoinwatch_id": "VPRM",
- "explorer_url": "http://explorer.vaporumcoin.us/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "VPRM",
- "fname": "Vaporum",
- "rpcport": 51609,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrumx1.vaporumcoin.us:50001",
- "contact": [
- {
- "github": "VaporumCoin"
- }
- ]
- },
- {
- "url": "electrumx2.vaporumcoin.us:50001",
- "contact": [
- {
- "github": "VaporumCoin"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "VTC": {
- "coin": "VTC",
- "type": "UTXO",
- "name": "Vertcoin",
- "coinpaprika_id": "vtc-vertcoin",
- "coingecko_id": "vertcoin",
- "livecoinwatch_id": "VTC",
- "explorer_url": "https://chainz.cryptoid.info/vtc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Vertcoin Signed Message:\n",
- "fname": "Vertcoin",
- "rpcport": 5888,
- "pubtype": 71,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "vtc",
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/28'",
- "trezor_coin": "Vertcoin",
- "links": {
- "github": "https://github.com/vertcoin-project/vertcoin-core",
- "homepage": "https://vertcoin.org"
- },
- "electrum": [
- {
- "url": "88.99.26.209:5028"
- },
- {
- "url": "electrumx.javerity.com:5885",
- "ws_url": "electrumx.javerity.com:5887",
- "contact": [
- {
- "discord": "cruelnovo#4936"
- }
- ]
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "VTC-segwit": {
- "coin": "VTC-segwit",
- "type": "UTXO",
- "name": "Vertcoin",
- "coinpaprika_id": "vtc-vertcoin",
- "coingecko_id": "vertcoin",
- "livecoinwatch_id": "VTC",
- "explorer_url": "https://chainz.cryptoid.info/vtc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Vertcoin Signed Message:\n",
- "fname": "Vertcoin",
- "rpcport": 5888,
- "pubtype": 71,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 100000,
- "dust": 100000,
- "segwit": true,
- "bech32_hrp": "vtc",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "VTC",
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/28'",
- "trezor_coin": "Vertcoin",
- "links": {
- "github": "https://github.com/vertcoin-project/vertcoin-core",
- "homepage": "https://vertcoin.org"
- },
- "electrum": [
- {
- "url": "88.99.26.209:5028"
- },
- {
- "url": "electrumx.javerity.com:5885",
- "ws_url": "electrumx.javerity.com:5887",
- "contact": [
- {
- "discord": "cruelnovo#4936"
- }
- ]
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "WAVES-BEP20": {
- "coin": "WAVES-BEP20",
- "type": "BEP-20",
- "name": "Waves",
- "coinpaprika_id": "waves-waves",
- "coingecko_id": "waves",
- "livecoinwatch_id": "WAVES",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Waves",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xFC3E14af0f0c2129a84Cc013D48C70D682902874"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xFC3E14af0f0c2129a84Cc013D48C70D682902874",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "WBTC-ERC20": {
- "coin": "WBTC-ERC20",
- "type": "ERC-20",
- "name": "Wrapped Bitcoin",
- "coinpaprika_id": "wbtc-wrapped-bitcoin",
- "coingecko_id": "wrapped-bitcoin",
- "livecoinwatch_id": "WBTC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Wrapped Bitcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 8,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Wrapped Bitcoin",
- "links": {
- "github": "https://github.com/WrappedBTC",
- "homepage": "https://wbtc.network"
- },
- "contract_address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "WBTC-PLG20": {
- "coin": "WBTC-PLG20",
- "type": "Matic",
- "name": "Wrapped Bitcoin",
- "coinpaprika_id": "",
- "coingecko_id": "wrapped-bitcoin",
- "livecoinwatch_id": "WBTC",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Wrapped Bitcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 8,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "WLD-ERC20": {
- "coin": "WLD-ERC20",
- "type": "ERC-20",
- "name": "Worldcoin",
- "coinpaprika_id": "wld-worldcoin",
- "coingecko_id": "worldcoin-wld",
- "livecoinwatch_id": "__WLD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Worldcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x163f8C2467924be0ae7B5347228CABF260318753"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x163f8C2467924be0ae7B5347228CABF260318753",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "WOO-ERC20": {
- "coin": "WOO-ERC20",
- "type": "ERC-20",
- "name": "WOO Network",
- "coinpaprika_id": "woo-wootrade",
- "coingecko_id": "woo-network",
- "livecoinwatch_id": "WOO",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "WOO-AVX20": {
- "coin": "WOO-AVX20",
- "type": "AVX-20",
- "name": "WOO Network",
- "coinpaprika_id": "woo-wootrade",
- "coingecko_id": "woo-network",
- "livecoinwatch_id": "WOO",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "decimals": 18,
- "avg_blocktime": 2.4,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "WOO-BEP20": {
- "coin": "WOO-BEP20",
- "type": "BEP-20",
- "name": "WOO Network",
- "coinpaprika_id": "woo-wootrade",
- "coingecko_id": "woo-network",
- "livecoinwatch_id": "WOO",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "WOO-FTM20": {
- "coin": "WOO-FTM20",
- "type": "FTM-20",
- "name": "WOO Network",
- "coinpaprika_id": "woo-wootrade",
- "coingecko_id": "woo-network",
- "livecoinwatch_id": "WOO",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "WOO-PLG20": {
- "coin": "WOO-PLG20",
- "type": "Matic",
- "name": "WOO Network",
- "coinpaprika_id": "woo-wootrade",
- "coingecko_id": "woo-network",
- "livecoinwatch_id": "WOO",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "WOO Network",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "XCN-ERC20": {
- "coin": "XCN-ERC20",
- "type": "ERC-20",
- "name": "Onyxcoin",
- "coinpaprika_id": "xcn-chain",
- "coingecko_id": "chain-2",
- "livecoinwatch_id": "XCN",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Onyxcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "XCN-BEP20": {
- "coin": "XCN-BEP20",
- "type": "BEP-20",
- "name": "Onyxcoin",
- "coinpaprika_id": "",
- "coingecko_id": "chain-2",
- "livecoinwatch_id": "XCN",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Onyxcoin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "XEP-segwit": {
- "coin": "XEP-segwit",
- "type": "UTXO",
- "name": "Electra Protocol",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "XEP",
- "explorer_url": "https://electraprotocol.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Electra Protocol",
- "rpcport": 16816,
- "pubtype": 55,
- "p2shtype": 137,
- "wiftype": 162,
- "txversion": 2,
- "txfee": 100000,
- "mm2": 1,
- "segwit": true,
- "signature_version": "witness_v0",
- "bech32_hrp": "ep",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "XEP",
- "required_confirmations": 4,
- "avg_blocktime": 80,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/597'",
- "electrum": [
- {
- "url": "electrumx1.electraprotocol.eu:50001",
- "contact": [
- {
- "discord": "287952234317348865"
- }
- ],
- "ws_url": "electrumx1.electraprotocol.eu:50003"
- },
- {
- "url": "electrumx2.electraprotocol.eu:50001",
- "contact": [
- {
- "discord": "287952234317348865"
- }
- ],
- "ws_url": "electrumx2.electraprotocol.eu:50003"
- },
- {
- "url": "electrumx3.electraprotocol.eu:50001",
- "contact": [
- {
- "discord": "287952234317348865"
- }
- ],
- "ws_url": "electrumx3.electraprotocol.eu:50003"
- }
- ],
- "explorer_block_url": "block/"
- },
- "XEP-BEP20": {
- "coin": "XEP-BEP20",
- "type": "BEP-20",
- "name": "Electra Protocol",
- "coinpaprika_id": "xep-electra-protocol",
- "coingecko_id": "electra-protocol",
- "livecoinwatch_id": "XEP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Electra Protocol",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 8,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb897D0a0f68800f8Be7D69ffDD1c24b69f57Bf3e"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xb897D0a0f68800f8Be7D69ffDD1c24b69f57Bf3e",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "XIDR-ERC20": {
- "coin": "XIDR-ERC20",
- "type": "ERC-20",
- "name": "StraitsX Indonesian Rupiah",
- "coinpaprika_id": "xidr-straitsx-indonesia-rupiah",
- "coingecko_id": "straitsx-indonesia-rupiah",
- "livecoinwatch_id": "XIDR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "StraitsX Indonesian Rupiah",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xebF2096E01455108bAdCbAF86cE30b6e5A72aa52",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "IDR"
- },
- "XIDR-PLG20": {
- "coin": "XIDR-PLG20",
- "type": "Matic",
- "name": "StraitsX Indonesian Rupiah",
- "coinpaprika_id": "",
- "coingecko_id": "straitsx-indonesia-rupiah",
- "livecoinwatch_id": "XIDR",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "StraitsX Indonesian Rupiah",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x2c826035c1C36986117A0e949bD6ad4baB54afE2"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x2c826035c1C36986117A0e949bD6ad4baB54afE2",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "XLM-BEP20": {
- "coin": "XLM-BEP20",
- "type": "BEP-20",
- "name": "Stellar",
- "coinpaprika_id": "xlm-stellar",
- "coingecko_id": "stellar",
- "livecoinwatch_id": "XLM",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Stellar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x43C934A845205F0b514417d757d7235B8f53f1B9"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x43C934A845205F0b514417d757d7235B8f53f1B9",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "XMY": {
- "coin": "XMY",
- "type": "UTXO",
- "name": "Myriad",
- "coinpaprika_id": "xmy-myriad",
- "coingecko_id": "myriadcoin",
- "livecoinwatch_id": "XMY",
- "explorer_url": "https://chainz.cryptoid.info/xmy/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Myriad",
- "rpcport": 8332,
- "pubtype": 50,
- "p2shtype": 9,
- "wiftype": 178,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "my",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 240,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/90'",
- "electrum": [
- {
- "url": "lenoir.ecoincore.com:10891",
- "protocol": "TCP"
- },
- {
- "url": "lenoir.ecoincore.com:10892",
- "protocol": "SSL",
- "ws_url": "lenoir.ecoincore.com:10894"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "XMY-segwit": {
- "coin": "XMY-segwit",
- "type": "UTXO",
- "name": "Myriad",
- "coinpaprika_id": "xmy-myriad",
- "coingecko_id": "myriadcoin",
- "livecoinwatch_id": "XMY",
- "explorer_url": "https://chainz.cryptoid.info/xmy/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Myriad",
- "rpcport": 8332,
- "pubtype": 50,
- "p2shtype": 9,
- "wiftype": 178,
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "my",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "XMY",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 240,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/90'",
- "electrum": [
- {
- "url": "lenoir.ecoincore.com:10891",
- "protocol": "TCP"
- },
- {
- "url": "lenoir.ecoincore.com:10892",
- "protocol": "SSL",
- "ws_url": "lenoir.ecoincore.com:10894"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "XNA": {
- "coin": "XNA",
- "type": "UTXO",
- "name": "Neurai",
- "coinpaprika_id": "xna-neurai",
- "coingecko_id": "neurai",
- "livecoinwatch_id": "XNA",
- "explorer_url": "https://neuraiexplorer.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Neurai Signed Message:\n",
- "fname": "Neurai",
- "rpcport": 19001,
- "pubtype": 53,
- "p2shtype": 117,
- "wiftype": 128,
- "segwit": true,
- "txfee": 1000000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/0'",
- "links": {
- "github": "https://github.com/NeuraiProject/Neurai",
- "homepage": "https://neurai.org"
- },
- "electrum": [
- {
- "url": "electrumx1.neurai.top:50001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "alarm@neurai.org"
- },
- {
- "discord": "456566604809895947"
- }
- ],
- "ws_url": "electrumx1.neurai.top:50002"
- },
- {
- "url": "electrumx2.neurai.top:50001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "alarm@neurai.org"
- },
- {
- "discord": "456566604809895947"
- }
- ],
- "ws_url": "electrumx2.neurai.top:50002"
- },
- {
- "url": "electrumx3.neurai.top:50001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "alarm@neurai.org"
- },
- {
- "discord": "456566604809895947"
- }
- ],
- "ws_url": "electrumx3.neurai.top:50002"
- }
- ],
- "explorer_block_url": "block/"
- },
- "XPM": {
- "coin": "XPM",
- "type": "UTXO",
- "name": "Primecoin",
- "coinpaprika_id": "xpm-primecoin",
- "coingecko_id": "primecoin",
- "livecoinwatch_id": "XPM",
- "explorer_url": "https://www.blockseek.io/xpm/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Primecoin",
- "rpcport": 8332,
- "pubtype": 23,
- "p2shtype": 83,
- "wiftype": 151,
- "txfee": 0,
- "dust": 1000000,
- "mm2": 1,
- "required_confirmations": 5,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/24'",
- "trezor_coin": "Primecoin",
- "links": {
- "github": "https://github.com/primecoin/primecoin",
- "homepage": "https://primecoin.io"
- },
- "electrum": [
- {
- "url": "electrumx.mainnet.primecoin.org:50011"
- },
- {
- "url": "electrumx.primecoin.org:50001"
- }
- ],
- "explorer_block_url": "block/"
- },
- "XRG": {
- "coin": "XRG",
- "type": "UTXO",
- "name": "Ergon",
- "coinpaprika_id": "xrg-ergon",
- "coingecko_id": "",
- "livecoinwatch_id": "XRG",
- "explorer_url": "https://explorer.ergon.network/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ergon",
- "rpcport": 2137,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 10,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "ergon"
- },
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/2137'",
- "electrum": [
- {
- "url": "fulcrum.ergon.network:52138",
- "protocol": "SSL",
- "ws_url": "fulcrum.ergon.network:52140",
- "contact": [
- {
- "email": "licho@ergon.moe"
- },
- {
- "telegram": "licho92karol"
- }
- ]
- },
- {
- "url": "la.ask.systems:52138",
- "protocol": "SSL",
- "ws_url": "la.ask.systems:52140",
- "contact": [
- {
- "telegram": "@fsmv0"
- }
- ]
- },
- {
- "url": "xrg_ful.googol.cash:52138",
- "protocol": "SSL",
- "disable_cert_verification": true
- }
- ],
- "explorer_block_url": "block/"
- },
- "XRP-BEP20": {
- "coin": "XRP-BEP20",
- "type": "BEP-20",
- "name": "XRP",
- "coinpaprika_id": "xrp-xrp",
- "coingecko_id": "ripple",
- "livecoinwatch_id": "XRP",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "XRP",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "XRP-ERC20": {
- "coin": "XRP-ERC20",
- "type": "ERC-20",
- "name": "XRP",
- "coinpaprika_id": "",
- "coingecko_id": "ripple",
- "livecoinwatch_id": "XRP",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "XRP",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x39fBBABf11738317a448031930706cd3e612e1B9"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x39fBBABf11738317a448031930706cd3e612e1B9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "XSGD-ERC20": {
- "coin": "XSGD-ERC20",
- "type": "ERC-20",
- "name": "StraitsX Singapore Dollar",
- "coinpaprika_id": "xsgd-xsgd",
- "coingecko_id": "xsgd",
- "livecoinwatch_id": "XSGD",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "StraitsX Singapore Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 6,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Singapore-Dollar Backed Stablecoin",
- "links": {
- "github": "https://github.com/Xfers/StraitsX-tokens",
- "homepage": "https://xfers.com/sg/stablecoin"
- },
- "contract_address": "0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "SGD"
- },
- "XSGD-PLG20": {
- "coin": "XSGD-PLG20",
- "type": "Matic",
- "name": "StraitsX Singapore Dollar",
- "coinpaprika_id": "xsgd-xsgd",
- "coingecko_id": "xsgd",
- "livecoinwatch_id": "XSGD",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "StraitsX Singapore Dollar",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 6,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xDC3326e71D45186F113a2F448984CA0e8D201995"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xDC3326e71D45186F113a2F448984CA0e8D201995",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/",
- "forex_id": "SGD"
- },
- "XTZ-BEP20": {
- "coin": "XTZ-BEP20",
- "type": "BEP-20",
- "name": "Tezos",
- "coinpaprika_id": "xtz-tezos",
- "coingecko_id": "tezos",
- "livecoinwatch_id": "XTZ",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Tezos",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x16939ef78684453bfDFb47825F8a5F714f12623a"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x16939ef78684453bfDFb47825F8a5F714f12623a",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "XVC": {
- "coin": "XVC",
- "type": "UTXO",
- "name": "VanillaCash",
- "coinpaprika_id": "xvc-vcash",
- "coingecko_id": "vcash",
- "livecoinwatch_id": "XVC",
- "explorer_url": "https://chainz.cryptoid.info/xvc/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "VanillaCash",
- "isPoS": 1,
- "rpcport": 48888,
- "pubtype": 18,
- "p2shtype": 30,
- "wiftype": 181,
- "txfee": 1000,
- "dust": 10000,
- "mm2": 1,
- "required_confirmations": 7,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx1.vanillacash.info:50011",
- "ws_url": "electrumx1.vanillacash.info:50013"
- },
- {
- "url": "electrumx2.vanillacash.info:50011",
- "ws_url": "electrumx2.vanillacash.info:50013"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "XVC-BEP20": {
- "coin": "XVC-BEP20",
- "type": "BEP-20",
- "name": "VanillaCash",
- "coinpaprika_id": "xvc-vcash",
- "coingecko_id": "vcash",
- "livecoinwatch_id": "XVC",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "VanillaCash",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xeBbfB9E5aF3172C7C0e1D4ff7106A8Bbb961F87B"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xeBbfB9E5aF3172C7C0e1D4ff7106A8Bbb961F87B",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "XVC-QRC20": {
- "coin": "XVC-QRC20",
- "type": "QRC-20",
- "name": "VanillaCash",
- "coinpaprika_id": "xvc-vcash",
- "coingecko_id": "vcash",
- "livecoinwatch_id": "XVC",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "VanillaCash",
- "rpcport": 3889,
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "txfee": 0,
- "dust": 72800,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x4cdaa46741af44c68179c54c4fcb02c2bf646d30"
- }
- },
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x4cdaa46741af44c68179c54c4fcb02c2bf646d30",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "XVG": {
- "coin": "XVG",
- "type": "UTXO",
- "name": "Verge",
- "coinpaprika_id": "xvg-verge",
- "coingecko_id": "verge",
- "livecoinwatch_id": "XVG",
- "explorer_url": "https://xvgblockexplorer.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "VERGE Signed Message:\n",
- "fname": "Verge",
- "isPoS": 1,
- "rpcport": 20102,
- "pubtype": 30,
- "p2shtype": 33,
- "wiftype": 158,
- "decimals": 6,
- "segwit": true,
- "bech32_hrp": "vg",
- "txfee": 400000,
- "dust": 400000,
- "force_min_relay_fee": true,
- "mm2": 1,
- "required_confirmations": 10,
- "avg_blocktime": 30,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/77'",
- "electrum": [
- {
- "url": "88.99.26.209:5036"
- },
- {
- "url": "electrumx-verge.cloud:50001",
- "protocol": "TCP"
- },
- {
- "url": "electrumx-verge.cloud:50002",
- "protocol": "SSL",
- "ws_url": "electrumx-verge.cloud:50004"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "XVG"
- },
- "XVS-BEP20": {
- "coin": "XVS-BEP20",
- "type": "BEP-20",
- "name": "Venus",
- "coinpaprika_id": "xvs-venus",
- "coingecko_id": "venus",
- "livecoinwatch_id": "XVS",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Venus",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "YFI-AVX20": {
- "coin": "YFI-AVX20",
- "type": "AVX-20",
- "name": "yearn.finance",
- "coinpaprika_id": "yfi-yearnfinance",
- "coingecko_id": "yearn-finance",
- "livecoinwatch_id": "YFI",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "YFI-BEP20": {
- "coin": "YFI-BEP20",
- "type": "BEP-20",
- "name": "yearn.finance",
- "coinpaprika_id": "yfi-yearnfinance",
- "coingecko_id": "yearn-finance",
- "livecoinwatch_id": "YFI",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "YFI-ERC20": {
- "coin": "YFI-ERC20",
- "type": "ERC-20",
- "name": "yearn.finance",
- "coinpaprika_id": "yfi-yearnfinance",
- "coingecko_id": "yearn-finance",
- "livecoinwatch_id": "YFI",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "yearn.finance",
- "links": {
- "github": "https://github.com/iearn-finance",
- "homepage": "https://yearn.finance/"
- },
- "contract_address": "0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "YFI-FTM20": {
- "coin": "YFI-FTM20",
- "type": "FTM-20",
- "name": "yearn.finance",
- "coinpaprika_id": "yfi-yearnfinance",
- "coingecko_id": "yearn-finance",
- "livecoinwatch_id": "YFI",
- "explorer_url": "https://ftmscan.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 250,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "FTM",
- "contract_address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69"
- }
- },
- "derivation_path": "m/44'/1007'",
- "contract_address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69",
- "parent_coin": "FTM",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/fantom",
- "gui_auth": true
- },
- {
- "url": "https://rpc.fantom.network"
- },
- {
- "url": "https://rpc2.fantom.network"
- }
- ],
- "explorer_block_url": "block/"
- },
- "YFI-KRC20": {
- "coin": "YFI-KRC20",
- "type": "KRC-20",
- "name": "yearn.finance",
- "coinpaprika_id": "yfi-yearnfinance",
- "coingecko_id": "yearn-finance",
- "livecoinwatch_id": "YFI",
- "explorer_url": "https://explorer.kcc.io/en/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 321,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "KCS",
- "contract_address": "0xdfa3Ef49d357c6b0B2DfBB88701af2b7A053fD0A"
- }
- },
- "derivation_path": "m/44'/641'",
- "contract_address": "0xdfa3Ef49d357c6b0B2DfBB88701af2b7A053fD0A",
- "parent_coin": "KCS",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc-mainnet.kcc.network"
- },
- {
- "url": "https://kcc-rpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "YFI-PLG20": {
- "coin": "YFI-PLG20",
- "type": "Matic",
- "name": "yearn.finance",
- "coinpaprika_id": "yfi-yearnfinance",
- "coingecko_id": "yearn-finance",
- "livecoinwatch_id": "YFI",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "yearn.finance",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0xDA537104D6A5edd53c6fBba9A898708E465260b6"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0xDA537104D6A5edd53c6fBba9A898708E465260b6",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "YFII-BEP20": {
- "coin": "YFII-BEP20",
- "type": "BEP-20",
- "name": "DFI.Money",
- "coinpaprika_id": "yfii-dfimoney",
- "coingecko_id": "yfii-finance",
- "livecoinwatch_id": "YFII",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DFI.Money",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "YFII-ERC20": {
- "coin": "YFII-ERC20",
- "type": "ERC-20",
- "name": "DFI.Money",
- "coinpaprika_id": "yfii-dfimoney",
- "coingecko_id": "yfii-finance",
- "livecoinwatch_id": "YFII",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DFI.Money",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "YFII.finance",
- "links": {
- "github": "https://github.com/yfii/vault",
- "homepage": "https://dfi.money/"
- },
- "contract_address": "0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ZEC": {
- "coin": "ZEC",
- "type": "UTXO",
- "name": "Zcash",
- "coinpaprika_id": "zec-zcash",
- "coingecko_id": "zcash",
- "livecoinwatch_id": "ZEC",
- "explorer_url": "https://blockchair.com/zcash/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Zcash Signed Message:\n",
- "fname": "Zcash",
- "rpcport": 8232,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "segwit": true,
- "txversion": 4,
- "overwintered": 1,
- "version_group_id": "0x892f2085",
- "consensus_branch_id": "0xc2d6d0b4",
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 75,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/133'",
- "trezor_coin": "Zcash",
- "links": {
- "github": "https://github.com/zcash/zcash",
- "homepage": "https://z.cash"
- },
- "electrum": [
- {
- "url": "electrum1.cipig.net:10058",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10058",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10058",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20058",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30058"
- },
- {
- "url": "electrum2.cipig.net:20058",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30058"
- },
- {
- "url": "electrum3.cipig.net:20058",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30058"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ZEC"
- },
- "ZER": {
- "coin": "ZER",
- "type": "UTXO",
- "name": "Zero",
- "coinpaprika_id": "zer-zero",
- "coingecko_id": "zero",
- "livecoinwatch_id": "ZER",
- "explorer_url": "https://insight.zerocurrency.io/insight/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Zero",
- "rpcport": 23811,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "txversion": 4,
- "overwintered": 1,
- "version_group_id": "0x892f2085",
- "consensus_branch_id": "0x7361707a",
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 4,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/323'",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10065",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10065",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10065",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20065",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30065"
- },
- {
- "url": "electrum2.cipig.net:20065",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30065"
- },
- {
- "url": "electrum3.cipig.net:20065",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30065"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ZER-BEP20": {
- "coin": "ZER-BEP20",
- "type": "BEP-20",
- "name": "Zero",
- "coinpaprika_id": "zer-zero",
- "coingecko_id": "zero",
- "livecoinwatch_id": "ZER",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Zero",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x530e9346870E632A63E8d461bb3c3622e00782DE"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x530e9346870E632A63E8d461bb3c3622e00782DE",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ZET": {
- "coin": "ZET",
- "type": "UTXO",
- "name": "Zetacoin",
- "coinpaprika_id": "zet-zetacoin",
- "coingecko_id": "zetacoin",
- "livecoinwatch_id": "ZET",
- "explorer_url": "https://chainz.cryptoid.info/zet/",
- "explorer_tx_url": "tx.dws?",
- "explorer_address_url": "address.dws?",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Zetacoin Signed Message:\n",
- "fname": "Zetacoin",
- "isPoS": 1,
- "rpcport": 22014,
- "pubtype": 20,
- "p2shtype": 85,
- "wiftype": 153,
- "txfee": 100000,
- "dust": 100000,
- "mm2": 1,
- "mature_confirmations": 500,
- "required_confirmations": 7,
- "avg_blocktime": 45,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "207.180.252.200:50011",
- "protocol": "TCP"
- },
- {
- "url": "zeta-seed-d.zetacoin.network:50012",
- "protocol": "SSL",
- "ws_url": "zeta-seed-d.zetacoin.network:50013"
- }
- ],
- "explorer_block_url": "block.dws?"
- },
- "ZIL-BEP20": {
- "coin": "ZIL-BEP20",
- "type": "BEP-20",
- "name": "Zilliqa",
- "coinpaprika_id": "zil-zilliqa",
- "coingecko_id": "zilliqa",
- "livecoinwatch_id": "ZIL",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Zilliqa",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ZRX-AVX20": {
- "coin": "ZRX-AVX20",
- "type": "AVX-20",
- "name": "0x",
- "coinpaprika_id": "zrx-0x",
- "coingecko_id": "0x",
- "livecoinwatch_id": "ZRX",
- "explorer_url": "https://snowtrace.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "0x",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 43114,
- "required_confirmations": 3,
- "avg_blocktime": 2.4,
- "decimals": 18,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "AVAX",
- "contract_address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2"
- }
- },
- "derivation_path": "m/44'/9000'",
- "contract_address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2",
- "parent_coin": "AVAX",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/avalanche",
- "gui_auth": true
- },
- {
- "url": "https://api.avax.network/ext/bc/C/rpc"
- },
- {
- "url": "https://avalanche.blockpi.network/v1/rpc/public"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ZRX-ERC20": {
- "coin": "ZRX-ERC20",
- "type": "ERC-20",
- "name": "0x",
- "coinpaprika_id": "zrx-0x",
- "coingecko_id": "0x",
- "livecoinwatch_id": "ZRX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "0x",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xE41d2489571d322189246DaFA5ebDe1F4699F498"
- }
- },
- "derivation_path": "m/44'/60'",
- "trezor_coin": "0x Project",
- "links": {
- "github": "https://github.com/0xProject",
- "homepage": "https://0xproject.com"
- },
- "contract_address": "0xE41d2489571d322189246DaFA5ebDe1F4699F498",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ZRX-PLG20": {
- "coin": "ZRX-PLG20",
- "type": "Matic",
- "name": "0x",
- "coinpaprika_id": "zrx-0x",
- "coingecko_id": "0x",
- "livecoinwatch_id": "ZRX",
- "explorer_url": "https://polygonscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "0x",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 137,
- "decimals": 18,
- "avg_blocktime": 1.8,
- "required_confirmations": 20,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "MATIC",
- "contract_address": "0x5559Edb74751A0edE9DeA4DC23aeE72cCA6bE3D5"
- }
- },
- "derivation_path": "m/44'/966'",
- "contract_address": "0x5559Edb74751A0edE9DeA4DC23aeE72cCA6bE3D5",
- "parent_coin": "MATIC",
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/polygon",
- "gui_auth": true
- },
- {
- "url": "https://polygon-rpc.com"
- },
- {
- "url": "https://polygon.blockpi.network/v1/rpc/public"
- },
- {
- "url": "https://polygon.llamarpc.com"
- }
- ],
- "explorer_block_url": "block/"
- },
- "INK-QRC20": {
- "coin": "INK-QRC20",
- "type": "QRC-20",
- "name": "INK",
- "coinpaprika_id": "ink-ink",
- "coingecko_id": "ink",
- "livecoinwatch_id": "INK",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "INK",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xfe59cbc1704e89a698571413a81f0de9d8f00c69"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 9,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xfe59cbc1704e89a698571413a81f0de9d8f00c69",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "FLUX": {
- "coin": "FLUX",
- "type": "UTXO",
- "name": "Flux",
- "coinpaprika_id": "zel-zelcash",
- "coingecko_id": "zelcash",
- "livecoinwatch_id": "_FLUX",
- "explorer_url": "https://explorer.runonflux.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Flux",
- "rpcport": 16124,
- "taddr": 28,
- "pubtype": 184,
- "p2shtype": 189,
- "wiftype": 128,
- "txversion": 4,
- "overwintered": 1,
- "version_group_id": "0x892f2085",
- "consensus_branch_id": "0x76b809bb",
- "txfee": 10000,
- "mm2": 1,
- "required_confirmations": 2,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/19167'",
- "electrum": [
- {
- "url": "electrumx.runonflux.io:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "ws_url": "electrumx.runonflux.io:50004"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "FLUX"
- },
- "FLUX-ERC20": {
- "coin": "FLUX-ERC20",
- "type": "ERC-20",
- "name": "Flux",
- "coinpaprika_id": "zel-zelcash",
- "coingecko_id": "zelcash",
- "livecoinwatch_id": "_FLUX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Flux",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "avg_blocktime": 15,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x720CD16b011b987Da3518fbf38c3071d4F0D1495"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0x720CD16b011b987Da3518fbf38c3071d4F0D1495",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "FLUX"
- },
- "FLUX-BEP20": {
- "coin": "FLUX-BEP20",
- "type": "BEP-20",
- "name": "Flux",
- "coinpaprika_id": "zel-zelcash",
- "coingecko_id": "zelcash",
- "livecoinwatch_id": "_FLUX",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Flux",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xaFF9084f2374585879e8B434C399E29E80ccE635"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xaFF9084f2374585879e8B434C399E29E80ccE635",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/",
- "binance_id": "FLUX"
- },
- "HPY-QRC20": {
- "coin": "HPY-QRC20",
- "type": "QRC-20",
- "name": "HyperPay",
- "coinpaprika_id": "hpy-hyper-pay",
- "coingecko_id": "hyper-pay",
- "livecoinwatch_id": "HPY",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HyperPay",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xf2703e93f87b846a7aacec1247beaec1c583daa4"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xf2703e93f87b846a7aacec1247beaec1c583daa4",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "HLC-QRC20": {
- "coin": "HLC-QRC20",
- "type": "QRC-20",
- "name": "HalalChain",
- "coinpaprika_id": "hlc-halalchain",
- "coingecko_id": "halalchain",
- "livecoinwatch_id": "HLC",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "HalalChain",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xb27d7bf95b03e02b55d5eb63d3f1692762101bf9"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 9,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xb27d7bf95b03e02b55d5eb63d3f1692762101bf9",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "MED-QRC20": {
- "coin": "MED-QRC20",
- "type": "QRC-20",
- "name": "Medibloc",
- "coinpaprika_id": "med-medibloc-qrc20",
- "coingecko_id": "medibloc",
- "livecoinwatch_id": "MED",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Medibloc",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x2f65a0af11d50d2d15962db39d7f7b0619ed55ae"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x2f65a0af11d50d2d15962db39d7f7b0619ed55ae",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "LSTR-QRC20": {
- "coin": "LSTR-QRC20",
- "type": "QRC-20",
- "name": "Luna Stars",
- "coinpaprika_id": "lstr-luna-stars",
- "coingecko_id": "meetluna",
- "livecoinwatch_id": "",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Luna Stars",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x72e531e37c31ecbe336208fd66e93b48df3af420"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x72e531e37c31ecbe336208fd66e93b48df3af420",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "QBT-QRC20": {
- "coin": "QBT-QRC20",
- "type": "QRC-20",
- "name": "Qbao",
- "coinpaprika_id": "qbt-qbao",
- "coingecko_id": "qbao",
- "livecoinwatch_id": "QBT",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Qbao",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x09800417b097c61b9fd26b3ddde4238304a110d5"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x09800417b097c61b9fd26b3ddde4238304a110d5",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "TSL-QRC20": {
- "coin": "TSL-QRC20",
- "type": "QRC-20",
- "name": "Energo TSL",
- "coinpaprika_id": "tsl-energo",
- "coingecko_id": "energo",
- "livecoinwatch_id": "TSL",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Energo TSL",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xd8dec2b605005749abbf4b060edad3070e23cf5c"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 18,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xd8dec2b605005749abbf4b060edad3070e23cf5c",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "OC-QRC20": {
- "coin": "OC-QRC20",
- "type": "QRC-20",
- "name": "OceanChain",
- "coinpaprika_id": "oc-oceanchain",
- "coingecko_id": "oceanchain",
- "livecoinwatch_id": "OC",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "OceanChain",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0xf397f39ce992b0f5bdc7ec1109d676d07f7af2f9"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0xf397f39ce992b0f5bdc7ec1109d676d07f7af2f9",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PUT-QRC20": {
- "coin": "PUT-QRC20",
- "type": "QRC-20",
- "name": "Profile Utility Token",
- "coinpaprika_id": "put-profile-utility-token",
- "coingecko_id": "profile-utility-token",
- "livecoinwatch_id": "",
- "explorer_url": "https://explorer.qtum.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Profile Utility Token",
- "rpcport": 3889,
- "mm2": 1,
- "required_confirmations": 3,
- "mature_confirmations": 2000,
- "avg_blocktime": 32,
- "txfee": 0,
- "dust": 72800,
- "protocol": {
- "type": "QRC20",
- "protocol_data": {
- "platform": "QTUM",
- "contract_address": "0x4060e21ac01b5c5d2a3f01cecd7cbf820f50be95"
- }
- },
- "pubtype": 58,
- "p2shtype": 50,
- "wiftype": 128,
- "segwit": false,
- "decimals": 8,
- "derivation_path": "m/44'/2301'",
- "contract_address": "0x4060e21ac01b5c5d2a3f01cecd7cbf820f50be95",
- "parent_coin": "QTUM",
- "swap_contract_address": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "fallback_swap_contract": "0x2f754733acd6d753731c00fee32cb484551cc15d",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10050",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30050"
- },
- {
- "url": "electrum2.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30050"
- },
- {
- "url": "electrum3.cipig.net:20050",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30050"
- }
- ],
- "explorer_block_url": "block/"
- },
- "OKB-ERC20": {
- "coin": "OKB-ERC20",
- "type": "ERC-20",
- "name": "OKB",
- "coinpaprika_id": "okb-okb",
- "coingecko_id": "okb",
- "livecoinwatch_id": "OKB",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "OKB",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x75231F58b43240C9718Dd58B4967c5114342a86c"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "OKB",
- "links": {
- "github": "https://github.com/okex/okberc20token",
- "homepage": "https://www.okex.com/"
- },
- "contract_address": "0x75231F58b43240C9718Dd58B4967c5114342a86c",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SEELE-ERC20": {
- "coin": "SEELE-ERC20",
- "type": "ERC-20",
- "name": "Seele",
- "coinpaprika_id": "seele-seele",
- "coingecko_id": "seele",
- "livecoinwatch_id": "SEELE",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Seele",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB1e93236ab6073fdAC58adA5564897177D4bcC43"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Seele",
- "links": {
- "homepage": "http://seele.pro"
- },
- "contract_address": "0xB1e93236ab6073fdAC58adA5564897177D4bcC43",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "REV-ERC20": {
- "coin": "REV-ERC20",
- "type": "ERC-20",
- "name": "Revain",
- "coinpaprika_id": "rev-revain",
- "coingecko_id": "revain",
- "livecoinwatch_id": "REV",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Revain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9"
- }
- },
- "decimals": 6,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Revain",
- "links": {
- "github": "https://github.com/Revain",
- "homepage": "https://revain.org"
- },
- "contract_address": "0x2ef52Ed7De8c5ce03a4eF0efbe9B7450F2D7Edc9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SNT-ERC20": {
- "coin": "SNT-ERC20",
- "type": "ERC-20",
- "name": "Status",
- "coinpaprika_id": "snt-status",
- "coingecko_id": "status",
- "livecoinwatch_id": "SNT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Status",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Status Network Token",
- "links": {
- "github": "https://github.com/status-im",
- "homepage": "https://status.im"
- },
- "contract_address": "0x744d70FDBE2Ba4CF95131626614a1763DF805B9E",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "ANT-ERC20": {
- "coin": "ANT-ERC20",
- "type": "ERC-20",
- "name": "Aragon",
- "coinpaprika_id": "ant-aragon",
- "coingecko_id": "aragon",
- "livecoinwatch_id": "ANT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Aragon",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "contract_address": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "BEST-ERC20": {
- "coin": "BEST-ERC20",
- "type": "ERC-20",
- "name": "Bitpanda Ecosystem",
- "coinpaprika_id": "best-bitpanda-ecosystem-token",
- "coingecko_id": "bitpanda-ecosystem-token",
- "livecoinwatch_id": "BEST",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Bitpanda Ecosystem",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F"
- }
- },
- "decimals": 8,
- "derivation_path": "m/44'/60'",
- "contract_address": "0x1B073382E63411E3BcfFE90aC1B9A43feFa1Ec6F",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CVT-ERC20": {
- "coin": "CVT-ERC20",
- "type": "ERC-20",
- "name": "CyberVein",
- "coinpaprika_id": "cvt-cybervein",
- "coingecko_id": "cybervein",
- "livecoinwatch_id": "CVT",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "CyberVein",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xBe428c3867F05deA2A89Fc76a102b544eaC7f772"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "CyberVein",
- "links": {
- "homepage": "http://www.cybervein.org"
- },
- "contract_address": "0xBe428c3867F05deA2A89Fc76a102b544eaC7f772",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "DX-ERC20": {
- "coin": "DX-ERC20",
- "type": "ERC-20",
- "name": "DxChain",
- "coinpaprika_id": "dx-dxchain-token",
- "coingecko_id": "dxchain",
- "livecoinwatch_id": "DX",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "DxChain",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x973e52691176d36453868D9d86572788d27041A9"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "contract_address": "0x973e52691176d36453868D9d86572788d27041A9",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "STORJ-ERC20": {
- "coin": "STORJ-ERC20",
- "type": "ERC-20",
- "name": "Storj",
- "coinpaprika_id": "storj-storj",
- "coingecko_id": "storj",
- "livecoinwatch_id": "STORJ",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Storj",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC"
- }
- },
- "decimals": 8,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "STORJ",
- "links": {
- "github": "https://github.com/Storj",
- "homepage": "https://storj.io"
- },
- "contract_address": "0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "TRAC-ERC20": {
- "coin": "TRAC-ERC20",
- "type": "ERC-20",
- "name": "OriginTrail",
- "coinpaprika_id": "trac-origintrail",
- "coingecko_id": "origintrail",
- "livecoinwatch_id": "TRAC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "OriginTrail",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "OriginTrail",
- "links": {
- "homepage": "https://origintrail.io"
- },
- "contract_address": "0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UBQ": {
- "coin": "UBQ",
- "type": "Ubiq",
- "name": "Ubiq",
- "coinpaprika_id": "ubq-ubiq",
- "coingecko_id": "ubiq",
- "livecoinwatch_id": "UBQ",
- "explorer_url": "https://ubiqscan.io/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ubiq",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 8,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ETH"
- },
- "derivation_path": "m/44'/108'",
- "trezor_coin": "Ubiq",
- "links": {
- "homepage": "https://ubiqsmart.com"
- },
- "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE",
- "nodes": [
- {
- "url": "https://rpc.octano.dev/"
- }
- ],
- "explorer_block_url": "block/"
- },
- "PNK-ERC20": {
- "coin": "PNK-ERC20",
- "type": "ERC-20",
- "name": "Kleros",
- "coinpaprika_id": "pnk-kleros",
- "coingecko_id": "kleros",
- "livecoinwatch_id": "PNK",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kleros",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Pinakion",
- "links": {
- "github": "https://github.com/kleros",
- "homepage": "https://kleros.io"
- },
- "contract_address": "0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SKL-ERC20": {
- "coin": "SKL-ERC20",
- "type": "ERC-20",
- "name": "SKALE",
- "coinpaprika_id": "skl-skale",
- "coingecko_id": "skale",
- "livecoinwatch_id": "SKL",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SKALE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "contract_address": "0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "CVC-ERC20": {
- "coin": "CVC-ERC20",
- "type": "ERC-20",
- "name": "Civic",
- "coinpaprika_id": "cvc-civic",
- "coingecko_id": "civic",
- "livecoinwatch_id": "CVC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Civic",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x41e5560054824eA6B0732E656E3Ad64E20e94E45"
- }
- },
- "decimals": 8,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Civic",
- "links": {
- "homepage": "https://www.civic.com"
- },
- "contract_address": "0x41e5560054824eA6B0732E656E3Ad64E20e94E45",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UTK-ERC20": {
- "coin": "UTK-ERC20",
- "type": "ERC-20",
- "name": "Utrust",
- "coinpaprika_id": "utk-utrust",
- "coingecko_id": "utrust",
- "livecoinwatch_id": "UTK",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Utrust",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Utrust",
- "links": {
- "github": "https://github.com/utrustdev/",
- "homepage": "https://utrust.com"
- },
- "contract_address": "0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "MLN-ERC20": {
- "coin": "MLN-ERC20",
- "type": "ERC-20",
- "name": "Enzyme",
- "coinpaprika_id": "mln-melon",
- "coingecko_id": "melon",
- "livecoinwatch_id": "MLN",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Enzyme",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xec67005c4E498Ec7f55E092bd1d35cbC47C91892"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "contract_address": "0xec67005c4E498Ec7f55E092bd1d35cbC47C91892",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "XOR-ERC20": {
- "coin": "XOR-ERC20",
- "type": "ERC-20",
- "name": "Sora",
- "coinpaprika_id": "xor-sora",
- "coingecko_id": "sora",
- "livecoinwatch_id": "XOR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Sora",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x40FD72257597aA14C7231A7B1aaa29Fce868F677"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "contract_address": "0x40FD72257597aA14C7231A7B1aaa29Fce868F677",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UQC-ERC20": {
- "coin": "UQC-ERC20",
- "type": "ERC-20",
- "name": "Uquid Coin",
- "coinpaprika_id": "uqc-uquid-coin",
- "coingecko_id": "uquid-coin",
- "livecoinwatch_id": "UQC",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Uquid Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2"
- }
- },
- "decimals": 18,
- "derivation_path": "m/44'/60'",
- "trezor_coin": "Uquid Coin",
- "links": {
- "homepage": "https://uquidcoin.com"
- },
- "contract_address": "0x8806926Ab68EB5a7b909DcAf6FdBe5d93271D6e2",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "UOS-ERC20": {
- "coin": "UOS-ERC20",
- "type": "ERC-20",
- "name": "Ultra",
- "coinpaprika_id": "uos-ultra",
- "coingecko_id": "ultra",
- "livecoinwatch_id": "UOS",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Ultra",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c"
- }
- },
- "decimals": 4,
- "derivation_path": "m/44'/60'",
- "contract_address": "0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SHR-ERC20": {
- "coin": "SHR-ERC20",
- "type": "ERC-20",
- "name": "Share",
- "coinpaprika_id": "shr-sharetoken",
- "coingecko_id": "sharering",
- "livecoinwatch_id": "SHR",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 2,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xd98F75b1A3261dab9eEd4956c93F33749027a964"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xd98F75b1A3261dab9eEd4956c93F33749027a964",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "SHR-BEP20": {
- "coin": "SHR-BEP20",
- "type": "BEP-20",
- "name": "Share",
- "coinpaprika_id": "shr-sharetoken",
- "coingecko_id": "sharering",
- "livecoinwatch_id": "SHR",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Share",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x5fb4968fC85868DF3aD2d6e59883a10570f01D18"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x5fb4968fC85868DF3aD2d6e59883a10570f01D18",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "S4F-ERC20": {
- "coin": "S4F-ERC20",
- "type": "ERC-20",
- "name": "S4FE",
- "coinpaprika_id": "s4f-s4fe",
- "coingecko_id": "s4fe",
- "livecoinwatch_id": "S4F",
- "explorer_url": "https://etherscan.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "S4FE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 1,
- "decimals": 18,
- "required_confirmations": 3,
- "avg_blocktime": 15,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "ETH",
- "contract_address": "0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a"
- }
- },
- "derivation_path": "m/44'/60'",
- "contract_address": "0xAec7d1069e3a914a3EB50f0BFB1796751f2ce48a",
- "parent_coin": "ETH",
- "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80",
- "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/ethereum",
- "gui_auth": true
- },
- {
- "url": "https://eth1.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth2.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- },
- {
- "url": "https://eth3.cipig.net:18555",
- "contact": {
- "email": "cipi@komodoplatform.com"
- }
- }
- ],
- "explorer_block_url": "block/"
- },
- "S4F-BEP20": {
- "coin": "S4F-BEP20",
- "type": "BEP-20",
- "name": "S4FE",
- "coinpaprika_id": "s4f-s4fe",
- "coingecko_id": "s4fe",
- "livecoinwatch_id": "S4F",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "S4FE",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "decimals": 18,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x788D2780992222360f674cc12C36478870b8E6ED"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x788D2780992222360f674cc12C36478870b8E6ED",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "tBCH": {
- "coin": "tBCH",
- "type": "UTXO",
- "name": "Bitcoin Cash Testnet",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://tbch.loping.net/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "bchd_urls": [
- "https://bchd-testnet.greyh.at:18335"
- ],
- "other_types": [
- "SLP"
- ],
- "fname": "Bitcoin Cash Testnet",
- "pubtype": 111,
- "p2shtype": 196,
- "wiftype": 239,
- "txfee": 0,
- "estimate_fee_blocks": 2,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "bchtest"
- },
- "mm2": 1,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "BCH",
- "protocol_data": {
- "slp_prefix": "slptest"
- }
- },
- "allow_slp_unsafe_conf": false,
- "slp_prefix": "slptest",
- "electrum": [
- {
- "url": "electroncash.de:50004",
- "protocol": "SSL",
- "contact": [
- {
- "website": "https://1209k.com/bitcoin-eye/ele.php?chain=tbch"
- }
- ]
- },
- {
- "url": "electrs.electroncash.de:60002",
- "protocol": "SSL",
- "contact": [
- {
- "website": "https://1209k.com/bitcoin-eye/ele.php?chain=tbch"
- }
- ]
- },
- {
- "url": "tbch.loping.net:60002",
- "protocol": "SSL",
- "contact": [
- {
- "website": "https://1209k.com/bitcoin-eye/ele.php?chain=tbch"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "USDF": {
- "coin": "USDF",
- "type": "SLP",
- "name": "Fake USD",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://testnet.simpleledger.info/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": true,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Fake USD",
- "protocol": {
- "type": "SLPTOKEN",
- "protocol_data": {
- "decimals": 4,
- "token_id": "bb309e48930671582bea508f9a1d9b491e49b69be3d6f372dc08da2ac6e90eb7",
- "platform": "tBCH",
- "required_confirmations": 1,
- "slp_prefix": "slptest"
- }
- },
- "mm2": 1,
- "slp_prefix": "slptest",
- "token_id": "bb309e48930671582bea508f9a1d9b491e49b69be3d6f372dc08da2ac6e90eb7",
- "parent_coin": "tSLP",
- "token_address_url": "token/",
- "explorer_block_url": "block/"
- },
- "WHIVE": {
- "coin": "WHIVE",
- "type": "UTXO",
- "name": "Whive",
- "coinpaprika_id": "whive-the-whive-protocol",
- "coingecko_id": "whive",
- "livecoinwatch_id": "WHIVE",
- "explorer_url": "https://whiveexplorer.cointest.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "fname": "Whive",
- "rpcport": 1867,
- "pubtype": 73,
- "p2shtype": 10,
- "wiftype": 128,
- "txfee": 0,
- "dust": 1000,
- "segwit": true,
- "bech32_hrp": "wv",
- "mm2": 1,
- "required_confirmations": 1,
- "mature_confirmations": 100,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx1.cointest.com:50001",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- },
- {
- "url": "electrumx2.cointest.com:50001",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- },
- {
- "url": "electrumx1.cointest.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- },
- {
- "url": "electrumx2.cointest.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "WHIVE-segwit": {
- "coin": "WHIVE-segwit",
- "type": "UTXO",
- "name": "Whive",
- "coinpaprika_id": "whive-the-whive-protocol",
- "coingecko_id": "whive",
- "livecoinwatch_id": "WHIVE",
- "explorer_url": "https://whiveexplorer.cointest.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Whive",
- "rpcport": 1867,
- "pubtype": 73,
- "p2shtype": 10,
- "wiftype": 128,
- "txfee": 0,
- "dust": 1000,
- "segwit": true,
- "bech32_hrp": "wv",
- "address_format": {
- "format": "segwit"
- },
- "orderbook_ticker": "WHIVE",
- "mm2": 1,
- "required_confirmations": 1,
- "mature_confirmations": 100,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrumx1.cointest.com:50001",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- },
- {
- "url": "electrumx2.cointest.com:50001",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- },
- {
- "url": "electrumx1.cointest.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- },
- {
- "url": "electrumx2.cointest.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "protocol@whive.io"
- },
- {
- "discord": "whiveio#9340"
- },
- {
- "twitter": "whiveio"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "XEC": {
- "coin": "XEC",
- "type": "UTXO",
- "name": "eCash",
- "coinpaprika_id": "xec-ecash",
- "coingecko_id": "ecash",
- "livecoinwatch_id": "XEC",
- "explorer_url": "https://blockchair.com/ecash/",
- "explorer_tx_url": "transaction/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "eCash",
- "rpcport": 8332,
- "pubtype": 0,
- "p2shtype": 5,
- "wiftype": 128,
- "txfee": 0,
- "estimate_fee_blocks": 2,
- "segwit": false,
- "fork_id": "0x40",
- "address_format": {
- "format": "cashaddress",
- "network": "ecash"
- },
- "mm2": 1,
- "decimals": 2,
- "required_confirmations": 1,
- "avg_blocktime": 600,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/1899'",
- "electrum": [
- {
- "url": "ecash.stackwallet.com:59002",
- "protocol": "SSL",
- "ws_url": "ecash.stackwallet.com:59004"
- },
- {
- "url": "electrum.bitcoinabc.org:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "joey@e.cash"
- },
- {
- "twitter": "bytesofman"
- }
- ]
- },
- {
- "url": "fulcrum.pepipierre.fr:50002",
- "protocol": "SSL",
- "disable_cert_verification": true,
- "contact": [
- {
- "email": "contact@e.cash"
- },
- {
- "twitter": "ecashofficial"
- }
- ]
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "XEC"
- },
- "SIBM-BEP20": {
- "coin": "SIBM-BEP20",
- "type": "BEP-20",
- "name": "SibMining",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "SibMining",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xee8EE60503fd0a735cC972A08E3a5B2026DDCe47"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xee8EE60503fd0a735cC972A08E3a5B2026DDCe47",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "VOTE2023": {
- "coin": "VOTE2023",
- "type": "Smart Chain",
- "name": "VOTE2023",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://vote2023.dragonhound.info/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "VOTE2023",
- "fname": "VOTE2023",
- "rpcport": 25435,
- "txversion": 4,
- "overwintered": 1,
- "mm2": 1,
- "required_confirmations": 1,
- "requires_notarization": false,
- "avg_blocktime": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrum1.cipig.net:10002",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum2.cipig.net:10002",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum3.cipig.net:10002",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ]
- },
- {
- "url": "electrum1.cipig.net:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum1.cipig.net:30002"
- },
- {
- "url": "electrum2.cipig.net:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum2.cipig.net:30002"
- },
- {
- "url": "electrum3.cipig.net:20002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "cipi@komodoplatform.com"
- },
- {
- "discord": "cipi#4502"
- }
- ],
- "ws_url": "electrum3.cipig.net:30002"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ZOMBIE": {
- "coin": "ZOMBIE",
- "type": "ZHTLC",
- "name": "Zombie",
- "coinpaprika_id": "",
- "coingecko_id": "",
- "livecoinwatch_id": "",
- "explorer_url": "https://zombie.komodo.earth/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "light_wallet_d_servers": [
- "https://zombie.dragonhound.info:443",
- "https://zombie.dragonhound.info:1443"
- ],
- "asset": "ZOMBIE",
- "fname": "Zombie",
- "txversion": 4,
- "overwintered": 1,
- "avg_blocktime": 60,
- "mm2": 1,
- "protocol": {
- "type": "ZHTLC",
- "protocol_data": {
- "consensus_params": {
- "overwinter_activation_height": 0,
- "sapling_activation_height": 1,
- "blossom_activation_height": null,
- "heartwood_activation_height": null,
- "canopy_activation_height": null,
- "coin_type": 133,
- "hrp_sapling_extended_spending_key": "secret-extended-key-main",
- "hrp_sapling_extended_full_viewing_key": "zxviews",
- "hrp_sapling_payment_address": "zs",
- "b58_pubkey_address_prefix": [
- 28,
- 184
- ],
- "b58_script_address_prefix": [
- 28,
- 189
- ]
- }
- }
- },
- "required_confirmations": 3,
- "electrum": [
- {
- "url": "zombie.dragonhound.info:10033",
- "contact": [
- {
- "email": "smk@komodoplatform.com"
- },
- {
- "discord": "smk#7640"
- }
- ]
- },
- {
- "url": "zombie.dragonhound.info:10133",
- "contact": [
- {
- "email": "smk@komodoplatform.com"
- },
- {
- "discord": "smk#7640"
- }
- ]
- },
- {
- "url": "zombie.dragonhound.info:20033",
- "protocol": "SSL",
- "contact": [
- {
- "email": "smk@komodoplatform.com"
- },
- {
- "discord": "smk#7640"
- }
- ],
- "ws_url": "zombie.dragonhound.info:30058"
- },
- {
- "url": "zombie.dragonhound.info:20133",
- "protocol": "SSL",
- "contact": [
- {
- "email": "smk@komodoplatform.com"
- },
- {
- "discord": "smk#7640"
- }
- ],
- "ws_url": "zombie.dragonhound.info:30059"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ZINU-BEP20": {
- "coin": "ZINU-BEP20",
- "type": "BEP-20",
- "name": "Zombie Inu",
- "coinpaprika_id": "zombie-inu",
- "coingecko_id": "zinu-zombie-inu",
- "livecoinwatch_id": "ZINU",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Zombie Inu",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x21F9B5b2626603e3F40bfc13d01AfB8c431D382F"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x21F9B5b2626603e3F40bfc13d01AfB8c431D382F",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "RUNES": {
- "coin": "RUNES",
- "type": "UTXO",
- "name": "Runebase",
- "coinpaprika_id": "runes-runebase",
- "coingecko_id": "runebase",
- "livecoinwatch_id": "",
- "explorer_url": "https://explorer.runebase.io/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Runebase",
- "rpcport": 9432,
- "pubtype": 61,
- "p2shtype": 123,
- "wiftype": 216,
- "txfee": 5000000,
- "dust": 400000,
- "mature_confirmations": 120,
- "segwit": true,
- "bech32_hrp": "rc",
- "mm2": 1,
- "required_confirmations": 6,
- "avg_blocktime": 120,
- "protocol": {
- "type": "UTXO"
- },
- "electrum": [
- {
- "url": "electrum1.runebase.io:50001",
- "protocol": "TCP",
- "contact": [
- {
- "email": "support@runebase.io"
- },
- {
- "discord": "Bago#7842"
- }
- ]
- },
- {
- "url": "electrum3.runebase.io:50001",
- "protocol": "TCP",
- "contact": [
- {
- "email": "support@runebase.io"
- },
- {
- "discord": "Bago#7842"
- }
- ]
- },
- {
- "url": "electrum3.runebase.io:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "support@runebase.io"
- },
- {
- "discord": "Bago#7842"
- }
- ],
- "ws_url": "electrum3.runebase.io:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "ACTN": {
- "coin": "ACTN",
- "type": "Smart Chain",
- "name": "Action Coin",
- "coinpaprika_id": "actn-action-coin",
- "coingecko_id": "action-coin",
- "livecoinwatch_id": "ACTN",
- "explorer_url": "https://exp.actioncoin.com/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Komodo Signed Message:\n",
- "asset": "ACTN",
- "fname": "Action Coin",
- "rpcport": 51677,
- "txversion": 4,
- "overwintered": 1,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 2,
- "requires_notarization": false,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/141'",
- "trezor_coin": "Komodo",
- "electrum": [
- {
- "url": "electrumx1.actioncoin.com:10001",
- "contact": [
- {
- "email": "support@actioncoin.com"
- }
- ]
- },
- {
- "url": "electrumx2.actioncoin.com:10001",
- "contact": [
- {
- "email": "support@actioncoin.com"
- }
- ]
- },
- {
- "url": "electrumx1.actioncoin.com:30001",
- "ws_url": "electrumx1.actioncoin.com:20001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "support@actioncoin.com"
- }
- ]
- },
- {
- "url": "electrumx2.actioncoin.com:30001",
- "ws_url": "electrumx2.actioncoin.com:20001",
- "protocol": "SSL",
- "contact": [
- {
- "email": "support@actioncoin.com"
- }
- ]
- }
- ],
- "explorer_block_url": "block/"
- },
- "ACTN-BEP20": {
- "coin": "ACTN-BEP20",
- "type": "BEP-20",
- "name": "Action Coin",
- "coinpaprika_id": "actn-action-coin",
- "coingecko_id": "action-coin",
- "livecoinwatch_id": "ACTN",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Action Coin",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0xD7380b10bF3886B34Ab3422DEa42E408850375CA"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0xD7380b10bF3886B34Ab3422DEa42E408850375CA",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- },
- "ATOM": {
- "coin": "ATOM",
- "type": "TENDERMINT",
- "name": "Cosmos",
- "coinpaprika_id": "atom-cosmos",
- "coingecko_id": "cosmos",
- "livecoinwatch_id": "ATOM",
- "explorer_url": "https://www.mintscan.io/cosmos/",
- "explorer_tx_url": "txs/",
- "explorer_address_url": "account/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "avg_blocktime": 7,
- "fname": "Cosmos",
- "mm2": 1,
- "protocol": {
- "type": "TENDERMINT",
- "protocol_data": {
- "decimals": 6,
- "denom": "uatom",
- "account_prefix": "cosmos",
- "chain_id": "cosmoshub-4"
- }
- },
- "derivation_path": "m/44'/118'",
- "rpc_urls": [
- {
- "url": "https://cosmos.komodo.earth/"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ATOM"
- },
- "IRIS": {
- "coin": "IRIS",
- "type": "TENDERMINT",
- "name": "Iris",
- "coinpaprika_id": "iris-irisnet",
- "coingecko_id": "iris-network",
- "livecoinwatch_id": "IRIS",
- "explorer_url": "https://irishub.iobscan.io/",
- "explorer_tx_url": "#/txs/",
- "explorer_address_url": "#/address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "avg_blocktime": 7,
- "fname": "Iris",
- "mm2": 1,
- "protocol": {
- "type": "TENDERMINT",
- "protocol_data": {
- "decimals": 6,
- "denom": "uiris",
- "account_prefix": "iaa",
- "chain_id": "irishub-1",
- "gas_price": 0.5
- }
- },
- "derivation_path": "m/44'/566'",
- "rpc_urls": [
- {
- "url": "https://iris.komodo.earth/"
- },
- {
- "url": "https://rpc.irishub-1.irisnet.org"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "IRIS"
- },
- "OSMO": {
- "coin": "OSMO",
- "type": "TENDERMINT",
- "name": "Osmosis",
- "coinpaprika_id": "osmo-osmosis",
- "coingecko_id": "osmosis",
- "livecoinwatch_id": "OSMO",
- "explorer_url": "https://www.mintscan.io/osmosis/",
- "explorer_tx_url": "txs/",
- "explorer_address_url": "account/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": true,
- "avg_blocktime": 7,
- "fname": "Osmosis",
- "mm2": 1,
- "protocol": {
- "type": "TENDERMINT",
- "protocol_data": {
- "decimals": 6,
- "denom": "uosmo",
- "account_prefix": "osmo",
- "chain_id": "osmosis-1",
- "gas_price": 0.5
- }
- },
- "rpc_urls": [
- {
- "url": "https://rpc.osmosis.zone/"
- },
- {
- "url": "https://osmosis-mainnet-rpc.allthatnode.com:26657/"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "OSMO"
- },
- "ATOM-IBC_IRIS": {
- "coin": "ATOM-IBC_IRIS",
- "type": "TENDERMINTTOKEN",
- "name": "Cosmos IBC-IRIS",
- "coinpaprika_id": "atom-cosmos",
- "coingecko_id": "cosmos-hub",
- "livecoinwatch_id": "ATOM",
- "explorer_url": "https://irishub.iobscan.io/",
- "explorer_tx_url": "#/txs/",
- "explorer_address_url": "#/address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Cosmos IBC-IRIS",
- "avg_blocktime": 7,
- "mm2": 1,
- "protocol": {
- "type": "TENDERMINTTOKEN",
- "protocol_data": {
- "platform": "IRIS",
- "decimals": 6,
- "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
- "gas_price": 0.5
- }
- },
- "derivation_path": "m/44'/566'",
- "parent_coin": "IRIS",
- "rpc_urls": [
- {
- "url": "https://iris.komodo.earth/"
- },
- {
- "url": "https://rpc.irishub-1.irisnet.org"
- }
- ],
- "explorer_block_url": "block/",
- "binance_id": "ATOM"
- },
- "MAZA": {
- "coin": "MAZA",
- "type": "UTXO",
- "name": "MazaCoin",
- "coinpaprika_id": "maza-maza",
- "coingecko_id": "maza",
- "livecoinwatch_id": "MAZA",
- "explorer_url": "http://mazacha.in/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Mazacoin Signed Message:\n",
- "fname": "MazaCoin",
- "rpcport": 12832,
- "pubtype": 50,
- "p2shtype": 9,
- "wiftype": 244,
- "decimals": 8,
- "signature_version": "base",
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "maza",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 60,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/13'",
- "links": {
- "github": "https://github.com/Mazacoin",
- "homepage": "https://www.mazacoin.org"
- },
- "electrum": [
- {
- "url": "electrum.seed.mazanode.com:50001",
- "contact": [
- {
- "email": "brian@mazacoin.org"
- }
- ]
- },
- {
- "url": "electrumx.mazanode.com:50001",
- "contact": [
- {
- "email": "brian@mazacoin.org"
- }
- ]
- },
- {
- "url": "electrumx2.mazacha.in:50001",
- "contact": [
- {
- "email": "contact@mazacoin.org"
- },
- {
- "discord": "sherm77#5923"
- }
- ]
- },
- {
- "url": "electrum.seed.mazanode.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "brian@mazacoin.org"
- }
- ],
- "ws_url": "electrum.seed.mazanode.com:50005"
- },
- {
- "url": "electrumx.mazanode.com:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "brian@mazacoin.org"
- }
- ],
- "ws_url": "electrumx.mazanode.com:50005"
- },
- {
- "url": "electrumx2.mazacha.in:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "contact@mazacoin.org"
- },
- {
- "discord": "sherm77#5923"
- }
- ],
- "ws_url": "electrumx2.mazacha.in:50005"
- }
- ],
- "explorer_block_url": "block/"
- },
- "CRNC": {
- "coin": "CRNC",
- "type": "UTXO",
- "name": "CrionicCoin",
- "coinpaprika_id": "crnc-crionic",
- "coingecko_id": "crionic",
- "livecoinwatch_id": "CRNC",
- "explorer_url": "https://explorer.crionic.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Crioniccoin Signed Message:\n",
- "fname": "CrionicCoin",
- "rpcport": 4466,
- "pubtype": 28,
- "p2shtype": 45,
- "wiftype": 176,
- "decimals": 8,
- "signature_version": "base",
- "txfee": 10000,
- "segwit": true,
- "bech32_hrp": "crnc",
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 20,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/192'",
- "links": {
- "github": "https://github.com/diabaths/Crionic-Coin",
- "homepage": "https://coin.crionic.org"
- },
- "electrum": [
- {
- "url": "coin.crionic.org:50001",
- "contact": [
- {
- "email": "diabatiis@gmail.com"
- },
- {
- "discord": "Diabaths#1919"
- }
- ]
- },
- {
- "url": "explorer.crionic.org:50001",
- "contact": [
- {
- "email": "diabatiis@gmail.com"
- },
- {
- "discord": "Diabaths#1919"
- }
- ]
- },
- {
- "url": "coin.crionic.org:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "diabatiis@gmail.com"
- },
- {
- "discord": "Diabaths#1919"
- }
- ],
- "ws_url": "coin.crionic.org:50005"
- },
- {
- "url": "explorer.crionic.org:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "diabatiis@gmail.com"
- },
- {
- "discord": "Diabaths#1919"
- }
- ],
- "ws_url": "explorer.crionic.org:50005"
- }
- ],
- "explorer_block_url": "block/"
- },
- "EVR": {
- "coin": "EVR",
- "type": "UTXO",
- "name": "Evrmore Coin",
- "coinpaprika_id": "evr-evrmore",
- "coingecko_id": "",
- "livecoinwatch_id": "_EVR",
- "explorer_url": "https://evr.cryptoscope.io/",
- "explorer_tx_url": "tx/?txid=",
- "explorer_address_url": "address/?address=",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Evrmore Signed Message:\n",
- "fname": "Evrmore Coin",
- "rpcport": 8819,
- "pubtype": 33,
- "p2shtype": 92,
- "wiftype": 128,
- "segwit": true,
- "txfee": 1000000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 1,
- "protocol": {
- "type": "UTXO"
- },
- "derivation_path": "m/44'/175'",
- "links": {
- "github": "https://github.com/EvrmoreOrg/Evrmore",
- "homepage": "https://evrmorecoin.org"
- },
- "electrum": [
- {
- "url": "electrum1-mainnet.evrmorecoin.org:50001",
- "contact": [
- {
- "email": "hans_schm1dt@protonmail.com"
- },
- {
- "discord": "Hans_Schmidt#0745"
- }
- ]
- },
- {
- "url": "electrum2-mainnet.evrmorecoin.org:50001",
- "contact": [
- {
- "email": "hans_schm1dt@protonmail.com"
- },
- {
- "discord": "Hans_Schmidt#0745"
- }
- ]
- },
- {
- "url": "electrum1-mainnet.evrmorecoin.org:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "hans_schm1dt@protonmail.com"
- },
- {
- "discord": "Hans_Schmidt#0745"
- }
- ],
- "ws_url": "electrum1-mainnet.evrmorecoin.org:50004"
- },
- {
- "url": "electrum2-mainnet.evrmorecoin.org:50002",
- "protocol": "SSL",
- "contact": [
- {
- "email": "hans_schm1dt@protonmail.com"
- },
- {
- "discord": "Hans_Schmidt#0745"
- }
- ],
- "ws_url": "electrum2-mainnet.evrmorecoin.org:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "KIIRO": {
- "coin": "KIIRO",
- "type": "UTXO",
- "name": "Kiiro",
- "coinpaprika_id": "kiiro-kiirocoin",
- "coingecko_id": "kiirocoin",
- "livecoinwatch_id": "KIIRO",
- "explorer_url": "https://explorer.kiirocoin.org/",
- "explorer_tx_url": "",
- "explorer_address_url": "",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "sign_message_prefix": "Zcoin Signed Message:\n",
- "fname": "Kiiro",
- "rpcport": 8999,
- "pubtype": 45,
- "p2shtype": 7,
- "wiftype": 210,
- "txfee": 1000,
- "mm2": 1,
- "required_confirmations": 3,
- "avg_blocktime": 150,
- "protocol": {
- "type": "UTXO"
- },
- "links": {
- "github": "https://github.com/kiirocoin/kiiro",
- "homepage": "https://kiirocoin.org"
- },
- "electrum": [
- {
- "url": "electrum1.kiirocoin.org:50002",
- "protocol": "SSL",
- "contact": [
- {
- "github": "https://github.com/kiirocoin/electrum-kiiro/issues"
- }
- ],
- "ws_url": "electrum1.kiirocoin.org:50004"
- },
- {
- "url": "electrum3.kiirocoin.org:50002",
- "protocol": "SSL",
- "contact": [
- {
- "github": "https://github.com/kiirocoin/electrum-kiiro/issues"
- }
- ],
- "ws_url": "electrum3.kiirocoin.org:50004"
- }
- ],
- "explorer_block_url": "block/"
- },
- "KIIRO-BEP20": {
- "coin": "KIIRO-BEP20",
- "type": "BEP-20",
- "name": "Kiiro",
- "coinpaprika_id": "kiiro-kiirocoin",
- "coingecko_id": "kiirocoin",
- "livecoinwatch_id": "KIIRO",
- "explorer_url": "https://bscscan.com/",
- "explorer_tx_url": "tx/",
- "explorer_address_url": "address/",
- "supported": [],
- "active": false,
- "is_testnet": false,
- "currently_enabled": false,
- "wallet_only": false,
- "fname": "Kiiro",
- "rpcport": 80,
- "mm2": 1,
- "chain_id": 56,
- "avg_blocktime": 3,
- "required_confirmations": 3,
- "protocol": {
- "type": "ERC20",
- "protocol_data": {
- "platform": "BNB",
- "contract_address": "0x347862372f7C8f83D69025234367Ac11c5241Db3"
- }
- },
- "derivation_path": "m/44'/714'",
- "contract_address": "0x347862372f7C8f83D69025234367Ac11c5241Db3",
- "parent_coin": "BNB",
- "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31",
- "nodes": [
- {
- "url": "https://node.komodo.earth:8080/binance",
- "gui_auth": true
- },
- {
- "url": "https://bsc1.cipig.net:18655"
- },
- {
- "url": "https://bsc2.cipig.net:18655"
- },
- {
- "url": "https://bsc3.cipig.net:18655"
- }
- ],
- "token_address_url": "tokentxns?a=",
- "explorer_block_url": "block/"
- }
-}
\ No newline at end of file
diff --git a/coins_ci.json b/coins_ci.json
deleted file mode 100644
index e91aea8ad..000000000
--- a/coins_ci.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "coins_repo_commit": "26641cc1fef362063aa4e394dba8b82e7ebaf2cf"
-}
\ No newline at end of file
diff --git a/fetch_coin_assets.py b/fetch_coin_assets.py
new file mode 100755
index 000000000..aaa012097
--- /dev/null
+++ b/fetch_coin_assets.py
@@ -0,0 +1,276 @@
+#!/usr/bin/env python3
+import urllib.request
+import json
+import os
+import shutil
+import concurrent.futures
+import argparse
+from dataclasses import dataclass
+
+# Constants
+COINS_CI_PATH = "assets/coins_ci.json"
+ICON_DOWNLOAD_TIMEOUT_SECONDS = 10
+CONCURRENCY_LIMIT = 4
+
+
+
+
+def main() -> None:
+ """Entry point for the script."""
+ parser = init_argparse()
+ args = parser.parse_args()
+
+ coins_data = load_coins_config(force_update=args.force, check_commit_hash=True)
+
+ # Default to cleaning existing files and redownloading the latest versions
+ # Could check the sha hash of existing files and skip the download if they match
+ files_to_clean = coins_data.mapped_files.keys()
+ folders_to_clean = coins_data.mapped_folders.keys()
+ clean_assets(files=files_to_clean, folders=folders_to_clean) # type: ignore
+
+ download_mapped_files(
+ coins_data.coins_repo_url,
+ coins_data.bundled_coins_repo_commit,
+ coins_data.mapped_files,
+ )
+
+ create_folders(coins_data.mapped_folders.keys()) # type: ignore
+ download_mapped_folders(
+ coins_data.coins_repo_url,
+ coins_data.bundled_coins_repo_commit,
+ coins_data.mapped_folders,
+ )
+
+
+def create_folders(folders: list[str]) -> None:
+ """Create a folder if it does not exist
+
+ Args:
+ folder (str): path to the folder
+
+ Raises:
+ OSError: if the folder could not be created
+ """
+ for folder in folders:
+ if not os.path.exists(folder):
+ os.makedirs(folder, exist_ok=True)
+
+
+def get_latest_commit_hash(repo_url: str, branch: str = "master") -> str:
+ """Get the latest commit hash for a repo
+
+ Args:
+ repo_url (str): The GitHub API URL for the repo
+ branch (str, optional): The github branch name or commit hash to be used as ref. Defaults to "master".
+
+ Returns:
+ str: The latest commit hash
+ """
+ api_url = f"{repo_url}/commits/{branch}"
+ with urllib.request.urlopen(api_url) as response:
+ data = json.loads(response.read())
+ return data["sha"]
+
+
+def download_mapped_files(
+ repo_url: str,
+ repo_commit: str,
+ mapped_files: dict[str, str],
+) -> None:
+ """Download the coins.json and coins_config.json files from the coins repo
+
+ Args:
+ repo_url (str): GitHub API URL for the coins repo
+ repo_commit (str): The commit hash to be used as ref
+ mapped_files (dict[str, str]): A dictionary of local file paths to remote file paths
+ """
+
+ headers = {"Accept": "application/vnd.github.v3+json"}
+ for local_path, remote_path in mapped_files.items():
+ file_json_url = f"{repo_url}/contents/{remote_path}?ref={repo_commit}"
+ file_req = urllib.request.Request(file_json_url, headers=headers)
+
+ with urllib.request.urlopen(file_req) as response:
+ print(f"Downloading {local_path}")
+ response = response.read().decode("utf-8")
+ response_json = json.loads(response)
+ if "download_url" not in response_json:
+ print(f"Failed to download {local_path}")
+ exit(1)
+
+ with urllib.request.urlopen(
+ response_json["download_url"]
+ ) as download_response:
+ data = download_response.read().decode("utf-8")
+ with open(local_path, "w") as f:
+ f.write(data)
+
+
+def download_mapped_folders(
+ repo_url: str,
+ repo_commit: str,
+ mapped_folders: dict[str, str],
+ max_concurrency: int = CONCURRENCY_LIMIT,
+ timeout: int = ICON_DOWNLOAD_TIMEOUT_SECONDS,
+) -> None:
+ """Download all files in the mapped folders from the remote repository
+ to the local directory specified in the mapped_folders dictionary.
+
+ Args:
+ repo_url (str): GitHub API URL for the coins repo
+ repo_commit (str): The commit hash to be used as ref
+ mapped_folders (dict[str, str]): A dictionary of local folder paths to remote folder paths
+ max_concurrency (int, optional): Maximum number of concurrent processes to spawn. Defaults to CONCURRENCY_LIMIT.
+ timeout (int, optional): Maximum timeout in seconds per download task. Defaults to ICON_DOWNLOAD_TIMEOUT_SECONDS.
+ """
+
+ for local_path, repo_path in mapped_folders.items():
+ api_url = f"{repo_url}/contents/{repo_path}?ref={repo_commit}"
+ headers = {"Accept": "application/vnd.github.v3+json"}
+ req = urllib.request.Request(api_url, headers=headers)
+ with urllib.request.urlopen(req) as response:
+ coins = []
+ data = json.loads(response.read())
+ for item in data:
+ if item["type"] == "file":
+ coins.append(item)
+
+ with concurrent.futures.ThreadPoolExecutor(
+ max_workers=max_concurrency
+ ) as executor:
+ futures = {
+ executor.submit(
+ download_file,
+ coin,
+ local_path,
+ )
+ for coin in coins
+ }
+ for future in concurrent.futures.as_completed(futures):
+ # Exceptions that occur in the threads are allowed to propagate
+ # to the main thread, so that the program can exit with a non-zero
+ # exit code. This is useful for CI/CD pipelines.
+ future.result(timeout=timeout)
+
+
+def download_file(item: dict[str, str], local_dir: str) -> None:
+ """Download a single coin icon from the coins repo
+
+ Args:
+ item (dict[str, str]): GitHub API response for a single file in the coins repo
+ local_dir (str): local directory to save the icon
+
+ Raises:
+ Exception: Any exception that occurs during the download
+ """
+ file_url = item["download_url"]
+ file_name = item["name"]
+ coin_name = os.path.splitext(file_name)[0]
+ output_path = os.path.join(local_dir, file_name)
+ try:
+ print(f"Downloading icon for {coin_name} to {output_path}")
+ file_response: bytes = urllib.request.urlopen(file_url).read()
+ with open(output_path, "wb") as f:
+ f.write(file_response)
+ except Exception as e:
+ print(f"Failed to download icon for {coin_name}: {e}")
+ raise e
+
+
+def init_argparse() -> argparse.ArgumentParser:
+ """Initialize argparse
+
+ Returns:
+ argparse.ArgumentParser: parser
+ """
+ parser = argparse.ArgumentParser(
+ usage="%(prog)s [OPTION]...",
+ description="Download the latest coin configs and icons.",
+ )
+ parser.add_argument(
+ "-f",
+ "--force",
+ action="store_true",
+ help=(
+ "Force download the latest coin configs and icons. "
+ + " NOTE: This will delete the existing files."
+ ),
+ )
+ return parser
+
+
+def clean_assets(files: list[str], folders: list[str]) -> None:
+ """
+ Removes the specified files and folders
+
+ Args:
+ files (list[str]): list of files to remove
+ folders (list[str]): list of folders to remove
+ """
+ for file in files:
+ print(f"Cleaning file: {file}")
+ if os.path.exists(file):
+ os.remove(file)
+
+ for directory in folders:
+ print(f"Cleaning directory: {directory}")
+ if os.path.exists(directory):
+ shutil.rmtree(directory)
+
+
+@dataclass
+class CoinCIConfig:
+ bundled_coins_repo_commit: str
+ coins_repo_url: str
+ coins_repo_branch: str
+ runtime_updates_enabled: bool
+ mapped_files: dict[str, str]
+ mapped_folders: dict[str, str]
+
+ @staticmethod
+ def load(path: str = COINS_CI_PATH):
+ print(f"Loading coins ci config from {path}")
+ with open(path, "r") as f:
+ data = json.load(f)
+ return CoinCIConfig(**data) # type: ignore
+
+ def save(self, path: str = COINS_CI_PATH):
+ print(f"Saving coins ci config to {path}")
+ with open(path, "w") as f:
+ json.dump(self.__dict__, f, indent=2)
+
+
+def load_coins_config(
+ force_update: bool = False, check_commit_hash: bool = True
+) -> CoinCIConfig:
+ """
+ Load the coins ci config from disk
+
+ Args:
+ force_update (bool, optional): Force update the coins config. Defaults to False.
+ check_commit_hash (bool, optional): Check if the latest commit hash has changed. Defaults to True.
+
+ Returns:
+ CoinCIConfig: The coins ci config
+ """
+ coins_data = CoinCIConfig.load()
+
+ if check_commit_hash:
+ current_commit_hash = coins_data.bundled_coins_repo_commit
+ latest_commit_hash = get_latest_commit_hash(
+ coins_data.coins_repo_url, coins_data.coins_repo_branch
+ )
+ coins_data.bundled_coins_repo_commit = latest_commit_hash
+ coins_data.save()
+ if not force_update and current_commit_hash != latest_commit_hash:
+ print("New coins repo commit found and build_config.json has been updated.")
+ print("Please run the script again or use the -f/--force flag to update.")
+ print(f"Current commit: {current_commit_hash}")
+ print(f"Latest commit: {latest_commit_hash}")
+ exit(1)
+
+ return coins_data
+
+
+if __name__ == "__main__":
+ main()
diff --git a/fetch_coins.ps1 b/fetch_coins.ps1
deleted file mode 100644
index aa30463b7..000000000
--- a/fetch_coins.ps1
+++ /dev/null
@@ -1,28 +0,0 @@
-$config_init_mm2 = "assets\coins.json"
-
-# back compatibility
-if ( ( Test-Path -Path $config_init_mm2 -PathType Leaf ) -and -not ( Test-Path -Path "coins_ci.json" -PathType Leaf ) ) {
- exit
- }
-
-# get coins file
-$coins_repo_commit = $( jq.exe -r '.coins_repo_commit' .\coins_ci.json)
-curl.exe -l "https://raw.githubusercontent.com/KomodoPlatform/coins/${coins_repo_commit}/coins" --output $config_init_mm2
-
-# clean checks from previous run
-rm .\app_assets
-rm .\coins_assets
-
-# get assets lists
-jq.exe -r 'keys | .[]' "assets/coins_config.json" > app_assets
-jq.exe -r '.[].coin' $config_init_mm2 > coins_assets
-
-# check if all assets from coins_config are present in coins.json
-foreach( $line in Get-Content ".\app_assets" ) {
- if ( ( Get-Content ".\coins_assets" ).contains( $line ) ) {
- echo "$line check passed"
- }
- else {
- throw "Asset $line not found in coins file"
- }
- }
diff --git a/fetch_coins.sh b/fetch_coins.sh
deleted file mode 100755
index 0061015f3..000000000
--- a/fetch_coins.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-set -e
-set -x
-
-# back compatibility
-if [[ -f "assets/coins.json" && ! -f "coins_ci.json" ]]; then
- exit 0
-fi
-
-# get coins file
-coins_repo_commit="$( jq -r '.coins_repo_commit' coins_ci.json )"
-curl -l "https://raw.githubusercontent.com/KomodoPlatform/coins/${coins_repo_commit}/coins" --output "assets/coins.json"
-
-# get assets lists
-jq -r 'keys | .[]' assets/coins_config.json > app_assets
-jq -r '.[].coin' assets/coins.json > coins_assets
-
-# check if all assets from 0.5.6-coins are present in coins.json
-set +x
-while IFS= read -r line; do
- if [[ "${line}" =~ $(echo ^\($(paste -sd'|' coins_assets)\)$) ]]; then
- echo "${line} check passed"
- else
- echo "${line} not found"
- exit 2
- fi
-done < app_assets
diff --git a/integration_test/helpers/accept_eula.dart b/integration_test/helpers/accept_eula.dart
index dd5e1b2cd..a3dd40ad5 100644
--- a/integration_test/helpers/accept_eula.dart
+++ b/integration_test/helpers/accept_eula.dart
@@ -5,7 +5,6 @@ import 'package:komodo_dex/widgets/primary_button.dart';
Future acceptEULA(WidgetTester tester) async {
final Finder eulaCheckBox = find.byKey(const Key('checkbox-eula'));
final Finder tocCheckBox = find.byKey(const Key('checkbox-toc'));
- final Finder scrollButton = find.byKey(const Key('disclaimer-scroll-button'));
final Finder disclaimerNextButton = find.byKey(const Key('next-disclaimer'));
expect(
@@ -16,14 +15,6 @@ Future acceptEULA(WidgetTester tester) async {
await tester.tap(eulaCheckBox);
await tester.tap(tocCheckBox);
await tester.pump(Duration(seconds: 1));
- expect(
- tester.widget(disclaimerNextButton).onPressed == null,
- true,
- reason: 'Disclaimer page is not scrolled to the end,'
- ' but \'Next\' button is enabled.',
- );
- await tester.longPress(scrollButton);
- await tester.pump(Duration(seconds: 1));
await tester.tap(disclaimerNextButton);
await tester.pump(Duration(seconds: 1));
}
diff --git a/integration_test/tests/wallet_tests.dart b/integration_test/tests/wallet_tests.dart
index a7107b119..d1450b849 100644
--- a/integration_test/tests/wallet_tests.dart
+++ b/integration_test/tests/wallet_tests.dart
@@ -3,6 +3,7 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'address/add_address_test.dart';
+import 'wallet_tests/coin_icons.dart';
import 'wallet_tests/create_wallet.dart';
import 'wallet_tests/logout_wallet.dart';
import 'wallet_tests/restore_old_wallet.dart';
@@ -21,6 +22,7 @@ void main() {
await tester.pumpAndSettle();
print('CREATE WALLET TO TEST');
await createWalletToTest(tester, walletName: firstWalletName);
+ await tester.pumpAndSettle();
print('LOGOUT WALLET TO WALLETS LIST');
await logOut(tester);
await tester.pumpAndSettle();
@@ -32,6 +34,10 @@ void main() {
await tester.pumpAndSettle();
print('RESTORE WALLET FROM WALLETS LIST');
await restoreOldWallet(tester);
+ await tester.pumpAndSettle();
+ print('TEST COINS ICONS');
+ await testCoinIcons(tester);
+ await tester.pumpAndSettle();
print('TEST COINS ACTIVATION');
await testActivateCoins(tester);
await tester.pumpAndSettle();
diff --git a/integration_test/tests/wallet_tests/coin_icons.dart b/integration_test/tests/wallet_tests/coin_icons.dart
new file mode 100644
index 000000000..ee9dc1308
--- /dev/null
+++ b/integration_test/tests/wallet_tests/coin_icons.dart
@@ -0,0 +1,89 @@
+// ignore_for_file: avoid_print
+
+import 'package:flutter/foundation.dart';
+import 'package:flutter/services.dart';
+import 'package:komodo_dex/main.dart' as app;
+import 'package:flutter/material.dart';
+import 'package:flutter_test/flutter_test.dart';
+import 'package:integration_test/integration_test.dart';
+import 'package:komodo_dex/screens/portfolio/activate/build_item_coin.dart';
+import 'package:komodo_dex/utils/utils.dart';
+
+import 'create_wallet.dart';
+
+Future testCoinIcons(WidgetTester tester) async {
+ final Finder portfolioTab = find.byKey(const Key('main-nav-portfolio'));
+ final Finder addAssetsButton = find.byKey(const Key('add-coin-button'));
+ final Finder selectCoinList = find.byKey(const Key('list-select-coins'));
+ final Finder firstCoinItem = find
+ .descendant(of: selectCoinList, matching: find.byType(BuildItemCoin))
+ .first;
+
+ await tester.tap(portfolioTab);
+ await tester.pumpAndSettle();
+ await tester.tap(addAssetsButton);
+ await tester.pumpAndSettle(Duration(seconds: 2));
+ await tester.ensureVisible(firstCoinItem);
+
+ final listSize = tester.getSize(selectCoinList);
+ final scrollOffset = -listSize.height * 0.8;
+ List previousItems = [];
+ bool keepScrolling = true;
+ while (keepScrolling) {
+ final visibleListItems = find
+ .byType(BuildItemCoin)
+ .evaluate()
+ .map((e) => e.widget as BuildItemCoin)
+ .toList();
+
+ // Iterate over the visible coins rather than the list widget because
+ // the ListView controller is null, making it difficult to check
+ // if the list is at the bottom
+ for (var coinIcon in visibleListItems) {
+ final assetPath = getCoinIconPath(coinIcon.coin.abbr);
+ bool exists = await assetExists(assetPath);
+ expect(exists, true, reason: 'Asset $assetPath does not exist');
+ }
+
+ // Use a drag gesture rather than scrollUntilVisible because the
+ // end of the list is not static or known at this point
+ await tester.drag(selectCoinList, Offset(0, scrollOffset));
+ await tester.pumpAndSettle();
+
+ // Compare the lists to determin when to stop scrolling
+ if (listEquals(previousItems, visibleListItems)) {
+ keepScrolling = false;
+ }
+
+ previousItems = visibleListItems;
+ }
+}
+
+Future assetExists(String assetPath) async {
+ bool assetExists = true;
+ try {
+ final _ = await rootBundle.load(assetPath);
+ } catch (e) {
+ print('Asset $assetPath does not exist');
+ assetExists = false;
+ }
+ return assetExists;
+}
+
+void main() {
+ IntegrationTestWidgetsFlutterBinding.ensureInitialized();
+
+ const String firstWalletName = 'my-wallet';
+
+ testWidgets('Run wallet tests:', (WidgetTester tester) async {
+ tester.testTextInput.register();
+ app.main();
+ await tester.pumpAndSettle();
+ print('CREATE WALLET TO TEST');
+ await createWalletToTest(tester, walletName: firstWalletName);
+ await tester.pumpAndSettle();
+ print('TEST COINS ICONS');
+ await testCoinIcons(tester);
+ await tester.pumpAndSettle();
+ }, semanticsEnabled: false);
+}
diff --git a/integration_test/tests/wallet_tests/create_wallet.dart b/integration_test/tests/wallet_tests/create_wallet.dart
index 9098d8586..1e3bee42c 100644
--- a/integration_test/tests/wallet_tests/create_wallet.dart
+++ b/integration_test/tests/wallet_tests/create_wallet.dart
@@ -21,6 +21,7 @@ Future createWalletToTest(WidgetTester tester,
try {
// =========== authenticate_page.dart =============== //
+ await tester.pumpAndSettle();
await tester.ensureVisible(createWalletButton);
await tester.tap(createWalletButton);
await tester.pumpAndSettle();
diff --git a/lib/app_config/coins_updater.dart b/lib/app_config/coins_updater.dart
index 7b2f4bccc..89aa5ef56 100644
--- a/lib/app_config/coins_updater.dart
+++ b/lib/app_config/coins_updater.dart
@@ -4,6 +4,7 @@ import 'dart:io';
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'package:http/http.dart' as http;
+import 'package:komodo_dex/model/coin_ci.dart';
import 'package:komodo_dex/utils/log.dart';
import 'package:komodo_dex/utils/utils.dart';
@@ -33,38 +34,24 @@ class CoinUpdater {
/// The branch of the coins repository to use.
//! QA: change branch name here and then restart twice after logging in.
- static const coinsRepoBranch = 'master';
-
- static const coinsRepoUrl =
- 'https://raw.githubusercontent.com/KomodoPlatform/coins';
-
- static const isUpdateEnabled = true;
-
+ final String localAssetPathCIConfig = 'assets/coins_ci.json';
final String localAssetPathConfig = 'assets/coins_config.json';
final String localAssetPathCoins = 'assets/coins.json';
- String get remotePathConfig =>
- '$coinsRepoUrl/$coinsRepoBranch/utils/coins_config.json';
- String get remotePathCoins => '$coinsRepoUrl/$coinsRepoBranch/coins';
-
String _cachedConfig;
String _cachedCoins;
+ CoinsCI _coinsCI;
Future _fetchAsset(String path) =>
rootBundle.loadString(path, cache: false);
- Future _getLocalFile(String filename) async {
- final directory = await applicationDocumentsDirectory;
- return File('${directory.path}/config_updates/$filename');
- }
-
Future _fetchCoinFileOrAsset(UpdateCacheParams params) async {
File cacheFile;
String property;
try {
try {
- cacheFile = await _getLocalFile(params.cacheFileName);
+ cacheFile = await getLocalFile(params.cacheFileName);
final maybeCacheValue = await compute(
_tryReadValidJsonFile,
@@ -86,27 +73,25 @@ class CoinUpdater {
Log('CoinUpdater', 'Error fetching or caching ${params.cacheKey}: $e');
rethrow;
} finally {
- if (isUpdateEnabled) {
- _startUpdateCacheInBackground(params.remoteUrl, cacheFile);
+ if (_coinsCI?.runtimeUpdatesEnabled ?? true) {
+ _startUpdateCacheInBackground(
+ params.copyWith(localPath: cacheFile?.path));
}
}
}
- void _startUpdateCacheInBackground(String remoteUrl, File cacheFile) async {
+ void _startUpdateCacheInBackground(UpdateCacheParams params) async {
try {
Log('CoinUpdater', 'Updating coins in background...');
- await compute