diff --git a/.devcontainer/android-dev.dockerfile b/.devcontainer/android-dev.dockerfile new file mode 100644 index 000000000..d76fde854 --- /dev/null +++ b/.devcontainer/android-dev.dockerfile @@ -0,0 +1,170 @@ +FROM docker.io/ubuntu:22.04 + +ARG KDF_BRANCH=main +ENV KDF_DIR=/kdf + +# Libz is distributed in the android ndk, but for some unknown reason it is not +# found in the build process of some crates, so we explicit set the DEP_Z_ROOT +ENV CARGO_TARGET_X86_64_LINUX_ANDROID_LINKER=x86_64-linux-android-clang \ + CARGO_TARGET_X86_64_LINUX_ANDROID_RUNNER="qemu-x86_64 -cpu qemu64,+mmx,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt" \ + CC_x86_64_linux_android=x86_64-linux-android-clang \ + CXX_x86_64_linux_android=x86_64-linux-android-clang++ \ + CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER=armv7a-linux-androideabi21-clang \ + CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_RUNNER=qemu-arm \ + CC_armv7_linux_androideabi=armv7a-linux-androideabi21-clang \ + CXX_armv7_linux_androideabi=armv7a-linux-androideabi21-clang++ \ + CC_aarch64_linux_android=aarch64-linux-android21-clang \ + CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android21-clang \ + CC_armv7_linux_androideabi=armv7a-linux-androideabi21-clang \ + CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER=armv7a-linux-androideabi21-clang \ + DEP_Z_INCLUDE=/android-ndk/sysroot/usr/include/ \ + OPENSSL_STATIC=1 \ + OPENSSL_DIR=/openssl \ + OPENSSL_INCLUDE_DIR=/openssl/include \ + OPENSSL_LIB_DIR=/openssl/lib \ + RUST_TEST_THREADS=1 \ + HOME=/home/komodo/ \ + TMPDIR=/tmp/ \ + ANDROID_DATA=/ \ + ANDROID_DNS_MODE=local \ + ANDROID_ROOT=/system + +ENV FLUTTER_VERSION="2.8.1" +ENV FLUTTER_HOME "/home/komodo/.flutter-sdk" +ENV USER="komodo" +ENV USER_ID=1000 +ENV PATH $PATH:$FLUTTER_HOME/bin +ENV AR=/usr/bin/llvm-ar-16 +ENV CC=/usr/bin/clang-16 +ENV PATH="$HOME/.cargo/bin:$PATH" +ENV PATH=$PATH:/android-ndk/bin +ENV ANDROID_HOME=/opt/android-sdk-linux \ + LANG=en_US.UTF-8 \ + LC_ALL=en_US.UTF-8 \ + LANGUAGE=en_US:en + +ENV ANDROID_SDK_ROOT=$ANDROID_HOME \ + PATH=${PATH}:${ANDROID_HOME}/cmdline-tools/latest/bin:${ANDROID_HOME}/platform-tools:${ANDROID_HOME}/emulator + +# comes from https://developer.android.com/studio/#command-tools +ENV ANDROID_SDK_TOOLS_VERSION=11076708 + +# https://developer.android.com/studio/releases/build-tools +ENV ANDROID_PLATFORM_VERSION=34 +ENV ANDROID_BUILD_TOOLS_VERSION=34.0.0 + +# https://developer.android.com/ndk/downloads +ENV ANDROID_NDK_VERSION=26.3.11579264 + +RUN apt update && apt install -y sudo && \ + useradd -u $USER_ID -m $USER && \ + usermod -aG sudo $USER && \ + echo "$USER ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers + +USER $USER + +RUN sudo apt-get update -y && \ + sudo apt-get install -y --no-install-recommends \ + ca-certificates \ + build-essential \ + libssl-dev \ + cmake \ + llvm-dev \ + libclang-dev \ + lld \ + gcc \ + libc6-dev \ + jq \ + make \ + pkg-config \ + git \ + automake \ + libtool \ + m4 \ + autoconf \ + make \ + file \ + curl \ + wget \ + gnupg \ + software-properties-common \ + lsb-release \ + libudev-dev \ + zip unzip \ + binutils && \ + sudo apt-get clean + +RUN sudo ln -s /usr/bin/python3 /bin/python &&\ + sudo curl --output llvm.sh https://apt.llvm.org/llvm.sh && \ + sudo chmod +x llvm.sh && \ + sudo ./llvm.sh 16 && \ + sudo rm ./llvm.sh && \ + sudo ln -s /usr/bin/clang-16 /usr/bin/clang && \ + PROTOC_ZIP=protoc-25.3-linux-x86_64.zip && \ + sudo curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.3/$PROTOC_ZIP && \ + sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc && \ + sudo unzip -o $PROTOC_ZIP -d /usr/local 'include/*' && \ + sudo rm -f $PROTOC_ZIP && \ + sudo mkdir $KDF_DIR && \ + sudo chown -R $USER:$USER $KDF_DIR + +RUN PATH="$HOME/.cargo/bin:$PATH" && \ + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ + export PATH="$HOME/.cargo/bin:$PATH" && \ + sudo chown -R $USER:$USER $HOME/.cargo && \ + rustup toolchain install nightly-2023-06-01 --no-self-update --profile=minimal && \ + rustup default nightly-2023-06-01 && \ + rustup target add aarch64-linux-android && \ + rustup target add armv7-linux-androideabi && \ + sudo apt install -y python3 python3-pip git curl nodejs python3-venv sudo && \ + git clone https://github.com/KomodoPlatform/komodo-defi-framework.git $KDF_DIR && \ + cd $KDF_DIR && \ + git fetch --all && \ + git checkout origin/$KDF_BRANCH && \ + if [ "$(uname -m)" = "x86_64" ]; then \ + bash ./scripts/ci/android-ndk.sh x86 23; \ + elif [ "$(uname -m)" = "aarch64" ]; then \ + bash ./scripts/ci/android-ndk.sh arm64 23; \ + else \ + echo "Unsupported architecture"; \ + exit 1; \ + fi + +RUN set -e -o xtrace \ + && cd /opt \ + && sudo chown -R $USER:$USER /opt \ + && sudo apt-get update \ + && sudo apt-get install -y jq \ + openjdk-17-jdk \ + wget zip unzip git openssh-client curl bc software-properties-common build-essential \ + ruby-full ruby-bundler libstdc++6 libpulse0 libglu1-mesa locales lcov \ + libsqlite3-dev --no-install-recommends \ + # for x86 emulators + libxtst6 libnss3-dev libnspr4 libxss1 libatk-bridge2.0-0 libgtk-3-0 libgdk-pixbuf2.0-0 \ + && sudo rm -rf /var/lib/apt/lists/* \ + && sudo sh -c 'echo "en_US.UTF-8 UTF-8" > /etc/locale.gen' \ + && sudo locale-gen \ + && sudo update-locale LANG=en_US.UTF-8 \ + && wget -q https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS_VERSION}_latest.zip -O android-sdk-tools.zip \ + && mkdir -p ${ANDROID_HOME}/cmdline-tools/ \ + && unzip -q android-sdk-tools.zip -d ${ANDROID_HOME}/cmdline-tools/ \ + && mv ${ANDROID_HOME}/cmdline-tools/cmdline-tools ${ANDROID_HOME}/cmdline-tools/latest \ + && sudo chown -R $USER:$USER $ANDROID_HOME \ + && rm android-sdk-tools.zip \ + && yes | sdkmanager --licenses \ + && sdkmanager platform-tools \ + && git config --global user.email "hello@komodoplatform.com" \ + && git config --global user.name "Komodo Platform" \ + && yes | sdkmanager \ + "platforms;android-$ANDROID_PLATFORM_VERSION" \ + "build-tools;$ANDROID_BUILD_TOOLS_VERSION" + +RUN git clone https://github.com/flutter/flutter.git ${FLUTTER_HOME} \ + && cd ${FLUTTER_HOME} \ + && git fetch \ + && git checkout tags/${FLUTTER_VERSION} \ + && flutter config --no-analytics \ + && flutter precache \ + && yes "y" | flutter doctor --android-licenses \ + && flutter doctor \ + && flutter update-packages diff --git a/.devcontainer/dev-setup.sh b/.devcontainer/dev-setup.sh new file mode 100755 index 000000000..cbecf77d6 --- /dev/null +++ b/.devcontainer/dev-setup.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +set -e + +sudo git config core.fileMode false +sudo chmod -R u+rwx /home/komodo/workspace +sudo chown -R komodo:komodo /home/komodo/workspace +flutter pub get + +curl -o assets/coins.json https://raw.githubusercontent.com/KomodoPlatform/coins/master/coins +curl -o assets/coins_config_tcp.json https://raw.githubusercontent.com/KomodoPlatform/coins/master/utils/coins_config_tcp.json +mkdir -p android/app/src/main/cpp/libs/armeabi-v7a +mkdir -p android/app/src/main/cpp/libs/arm64-v8a + +cd /kdf +export PATH="$HOME/.cargo/bin:$PATH" +export PATH=$PATH:/android-ndk/bin +CC_aarch64_linux_android=aarch64-linux-android21-clang CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android21-clang cargo rustc --target=aarch64-linux-android --lib --release --crate-type=staticlib --package mm2_bin_lib +CC_armv7_linux_androideabi=armv7a-linux-androideabi21-clang CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER=armv7a-linux-androideabi21-clang cargo rustc --target=armv7-linux-androideabi --lib --release --crate-type=staticlib --package mm2_bin_lib +mv target/aarch64-linux-android/release/libkdflib.a target/aarch64-linux-android/release/libmm2.a +mv target/armv7-linux-androideabi/release/libkdflib.a target/armv7-linux-androideabi/release/libmm2.a + +mv /kdf/target/aarch64-linux-android/release/libmm2.a /home/komodo/workspace/android/app/src/main/cpp/libs/arm64-v8a/libmm2.a +mv /kdf/target/armv7-linux-androideabi/release/libmm2.a /home/komodo/workspace/android/app/src/main/cpp/libs/armeabi-v7a/libmm2.a \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..eafac249d --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "flutter_docker", + "context": "..", + "dockerFile": "android-dev.dockerfile", + "remoteUser": "komodo", + "postAttachCommand": "sh .devcontainer/dev-setup.sh", + "runArgs": [ + "--privileged" + ], + "workspaceMount": "source=${localWorkspaceFolder},target=/home/komodo/workspace,type=bind,consistency=delegated", + "workspaceFolder": "/home/komodo/workspace", + "hostRequirements": { + "cpus": 4, + "memory": "16gb", + "storage": "32gb" + } +} \ No newline at end of file diff --git a/.docker/android-apk-build.dockerfile b/.docker/android-apk-build.dockerfile new file mode 100644 index 000000000..a7daf6022 --- /dev/null +++ b/.docker/android-apk-build.dockerfile @@ -0,0 +1,46 @@ +FROM komodo/kdf-android:latest AS build + +RUN cd /app && \ + rustup default nightly-2023-06-01 && \ + rustup target add aarch64-linux-android && \ + rustup target add armv7-linux-androideabi && \ + export PATH=$PATH:/android-ndk/bin && \ + CC_aarch64_linux_android=aarch64-linux-android21-clang CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android21-clang cargo rustc --target=aarch64-linux-android --lib --release --crate-type=staticlib --package mm2_bin_lib && \ + CC_armv7_linux_androideabi=armv7a-linux-androideabi21-clang CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER=armv7a-linux-androideabi21-clang cargo rustc --target=armv7-linux-androideabi --lib --release --crate-type=staticlib --package mm2_bin_lib && \ + mv target/aarch64-linux-android/release/libkdflib.a target/aarch64-linux-android/release/libmm2.a && \ + mv target/armv7-linux-androideabi/release/libkdflib.a target/armv7-linux-androideabi/release/libmm2.a + +FROM komodo/android-sdk:34 AS final + +ENV FLUTTER_VERSION="2.8.1" +ENV FLUTTER_HOME="/home/komodo/.flutter-sdk" +ENV USER="komodo" +ENV PATH=$PATH:$FLUTTER_HOME/bin +ENV ANDROID_AARCH64_LIB=android/app/src/main/cpp/libs/arm64-v8a +ENV ANDROID_AARCH64_LIB_SRC=/app/target/aarch64-linux-android/release/libmm2.a +ENV ANDROID_ARMV7_LIB=android/app/src/main/cpp/libs/armeabi-v7a +ENV ANDROID_ARMV7_LIB_SRC=/app/target/armv7-linux-androideabi/release/libmm2.a + +USER $USER + +WORKDIR /app +COPY --chown=$USER:$USER . . + +RUN rm -f assets/coins.json && rm -f assets/coins_config.json && \ + sudo rm -rf build/* && \ + mkdir -p build && \ + curl -o assets/coins.json https://raw.githubusercontent.com/KomodoPlatform/coins/master/coins && \ + curl -o assets/coins_config.json https://raw.githubusercontent.com/KomodoPlatform/coins/master/utils/coins_config.json && \ + mkdir -p android/app/src/main/cpp/libs/armeabi-v7a && \ + mkdir -p android/app/src/main/cpp/libs/arm64-v8a && \ + git clone https://github.com/flutter/flutter.git ${FLUTTER_HOME} && \ + cd ${FLUTTER_HOME} && \ + git fetch && \ + git checkout tags/2.8.1 + +COPY --from=build --chown=$USER:$USER ${ANDROID_AARCH64_LIB_SRC} ${ANDROID_AARCH64_LIB} +COPY --from=build --chown=$USER:$USER ${ANDROID_ARMV7_LIB_SRC} ${ANDROID_ARMV7_LIB} + +RUN flutter config --no-analytics \ + && yes "y" | flutter doctor --android-licenses \ + && flutter doctor diff --git a/.docker/android-sdk.dockerfile b/.docker/android-sdk.dockerfile new file mode 100644 index 000000000..3b7f18d25 --- /dev/null +++ b/.docker/android-sdk.dockerfile @@ -0,0 +1,63 @@ +FROM docker.io/ubuntu:22.04 + +# Credit to Cirrus Labs for the original Dockerfile +# LABEL org.opencontainers.image.source=https://github.com/cirruslabs/docker-images-android + +ENV USER="komodo" +ENV USER_ID=1000 + +RUN apt update && apt install -y sudo && \ + useradd -u $USER_ID -m $USER && \ + usermod -aG sudo $USER && \ + echo "$USER ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers + +USER $USER + +ENV ANDROID_HOME=/opt/android-sdk-linux \ + LANG=en_US.UTF-8 \ + LC_ALL=en_US.UTF-8 \ + LANGUAGE=en_US:en + +ENV ANDROID_SDK_ROOT=$ANDROID_HOME \ + PATH=${PATH}:${ANDROID_HOME}/cmdline-tools/latest/bin:${ANDROID_HOME}/platform-tools:${ANDROID_HOME}/emulator + +# comes from https://developer.android.com/studio/#command-tools +ENV ANDROID_SDK_TOOLS_VERSION=11076708 + +# https://developer.android.com/studio/releases/build-tools +ENV ANDROID_PLATFORM_VERSION=34 +ENV ANDROID_BUILD_TOOLS_VERSION=34.0.0 + +# https://developer.android.com/ndk/downloads +ENV ANDROID_NDK_VERSION=26.3.11579264 + +RUN set -o xtrace \ + && sudo chown -R $USER:$USER /opt \ + && cd /opt \ + && sudo apt-get update \ + && sudo apt-get install -y jq openjdk-17-jdk \ + wget zip unzip git openssh-client curl bc software-properties-common build-essential \ + ruby-full ruby-bundler libstdc++6 libpulse0 libglu1-mesa locales lcov libsqlite3-dev --no-install-recommends \ + # for x86 emulators + libxtst6 libnss3-dev libnspr4 libxss1 libatk-bridge2.0-0 libgtk-3-0 libgdk-pixbuf2.0-0 \ + && sudo rm -rf /var/lib/apt/lists/* \ + && sh -c 'echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen' \ + && sudo locale-gen \ + && sudo update-locale LANG=en_US.UTF-8 \ + && wget -q https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS_VERSION}_latest.zip -O android-sdk-tools.zip \ + && mkdir -p ${ANDROID_HOME}/cmdline-tools/ \ + && unzip -q android-sdk-tools.zip -d ${ANDROID_HOME}/cmdline-tools/ \ + && mv ${ANDROID_HOME}/cmdline-tools/cmdline-tools ${ANDROID_HOME}/cmdline-tools/latest \ + && rm android-sdk-tools.zip \ + && yes | sdkmanager --licenses \ + && sdkmanager platform-tools \ + && sudo mkdir -p /root/.android \ + && sudo chown -R $USER:$USER /root \ + && touch /root/.android/repositories.cfg \ + && git config --global user.email "hello@komodoplatform.com" \ + && git config --global user.name "Komodo Platform" \ + && yes | sdkmanager \ + "platforms;android-$ANDROID_PLATFORM_VERSION" \ + "build-tools;$ANDROID_BUILD_TOOLS_VERSION" \ + && yes | sdkmanager "ndk;$ANDROID_NDK_VERSION" \ + && sudo chown -R $USER:$USER $ANDROID_HOME \ No newline at end of file diff --git a/.docker/build_apk_release.sh b/.docker/build_apk_release.sh new file mode 100755 index 000000000..122ddcf3f --- /dev/null +++ b/.docker/build_apk_release.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +set -eu + +# Git branch of Komodo DeFi Framework to build +BRANCH=${1:-main} +# Enable screenshots (disabled by default for security, but can be useful during testing) +ALLOW_SCREENSHOTS=${2:-false} + +# Build KDF libraries +docker build -f .docker/kdf-android-build.dockerfile . -t komodo/kdf-android --build-arg KDF_BRANCH=${BRANCH} +# Setup Android SDK +docker build -f .docker/android-sdk.dockerfile . -t komodo/android-sdk:34 +# Prepare coins and other dependencies +docker build -f .docker/android-apk-build.dockerfile . -t komodo/komodo-wallet-mobile +# Clean projects won't have a build directory, so create it if it doesn't exist +mkdir -p ./build + +FLUTTER_BUILD_COMMAND="flutter pub get && flutter build apk --release" +if [ "$ALLOW_SCREENSHOTS" == "true" ]; then + FLUTTER_BUILD_COMMAND+=" --dart-define=screenshot=true" +fi + +docker run --rm -v ./build:/app/build komodo/komodo-wallet-mobile:latest bash -c "$FLUTTER_BUILD_COMMAND" diff --git a/.docker/build_config.json b/.docker/build_config.json new file mode 100644 index 000000000..546507dbe --- /dev/null +++ b/.docker/build_config.json @@ -0,0 +1,28 @@ +{ + "api": { + "release_tag": "v2.3.0-beta", + "use_latest_release": false, + "github_repository": "https://github.com/KomodoPlatform/komodo-defi-framework", + "platforms": { + "ios": { + "keywords": [ + "ios", + "aarch64" + ], + "path": "ios" + }, + "android-armv7": { + "keywords": [ + "android-armv7" + ], + "path": "android/app/src/main/cpp/libs/armeabi-v7a" + }, + "android-aarch64": { + "keywords": [ + "android-aarch64" + ], + "path": "android/app/src/main/cpp/libs/arm64-v8a" + } + } + } +} \ No newline at end of file diff --git a/.docker/kdf-android-build.dockerfile b/.docker/kdf-android-build.dockerfile new file mode 100644 index 000000000..46d111277 --- /dev/null +++ b/.docker/kdf-android-build.dockerfile @@ -0,0 +1,102 @@ +FROM docker.io/ubuntu:22.04 + +LABEL Author="Onur Özkan " +ARG KDF_BRANCH=main + +RUN apt-get update -y && \ + apt-get install -y --no-install-recommends \ + ca-certificates \ + build-essential \ + libssl-dev \ + cmake \ + llvm-dev \ + libclang-dev \ + lld \ + gcc \ + libc6-dev \ + jq \ + make \ + pkg-config \ + git \ + automake \ + libtool \ + m4 \ + autoconf \ + make \ + file \ + curl \ + wget \ + gnupg \ + python-is-python3 \ + software-properties-common \ + lsb-release \ + libudev-dev \ + zip unzip \ + binutils && \ + apt-get clean + +RUN curl --output llvm.sh https://apt.llvm.org/llvm.sh && \ + chmod +x llvm.sh && \ + ./llvm.sh 16 && \ + rm ./llvm.sh && \ + ln -s /usr/bin/clang-16 /usr/bin/clang && \ + PROTOC_ZIP=protoc-25.3-linux-x86_64.zip && \ + curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v25.3/$PROTOC_ZIP && \ + unzip -o $PROTOC_ZIP -d /usr/local bin/protoc && \ + unzip -o $PROTOC_ZIP -d /usr/local 'include/*' && \ + rm -f $PROTOC_ZIP + +ENV AR=/usr/bin/llvm-ar-16 +ENV CC=/usr/bin/clang-16 + +RUN mkdir -m 0755 -p /etc/apt/keyrings + +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ + export PATH="/root/.cargo/bin:$PATH" && \ + rustup toolchain install nightly-2023-06-01 --no-self-update --profile=minimal && \ + rustup default nightly-2023-06-01 && \ + rustup target add aarch64-linux-android && \ + rustup target add armv7-linux-androideabi && \ + apt install -y python3 python3-pip git curl nodejs python3-venv sudo && \ + git clone https://github.com/KomodoPlatform/komodo-defi-framework.git /app && \ + cd /app && \ + git fetch --all && \ + git checkout origin/$KDF_BRANCH && \ + if [ "$(uname -m)" = "x86_64" ]; then \ + bash ./scripts/ci/android-ndk.sh x86 23; \ + elif [ "$(uname -m)" = "aarch64" ]; then \ + bash ./scripts/ci/android-ndk.sh arm64 23; \ + else \ + echo "Unsupported architecture"; \ + exit 1; \ + fi + +ENV PATH="/root/.cargo/bin:$PATH" + +ENV PATH=$PATH:/android-ndk/bin + +# Libz is distributed in the android ndk, but for some unknown reason it is not +# found in the build process of some crates, so we explicit set the DEP_Z_ROOT +ENV CARGO_TARGET_X86_64_LINUX_ANDROID_LINKER=x86_64-linux-android-clang \ + CARGO_TARGET_X86_64_LINUX_ANDROID_RUNNER="qemu-x86_64 -cpu qemu64,+mmx,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt" \ + CC_x86_64_linux_android=x86_64-linux-android-clang \ + CXX_x86_64_linux_android=x86_64-linux-android-clang++ \ + CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER=armv7a-linux-androideabi21-clang \ + CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_RUNNER=qemu-arm \ + CC_armv7_linux_androideabi=armv7a-linux-androideabi21-clang \ + CXX_armv7_linux_androideabi=armv7a-linux-androideabi21-clang++ \ + CC_aarch64_linux_android=aarch64-linux-android21-clang \ + CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=aarch64-linux-android21-clang \ + CC_armv7_linux_androideabi=armv7a-linux-androideabi21-clang \ + CARGO_TARGET_ARMV7_LINUX_ANDROIDEABI_LINKER=armv7a-linux-androideabi21-clang \ + DEP_Z_INCLUDE=/android-ndk/sysroot/usr/include/ \ + OPENSSL_STATIC=1 \ + OPENSSL_DIR=/openssl \ + OPENSSL_INCLUDE_DIR=/openssl/include \ + OPENSSL_LIB_DIR=/openssl/lib \ + RUST_TEST_THREADS=1 \ + HOME=/tmp/ \ + TMPDIR=/tmp/ \ + ANDROID_DATA=/ \ + ANDROID_DNS_MODE=local \ + ANDROID_ROOT=/system diff --git a/.docker/requirements.txt b/.docker/requirements.txt new file mode 100644 index 000000000..6a46b2c28 --- /dev/null +++ b/.docker/requirements.txt @@ -0,0 +1,3 @@ +requests==2.31.0 +beautifulsoup4==4.12.2 + diff --git a/.docker/update_api.py b/.docker/update_api.py new file mode 100644 index 000000000..e27d6069f --- /dev/null +++ b/.docker/update_api.py @@ -0,0 +1,169 @@ +#!/usr/bin/env python3 +import os +import sys +import json +import shutil +import zipfile +import requests +import argparse +from pathlib import Path +from datetime import datetime + +class UpdateAPI: + '''Updates the API module version for all or a specified platform.''' + def __init__(self, tag=None, platform=None, force=False): + self.tag = tag + self.platform = platform + self.force = force + + # Get the absolute path of the project root directory + self.project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + self.config_file = os.path.join(self.project_root, ".docker/build_config.json") + + # Load the build_config.json + with open(self.config_file, "r") as f: + self.config = json.load(f) + + # Use tag from build_config.json if tag is not specified + if not self.tag: + self.tag = self.config["api"]["release_tag"] + + # Get the platforms config + self.platforms_config = self.config["api"]["platforms"] + + # Get the GitHub repository URL + self.github_repo = self.config["api"]["github_repository"].replace("https://github.com/", "https://api.github.com/repos/") + + # Check if should use the latest release + self.use_latest_release = self.config["api"].get("use_latest_release", False) + + def get_platform_destination_folder(self, platform): + '''Returns the destination folder for the specified platform.''' + if platform in self.platforms_config: + return os.path.join(self.project_root, self.platforms_config[platform]["path"]) + else: + raise ValueError(f"Invalid platform: {platform}. Please select a valid platform from the following list: {', '.join(self.platforms_config.keys())}") + + def get_release_assets(self): + '''Fetches the assets of the specified or latest release from the GitHub repository.''' + if self.use_latest_release: + api_url = f"{self.github_repo}/releases/latest" + else: + api_url = f"{self.github_repo}/releases/tags/{self.tag}" + + response = requests.get(api_url) + response.raise_for_status() + release = response.json() + + return release["assets"] + + def get_zip_file_url(self, platform): + '''Returns the URL of the zip file for the requested version / platform.''' + assets = self.get_release_assets() + search_parameters = self.platforms_config[platform] + keywords = search_parameters["keywords"] + for asset in assets: + file_name = asset["name"] + if all(keyword in file_name for keyword in keywords): + return asset["browser_download_url"] + raise ValueError(f"Could not find release zip file for tag '{self.tag}' on '{platform}' platform!") + + def download_api_file(self, platform): + '''Downloads the API version zip file for a specific platform.''' + # Get the URL of the zip file + zip_file_url = self.get_zip_file_url(platform) + + # Download the zip file + print(f"Downloading '{self.tag}' API module for [{platform}]...") + response = requests.get(zip_file_url, stream=True) + response.raise_for_status() + + destination_folder = self.get_platform_destination_folder(platform) + zip_file_name = os.path.basename(zip_file_url) + destination_path = os.path.join(destination_folder, zip_file_name) + + # Ensure the destination directory exists + os.makedirs(destination_folder, exist_ok=True) + + # Save the zip file to the specified folder + with open(destination_path, "wb") as file: + response.raw.decode_content = True + shutil.copyfileobj(response.raw, file) + + print(f"Saved to '{destination_path}'") + return destination_path + + def update_api(self): + '''Updates the API module.''' + tag = self.config["api"]["release_tag"] + platforms = self.config["api"]["platforms"] + + # If a platform is specified, only update that platform + if self.platform: + platforms = {self.platform: platforms[self.platform]} + + for platform in platforms: + # Set the api module destination folder + destination_folder = self.get_platform_destination_folder(platform) + + # Check if .api_last_updated file exists + last_api_update_file = os.path.join(destination_folder, ".api_last_updated") + + is_outdated = True + + if not self.force and os.path.exists(last_api_update_file): + with open(last_api_update_file, "r") as f: + last_api_update = json.load(f) + if last_api_update.get("tag") == tag: + print(f"{platform} API module is up to date ({tag}).") + is_outdated = False + + if is_outdated: + # Download the API file for the platform + zip_file_path = self.download_api_file(platform) + + # Unzip the downloaded file + print(f"Extracting...") + with zipfile.ZipFile(zip_file_path, 'r') as zip_ref: + zip_ref.extractall(destination_folder) + + # Make mm2 file executable for Linux + if platform == 'linux': + print("Make mm2 file executable for Linux") + os.chmod(os.path.join(destination_folder, "mm2"), 0o755) + + # Delete the zip file after extraction + os.remove(zip_file_path) + + # Update .api_last_updated file + with open(last_api_update_file, "w") as f: + current_timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + json.dump({"tag": tag, "timestamp": current_timestamp}, f) + + def update_build_config_tag(self): + '''Updates the API tag in build_config.json.''' + self.config["api"]["release_tag"] = self.tag + + with open(self.config_file, "w") as f: + json.dump(self.config, f, indent=4) + + print(f"Tag in build_config.json updated to {self.tag}.") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Download API module file for specified tag and platform.") + # Optional arguments + parser.add_argument("-a", "--api", help="tag of the API module to download.", default=None) + parser.add_argument("-p", "--platform", help="platform for which the API module should be downloaded.", default=None) + parser.add_argument("--force", action="store_true", help="force update, ignoring .api_last_updated.", default=False) + args = parser.parse_args() + + try: + updateAPI = UpdateAPI(args.api, args.platform, args.force) + # Update the API tag in build_config.json if the API tag is specified + if args.api: + updateAPI.update_build_config_tag() + updateAPI.update_api() + + except Exception as e: + print(f"Error: {e}") diff --git a/.fvmrc b/.fvmrc new file mode 100644 index 000000000..6c8d4a4b9 --- /dev/null +++ b/.fvmrc @@ -0,0 +1,4 @@ +{ + "flutter": "2.8.1", + "flavors": {} +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6739ab05f..a09b25e0d 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ .buildlog/ .history .svn/ +**/.api_last_updated # coins file extras # /assets/coins.json @@ -97,4 +98,6 @@ build/ !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages ios/Flutter/.last_build_id ios/libmm2.a -.fvm + +# FVM Version Cache +.fvm/ \ No newline at end of file diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 000000000..a603bb50a --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.7.5 diff --git a/README.md b/README.md index 3a394f0c7..96dc35c7f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ # Komodo Wallet - Open Source GitHub Repository 🚀 +[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/KomodoPlatform/komodo-wallet-mobile?quickstart=1) + ![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) @@ -68,6 +70,27 @@ Windows: `choco install jq`, [Choco software](https://chocolatey.org/) https://github.com/KomodoPlatform/AtomicDEX-mobile/wiki/Project-Setup#build-and-run +### Build with docker + +To build from a container without installing Flutter on an x86_64 machine (Linux or Windows) with Docker or Podman installed, you can use the provided Dockerfile. + +```bash +sh .docker/build_apk_release.sh +``` + +You can also manually build using docker with the following commands: + +```bash +docker build -f .docker/android-sdk.dockerfile . -t komodo/android-sdk:34 +docker build -f .docker/android-apk-build.dockerfile . -t komodo/komodo-wallet-mobile +docker run --rm -v ./build:/app/build komodo/komodo-wallet-mobile:latest +``` + +The build output should be in the following directory: `build/app/outputs/flutter-apk/app-release.apk` + +NOTE: There are known issues with building this repository using docker on ARM-based systems (e.g. M-series Macs, Raspberry Pi): + - linux/amd64: [Dart VM emulation on M1 Mac fails](https://github.com/dart-lang/sdk/issues/48420) + - linux/arm64: fails due to dependencies limiting the versions of the dart sdk, android gradle plugin, and gradle build tools. See the [Gradle Compatibility Matrix](https://docs.gradle.org/current/userguide/compatibility.html) ## Run/Build with screenshot and video recording ON @@ -96,6 +119,17 @@ Ensure you run the most recent Komodo DeFi Framework [stable release](https://gi See [our wiki](https://github.com/KomodoPlatform/atomicdex-mobile/wiki/Project-Setup#android-builds-from-scratch) here for more thorough project setup steps. Besides installing the API binary, Komodo Wallet is set up similarly to any other cloned Flutter project. +### Setup with Python script + +You can use the provided Python script to download and extract the API binary for you. This script will download the latest release of the API binary from GitHub and extract it to the correct location. + +```bash +python3 -m venv .venv +source .venv/bin/activate +pip install -r .docker/requirements.txt +python .docker/update_api.py --force +``` + ## Accessing the database adb exec-out run-as com.komodoplatform.atomicdex cat /data/data/com.komodoplatform.atomicdex/app_flutter/AtomicDEX.db > AtomicDEX.db diff --git a/assets/coin-icons/aibc.png b/assets/coin-icons/aibc.png new file mode 100644 index 000000000..28f17e26b Binary files /dev/null and b/assets/coin-icons/aibc.png differ diff --git a/assets/coin-icons/anagami.png b/assets/coin-icons/anagami.png new file mode 100644 index 000000000..850dcf219 Binary files /dev/null and b/assets/coin-icons/anagami.png differ diff --git a/assets/coin-icons/aney.png b/assets/coin-icons/aney.png new file mode 100644 index 000000000..1403d01de Binary files /dev/null and b/assets/coin-icons/aney.png differ diff --git a/assets/coin-icons/arb.png b/assets/coin-icons/arb.png new file mode 100644 index 000000000..cca92fdaf Binary files /dev/null and b/assets/coin-icons/arb.png differ diff --git a/assets/coin-icons/bczero.png b/assets/coin-icons/bczero.png new file mode 100644 index 000000000..002fa1d49 Binary files /dev/null and b/assets/coin-icons/bczero.png differ diff --git a/assets/coin-icons/bkc.png b/assets/coin-icons/bkc.png old mode 100755 new mode 100644 index 853642304..88b54874d Binary files a/assets/coin-icons/bkc.png and b/assets/coin-icons/bkc.png differ diff --git a/assets/coin-icons/cds.png b/assets/coin-icons/cds.png index eae62eb3d..b610c470d 100644 Binary files a/assets/coin-icons/cds.png and b/assets/coin-icons/cds.png 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/dime.png b/assets/coin-icons/dime.png new file mode 100644 index 000000000..d7b462a70 Binary files /dev/null and b/assets/coin-icons/dime.png differ diff --git a/assets/coin-icons/doi.png b/assets/coin-icons/doi.png index 141dd6320..9d53b3492 100644 Binary files a/assets/coin-icons/doi.png and b/assets/coin-icons/doi.png 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/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/fdusd.png b/assets/coin-icons/fdusd.png new file mode 100644 index 000000000..ab2990342 Binary files /dev/null and b/assets/coin-icons/fdusd.png differ diff --git a/assets/coin-icons/frc.png b/assets/coin-icons/frc.png new file mode 100644 index 000000000..4d09beb3b Binary files /dev/null and b/assets/coin-icons/frc.png differ diff --git a/assets/coin-icons/gneiss.png b/assets/coin-icons/gneiss.png new file mode 100644 index 000000000..ba3360f51 Binary files /dev/null and b/assets/coin-icons/gneiss.png differ diff --git a/assets/coin-icons/grr.png b/assets/coin-icons/grr.png new file mode 100644 index 000000000..88bda0d03 Binary files /dev/null and b/assets/coin-icons/grr.png differ diff --git a/assets/coin-icons/guru.png b/assets/coin-icons/guru.png new file mode 100644 index 000000000..1825ca15a Binary files /dev/null and b/assets/coin-icons/guru.png differ diff --git a/assets/coin-icons/idrt.png b/assets/coin-icons/idrt.png new file mode 100644 index 000000000..519ced154 Binary files /dev/null and b/assets/coin-icons/idrt.png differ diff --git a/assets/coin-icons/iristest.png b/assets/coin-icons/iristest.png new file mode 100644 index 000000000..b5e2bc277 Binary files /dev/null and b/assets/coin-icons/iristest.png differ diff --git a/assets/coin-icons/jasmy.png b/assets/coin-icons/jasmy.png new file mode 100644 index 000000000..9d40bfbd1 Binary files /dev/null and b/assets/coin-icons/jasmy.png 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/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/lols.png b/assets/coin-icons/lols.png new file mode 100644 index 000000000..2c024c11e Binary files /dev/null and b/assets/coin-icons/lols.png differ diff --git a/assets/coin-icons/lupa.png b/assets/coin-icons/lupa.png new file mode 100644 index 000000000..76f9b009c Binary files /dev/null and b/assets/coin-icons/lupa.png differ diff --git a/assets/coin-icons/mdx.png b/assets/coin-icons/mdx.png new file mode 100644 index 000000000..618deb329 Binary files /dev/null and b/assets/coin-icons/mdx.png 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/mor.png b/assets/coin-icons/mor.png new file mode 100644 index 000000000..1cc766190 Binary files /dev/null and b/assets/coin-icons/mor.png differ diff --git a/assets/coin-icons/nucleus.png b/assets/coin-icons/nucleus.png new file mode 100644 index 000000000..794752679 Binary files /dev/null and b/assets/coin-icons/nucleus.png differ diff --git a/assets/coin-icons/nucleustest.png b/assets/coin-icons/nucleustest.png new file mode 100644 index 000000000..794752679 Binary files /dev/null and b/assets/coin-icons/nucleustest.png 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/om.png b/assets/coin-icons/om.png new file mode 100644 index 000000000..a6ab7baa3 Binary files /dev/null and b/assets/coin-icons/om.png differ diff --git a/assets/coin-icons/pendle.png b/assets/coin-icons/pendle.png new file mode 100644 index 000000000..a3f322280 Binary files /dev/null and b/assets/coin-icons/pendle.png differ diff --git a/assets/coin-icons/pep.png b/assets/coin-icons/pep.png new file mode 100644 index 000000000..b880579bd Binary files /dev/null and b/assets/coin-icons/pep.png differ diff --git a/assets/coin-icons/pepe.png b/assets/coin-icons/pepe.png new file mode 100644 index 000000000..fa86b77f9 Binary files /dev/null and b/assets/coin-icons/pepe.png 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/raph.png b/assets/coin-icons/raph.png new file mode 100644 index 000000000..115254076 Binary files /dev/null and b/assets/coin-icons/raph.png differ diff --git a/assets/coin-icons/rtb.png b/assets/coin-icons/rtb.png deleted file mode 100644 index e3e21e6a4..000000000 Binary files a/assets/coin-icons/rtb.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/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/syn.png b/assets/coin-icons/syn.png new file mode 100644 index 000000000..71f5925e9 Binary files /dev/null and b/assets/coin-icons/syn.png differ diff --git a/assets/coin-icons/tsia.png b/assets/coin-icons/tsia.png new file mode 100644 index 000000000..be2ef44cc Binary files /dev/null and b/assets/coin-icons/tsia.png 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/vdex.png b/assets/coin-icons/vdex.png new file mode 100644 index 000000000..4a0e5ce72 Binary files /dev/null and b/assets/coin-icons/vdex.png 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/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/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 index b8809195b..0d2e1dac8 100644 Binary files a/assets/coin-icons/whive.png and b/assets/coin-icons/whive.png 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/zoin.png b/assets/coin-icons/zoin.png new file mode 100644 index 000000000..1dabecc25 Binary files /dev/null and b/assets/coin-icons/zoin.png differ diff --git a/assets/coins.json b/assets/coins.json index b90b482d0..a93774ea9 100644 --- a/assets/coins.json +++ b/assets/coins.json @@ -1,4 +1,22 @@ [ + { + "coin": "ANAGAMI", + "fname": "Anagami Testnet", + "mm2": 1, + "required_confirmations": 1, + "protocol": { + "type": "SIA" + } + }, + { + "coin": "TSIA", + "fname": "Siacoin Testnet", + "mm2": 1, + "required_confirmations": 1, + "protocol": { + "type": "SIA" + } + }, { "coin": "1INCH-AVX20", "name": "1inch_avx20", @@ -16,7 +34,7 @@ "contract_address": "0xd501281565bf7789224523144Fe5D98e8B28f267" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "ILNF-PLG20", @@ -35,7 +53,7 @@ "contract_address": "0xaFf5Ed00c57b0E0c22123dbA28Cb6A5B26651Bbd" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "ILNF-BEP20", @@ -54,7 +72,7 @@ "contract_address": "0x0D6e16c7066421607F8D334D6C02A48031fc2Eba" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "1INCH-BEP20", @@ -72,7 +90,15 @@ "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "1INCH-ERC20", @@ -93,7 +119,28 @@ }, "derivation_path": "m/44'/60'" }, - { + +{ + "coin": "GNEISS-ERC20", + "name": "gneiss_erc20", + "fname": "GNEISS", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "avg_blocktime": 15, + "required_confirmations": 3, + "decimals": 8, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x5da3E93faB0580bD7a532A741aC5F886376EFF46" + } + }, + "derivation_path": "m/44'/60'" + }, + +{ "coin": "1INCH-KRC20", "name": "1inch_krc20", "fname": "1Inch", @@ -110,7 +157,7 @@ "contract_address": "0x79f3244F3FFd7500A31a90Bb83C7D56649c2C7C5" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "1INCH-PLG20", @@ -129,7 +176,15 @@ "contract_address": "0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "PGX-PLG20", @@ -148,7 +203,15 @@ "contract_address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "AAVE-AVX20", @@ -167,7 +230,7 @@ "contract_address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "AAVE-BEP20", @@ -185,7 +248,15 @@ "contract_address": "0xfb6115445Bff7b52FeB98650C87f44907E58f802" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "AAVE-ERC20", @@ -217,6 +288,7 @@ "fname": "AAVE", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -228,7 +300,7 @@ "contract_address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "AAVE-HCO20", @@ -236,6 +308,7 @@ "fname": "AAVE", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -247,7 +320,7 @@ "contract_address": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "AAVE-KRC20", @@ -266,7 +339,7 @@ "contract_address": "0xE76e97C157658004eE22e01C03a5e21A4655A2Fd" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "AAVE-PLG20", @@ -285,12 +358,21 @@ "contract_address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ABY", "name": "artbyte", "fname": "ArtByte", + "sign_message_prefix": "Artbyte Signed Message:\n", "isPoS": 1, "rpcport": 9262, "pubtype": 28, @@ -304,6 +386,11 @@ "avg_blocktime": 45, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/720'", + "links": { + "github": "https://github.com/WikiMin3R/ArtBytE", + "homepage": "https://artbyte.art" } }, { @@ -322,7 +409,15 @@ "contract_address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ADX-BEP20", @@ -340,7 +435,15 @@ "contract_address": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ADX-ERC20", @@ -382,7 +485,7 @@ "contract_address": "0xAEC8318a9a59bAEb39861d10ff6C7f7bf1F96C57" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "AGEUR-ERC20", @@ -420,7 +523,15 @@ "contract_address": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "AGIX-ERC20", @@ -428,6 +539,7 @@ "fname": "SingularityNET", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1, "decimals": 8, "avg_blocktime": 15, @@ -447,6 +559,7 @@ "fname": "SingularityNET", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 137, "decimals": 8, "avg_blocktime": 1.8, @@ -458,12 +571,13 @@ "contract_address": "0x190Eb8a183D22a4bdf278c6791b152228857c033" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "AIBC", "name": "aiblockchain", "fname": "Aiblockchain", + "sign_message_prefix": "Aiblockchain Signed Message:\n", "rpcport": 7772, "pubtype": 23, "p2shtype": 23, @@ -471,16 +585,17 @@ "txfee": 0, "dust": 5460, "segwit": true, + "bech32_hrp": "aibc", "mm2": 1, "required_confirmations": 11, "avg_blocktime": 30, "protocol": { - "type": "UTXO", - "bip44": "m/44'/2'/0'/0/0" + "type": "UTXO" }, + "derivation_path": "m/44'/2'", "links": { "github": "https://github.com/nickgsh/AiBlockChain", - "homepage": "https://aibc.space/" + "homepage": "https://aibc.space" } }, { @@ -507,6 +622,28 @@ "homepage": "aipowergrid.io" } }, + { + "coin": "ANEY", + "name": "aney", + "fname": "Animal Economy", + "rpcport": 33500, + "pubtype": 23, + "p2shtype": 63, + "wiftype": 210, + "txfee": 100000, + "dust": 5460, + "mm2": 1, + "required_confirmations": 5, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/119'", + "links": { + "github": "https://github.com/Animal-Economy/ANEY", + "homepage": "https://aney.one" + } + }, { "coin": "ANKR-BEP20", "name": "ankr_bep20", @@ -523,7 +660,7 @@ "contract_address": "0xf307910A4c7bbc79691fD374889b36d8531B08e3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "ANKR-ERC20", @@ -560,7 +697,15 @@ "contract_address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "APE-ERC20", @@ -598,7 +743,15 @@ "contract_address": "0xC762043E211571eB34f1ef377e5e8e76914962f9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "APE-FTM20", @@ -606,6 +759,7 @@ "fname": "ApeCoin", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -617,7 +771,7 @@ "contract_address": "0x2d72A97a31Dc920dB03330780d30074626e39C8A" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "APE-PLG20", @@ -636,7 +790,61 @@ "contract_address": "0xB7b31a6BC18e48888545CE79e83E06003bE70930" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "coin": "ARB-ERC20", + "name": "arb_erc20", + "fname": "Arbitrum", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "ARB-ARB20", + "name": "arb_arb20", + "fname": "Arbitrum", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } }, { "coin": "ARPA-BEP20", @@ -654,7 +862,15 @@ "contract_address": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ARPA-ERC20", @@ -691,7 +907,15 @@ "contract_address": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ARRR", @@ -728,9 +952,11 @@ "time": 1652512363, "hash": "44797f3bb78323a7717007f1e289a3689e0b5b3433385dbd8e6f6a1700000000", "sapling_tree": "01e40c26f4a28071535b95ae637d30a209531e92a33de0a649e51183771025fd0f016cdc51442fcb328d047a709dc0f41e0173953404711045b3ef3036d7fd4151271501d6c94c5ce6787826af809aaee83768c4b7d4f02c8dc2d24cf60ed5f127a5d730018a752ea9d9efb3e1ac0e6e705ac9f7f9863cfa8f612ad43802175338d8d7cc6000000001fc3542434eff03075ea5f0a64f1dfb2f042d281b1a057e9f6c765b533ce51219013ad9484b1e901e62b93e7538f913dcb27695380c3bc579e79f5cc900f28e596e0001431da5f01fe11d58300134caf5ac76e0b1b7486fd02425dd8871bca4afa94d4b01bb39de1c1d10a25ce0cc775bc74b6b0f056c28639e7c5b7651bb8460060085530000000001732ddf661e68c9e335599bb0b18b048d2f1c06b20eabd18239ad2f3cc45fa910014496bab5eedab205b5f2a206bd1db30c5bc8bc0c1914a102f87010f3431be21a0000010b5fd8e7610754075f936463780e85841f3ab8ca2978f9afdf7c2c250f16a75f01db56bc66eb1cd54ec6861e5cf24af2f4a17991556a52ca781007569e95b9842401c03877ecdd98378b321250640a1885604d675aaa50380e49da8cfa6ff7deaf15" - } + }, + "z_derivation_path": "m/32'/133'" } }, + "derivation_path": "m/44'/133'", "required_confirmations": 2, "requires_notarization": true }, @@ -752,7 +978,7 @@ "contract_address": "0xCDAF240C90F989847c56aC9Dee754F76F41c5833" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "ATOM-BEP20", @@ -770,7 +996,15 @@ "contract_address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ATOM-PLG20", @@ -789,7 +1023,15 @@ "contract_address": "0xac51C4c48Dc3116487eD4BC16542e27B5694Da1b" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "AUR", @@ -812,11 +1054,12 @@ "derivation_path": "m/44'/85'" }, { - "coin": "AVA-BEP20_OLD", - "name": "ava_bep20_old", - "fname": "Travala.com (OLD)", + "coin": "AVA-BEP20", + "name": "ava_bep20", + "fname": "Travala.com", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 56, "avg_blocktime": 3, "required_confirmations": 3, @@ -827,7 +1070,7 @@ "contract_address": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "AVA-ERC20", @@ -860,7 +1103,8 @@ "avg_blocktime": 2.4, "protocol": { "type": "ETH" - } + }, + "derivation_path": "m/44'/60'" }, { "coin": "AVAX", @@ -869,12 +1113,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 43114, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 2.4, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "trezor_coin": "Avalanche C-Chain", "links": { "homepage": "https://www.avax.network/" @@ -896,12 +1142,21 @@ "contract_address": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "AVN", "name": "avian", "fname": "Avian", + "sign_message_prefix": "Raven Signed Message:\n", "rpcport": 7896, "pubtype": 60, "p2shtype": 122, @@ -935,7 +1190,7 @@ "contract_address": "0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "AWC-ERC20", @@ -959,6 +1214,7 @@ "coin": "AXE", "name": "axe", "fname": "Axe", + "sign_message_prefix": "DarkCoin Signed Message:\n", "rpcport": 9337, "pubtype": 55, "p2shtype": 16, @@ -995,7 +1251,15 @@ "contract_address": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "AXS-ERC20", @@ -1032,8 +1296,7 @@ "txfee": 100000, "dust": 54600, "mm2": 1, - "required_confirmations": 2, - "requires_notarization": true, + "required_confirmations": 5, "avg_blocktime": 30, "protocol": { "type": "UTXO" @@ -1057,7 +1320,7 @@ "contract_address": "0x86e5775F5c46304939c40959812bC220dD1c0333" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BABYDOGE-BEP20", @@ -1075,7 +1338,7 @@ "contract_address": "0xc748673057861a797275CD8A068AbB95A902e8de" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BAL-BEP20", @@ -1093,7 +1356,7 @@ "contract_address": "0xd4ed60d8368a92b5F1ca33aF61eF2A94714B2d46" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BAL-ERC20", @@ -1136,7 +1399,7 @@ "contract_address": "0xFC31366Be1795c1Ff444b9fBF55759733aD4d26D" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "BAL-PLG20", @@ -1155,7 +1418,15 @@ "contract_address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "BANANO-BEP20", @@ -1173,7 +1444,7 @@ "contract_address": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BAND-BEP20", @@ -1191,7 +1462,15 @@ "contract_address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "BAND-ERC20", @@ -1218,6 +1497,7 @@ "fname": "Band Protocol", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -1229,7 +1509,7 @@ "contract_address": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "BAND-PLG20", @@ -1248,7 +1528,7 @@ "contract_address": "0xA8b1E0764f85f53dfe21760e8AfE5446D82606ac" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "BAT-AVX20", @@ -1267,7 +1547,7 @@ "contract_address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "BAT-ERC20", @@ -1307,7 +1587,15 @@ "contract_address": "0x101d82428437127bF1608F699CD651e6Abf9766E" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "BAT-KRC20", @@ -1326,7 +1614,7 @@ "contract_address": "0x0bF46C86Ce3B904660aE85677EaA20B0C1b24064" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "BAT-PLG20", @@ -1345,7 +1633,7 @@ "contract_address": "0x3Cef98bb43d732E2F285eE605a8158cDE967D219" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "BCH", @@ -1527,7 +1815,7 @@ "contract_address": "0x218645F85Ff27FC456ef46c3CdacBF5c40B2F9E8" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "MAZE-SLP", @@ -1584,7 +1872,7 @@ "contract_address": "0x9045B0eda6B6A556cf9B3d81C2db47411714f847" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BBK-PLG20", @@ -1603,7 +1891,7 @@ "contract_address": "0x2C8a46eF99Cb64928eB3Dd50A925327e02296F63" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "BCH-ERC20", @@ -1641,7 +1929,7 @@ "contract_address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BCH-HCO20", @@ -1649,6 +1937,7 @@ "fname": "Bitcoin Cash", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "avg_blocktime": 3, "decimals": 18, @@ -1660,14 +1949,16 @@ "contract_address": "0xeF3CEBD77E0C52cb6f60875d9306397B5Caca375" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "BIDR-BEP20", "name": "bidr_bep20", "fname": "BIDR", "rpcport": 80, + "chain_id": 56, "mm2": 1, + "wallet_only": true, "avg_blocktime": 3, "required_confirmations": 3, "protocol": { @@ -1677,7 +1968,7 @@ "contract_address": "0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BITN", @@ -1698,6 +1989,27 @@ "type": "UTXO" } }, + { + "coin": "BCZERO", + "sign_message_prefix": "Komodo Signed Message:\n", + "asset": "BCZERO", + "fname": "Buggyra Coin Zero", + "rpcport": 46856, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "links": { + "homepage": "https://buggyracoinzero.com" + } + }, { "coin": "BLK", "name": "blackmore", @@ -1737,7 +2049,7 @@ "contract_address": "0xd2cDfD5d26dfA1D11116B9ED7DBd7C6B88C6e1D3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "tBLK", @@ -1757,7 +2069,8 @@ "avg_blocktime": 66, "protocol": { "type": "UTXO" - } + }, + "derivation_path": "m/44'/1'" }, { "coin": "BLOCX", @@ -1776,6 +2089,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/5'", "links": { "github": "https://github.com/BLOCXTECH/BLOCX", "homepage": "https://blocx.tech" @@ -1789,11 +2103,13 @@ "rpcport": 80, "mm2": 1, "chain_id": 56, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "trezor_coin": "Binance Smart Chain", "links": { "homepage": "https://www.binance.org" @@ -1856,7 +2172,7 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/137'", + "derivation_path": "m/44'/60'", "trezor_coin": "RSK", "links": { "homepage": "https://rsk.co" @@ -1874,7 +2190,8 @@ "required_confirmations": 3, "protocol": { "type": "ETH" - } + }, + "derivation_path": "m/44'/60'" }, { "coin": "BNT-BEP20", @@ -1892,7 +2209,15 @@ "contract_address": "0xA069008A669e2Af00a86673D9D584cfb524A42Cc" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "BNT-ERC20", @@ -1935,7 +2260,7 @@ "contract_address": "0xc26D47d5c33aC71AC5CF9F776D63Ba292a4F7842" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "BORG-ERC20", @@ -1977,25 +2302,6 @@ "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'" }, { @@ -2017,25 +2323,6 @@ }, "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", @@ -2053,7 +2340,15 @@ "contract_address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "BRZ-AVX20", @@ -2072,7 +2367,7 @@ "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "BSTY", @@ -2120,6 +2415,31 @@ "homepage": "https://bitcoin.org" } }, + { + "coin": "BKC", + "name": "briskcoin", + "fname": "Briskcoin", + "rpcport": 8552, + "pubtype": 25, + "p2shtype": 33, + "wiftype": 153, + "txfee": 0, + "segwit": true, + "bech32_hrp": "bc", + "mm2": 1, + "required_confirmations": 5, + "avg_blocktime": 30, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/1918'", + "sign_message_prefix": "Briskcoin Signed Message:\n", + "trezor_coin": "Briskcoin", + "links": { + "github": "https://github.com/briskcoin-project/briskcoin", + "homepage": "https://briskcoin.org" + } + }, { "coin": "BTC-segwit", "name": "bitcoin", @@ -2166,7 +2486,15 @@ "contract_address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "BTCZ", @@ -2206,12 +2534,13 @@ "contract_address": "0xcBBB3e5099F769F6d4E2b8b92DC0e268f7E099D8" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BTE", "name": "bitweb", "fname": "Bitweb", + "sign_message_prefix": "Bitweb Signed Message:\n", "rpcport": 1605, "pubtype": 33, "p2shtype": 30, @@ -2225,12 +2554,18 @@ "avg_blocktime": 60, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/738'", + "links": { + "github": "https://github.com/bitweb-project/bitweb", + "homepage": "https://bitwebcore.net" } }, { "coin": "BTE-segwit", "name": "bitweb", "fname": "Bitweb", + "sign_message_prefix": "Bitweb Signed Message:\n", "rpcport": 1605, "pubtype": 33, "p2shtype": 30, @@ -2247,6 +2582,11 @@ "avg_blocktime": 60, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/84'/738'", + "links": { + "github": "https://github.com/bitweb-project/bitweb", + "homepage": "https://bitwebcore.net" } }, { @@ -2255,6 +2595,7 @@ "fname": "BitTorrent (OLD)", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 56, "avg_blocktime": 3, "required_confirmations": 3, @@ -2265,7 +2606,7 @@ "contract_address": "0x8595F9dA7b868b1822194fAEd312235E43007b49" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BTTC-BEP20", @@ -2284,7 +2625,15 @@ "contract_address": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "BTU-ERC20", @@ -2327,7 +2676,7 @@ "contract_address": "0xFdc26CDA2d2440d0E83CD1DeE8E8bE48405806DC" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "BTX", @@ -2399,7 +2748,7 @@ "contract_address": "0x000000089fb24237dA101020Ff8e2AfD14624687" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BUSD-AVX20", @@ -2407,6 +2756,7 @@ "fname": "Binance USD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 43114, "required_confirmations": 3, "avg_blocktime": 2.4, @@ -2418,35 +2768,17 @@ "contract_address": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { - "coin": "BUSD-AVX20_OLD", - "name": "busd_avx20_old", - "fname": "Binance USD (OLD)", + "coin": "BUSD-MVR20", + "name": "busd_mvr20", + "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": "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, + "wallet_only": true, + "chain_id": 1285, + "avg_blocktime": 15, "decimals": 18, "required_confirmations": 3, "protocol": { @@ -2456,7 +2788,7 @@ "contract_address": "0x5D9ab5522c64E1F6ef5e3627ECCc093f56167818" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'" }, { "coin": "BUSD-ERC20", @@ -2464,6 +2796,7 @@ "fname": "Binance USD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1, "required_confirmations": 3, "avg_blocktime": 15, @@ -2487,6 +2820,7 @@ "fname": "Binance USD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 56, "avg_blocktime": 3, "required_confirmations": 3, @@ -2497,7 +2831,7 @@ "contract_address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "BUSD-PLG20", @@ -2505,6 +2839,7 @@ "fname": "Binance USD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 137, "decimals": 18, "avg_blocktime": 1.8, @@ -2516,7 +2851,7 @@ "contract_address": "0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "CADC-ERC20", @@ -2554,7 +2889,15 @@ "contract_address": "0x9de41aFF9f55219D5bf4359F167d1D0c772A396D" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "CAKE-BEP20", @@ -2572,7 +2915,15 @@ "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "CASE-BEP20", @@ -2591,7 +2942,7 @@ "contract_address": "0x5cafe85d8983f61C059df359c504F1Bab8009e9e" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "CCL", @@ -2658,43 +3009,6 @@ }, "derivation_path": "m/44'/34'" }, - { - "coin": "CDS-AVX20", - "name": "cds_avx20", - "fname": "Crypto Development Services", - "rpcport": 80, - "mm2": 1, - "chain_id": 43114, - "required_confirmations": 3, - "avg_blocktime": 2.4, - "decimals": 8, - "protocol": { - "type": "ERC20", - "protocol_data": { - "platform": "AVAX", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5" - } - }, - "derivation_path": "m/44'/9000'" - }, - { - "coin": "CDS-BEP20", - "name": "cds_bep20", - "fname": "Crypto Development Services", - "rpcport": 80, - "mm2": 1, - "chain_id": 56, - "avg_blocktime": 3, - "required_confirmations": 3, - "protocol": { - "type": "ERC20", - "protocol_data": { - "platform": "BNB", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5" - } - }, - "derivation_path": "m/44'/714'" - }, { "coin": "CDS-PLG20", "name": "cds_plg20", @@ -2709,10 +3023,10 @@ "type": "ERC20", "protocol_data": { "platform": "MATIC", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5" + "contract_address": "0xF7B5991c676929BF98BF3E2e2e386789BB16912a" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "CEL-ERC20", @@ -2750,7 +3064,7 @@ "contract_address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "CELR-ERC20", @@ -2793,7 +3107,15 @@ "contract_address": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "CELR-ARB20", @@ -2801,17 +3123,25 @@ "fname": "Celer Network", "rpcport": 80, "mm2": 1, - "wallet_only": true, "chain_id": 42161, "decimals": 18, - "avg_blocktime": 15, - "required_confirmations": 3, + "avg_blocktime": 0.25, + "required_confirmations": 10, "protocol": { "type": "ERC20", "protocol_data": { "platform": "ETH-ARB20", "contract_address": "0x3a8B787f78D775AECFEEa15706D4221B40F345AB" } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 } }, { @@ -2831,7 +3161,15 @@ "contract_address": "0x045c4324039dA91c52C55DF5D785385Aab073DcF" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "CHTA", @@ -2867,32 +3205,15 @@ "contract_address": "0xb096DF47073A39041D9ffeD5d4E1d1b0D5D6b8E7" } }, - "derivation_path": "m/44'/714'" - }, - { - "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" - } + "derivation_path": "m/44'/60'" }, { - "coin": "CHSB-ERC20_OLD", - "name": "chsb_erc20_old", + "coin": "CHSB-ERC20", + "name": "chsb_erc20", "fname": "SwissBorg (OLD)", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1, "decimals": 8, "avg_blocktime": 15, @@ -2913,7 +3234,8 @@ { "coin": "CHSB-PLG20", "name": "chsb_plg20", - "fname": "SwissBorg", + "fname": "SwissBorg (OLD)", + "wallet_only": true, "rpcport": 80, "mm2": 1, "chain_id": 137, @@ -2927,7 +3249,7 @@ "contract_address": "0x67Ce67ec4fCd4aCa0Fcb738dD080b2a21ff69D75" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "CHZ-ERC20", @@ -2965,7 +3287,7 @@ "contract_address": "0x6E8ce0519B7e4d691BaCE464099547E5fC17679c" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "CHZ-PLG20", @@ -2984,7 +3306,7 @@ "contract_address": "0xf1938Ce12400f9a761084E7A80d37e732a4dA056" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "CLAM", @@ -3044,7 +3366,7 @@ "contract_address": "0x3039e86d39A5BCF38E96D78fF93FD0aBe753212c" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "COLX", @@ -3078,7 +3400,7 @@ "contract_address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "COMP-BEP20", @@ -3096,7 +3418,15 @@ "contract_address": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "COMP-ERC20", @@ -3139,7 +3469,7 @@ "contract_address": "0x16c4106966cE30e06E806A7c40eEFb46d84cE7e5" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "COMP-PLG20", @@ -3158,7 +3488,15 @@ "contract_address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "CRO-ERC20", @@ -3196,7 +3534,7 @@ "contract_address": "0x652D253b7Ca91810A4a05ACFc39729387c5090C0" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "CRO-PLG20", @@ -3215,7 +3553,7 @@ "contract_address": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "CRT-QRC20", @@ -3226,7 +3564,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -3244,7 +3582,7 @@ { "coin": "CRV-ERC20", "name": "crv_erc20", - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 1, @@ -3260,10 +3598,37 @@ }, "derivation_path": "m/44'/60'" }, + { + "coin": "CRV-ARB20", + "name": "crv_arb20", + "fname": "Curve DAO", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "CRV-AVX20", "name": "crv_avx20", - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 43114, @@ -3277,14 +3642,15 @@ "contract_address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "CRV-FTM20", "name": "crv_ftm20", - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -3296,12 +3662,12 @@ "contract_address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "CRV-KRC20", "name": "crv_krc20", - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 321, @@ -3315,12 +3681,12 @@ "contract_address": "0x4500E16dA66b99e0C55D7B46EBBD59bc413BA171" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "CRV-PLG20", "name": "crv_plg20", - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 137, @@ -3334,7 +3700,15 @@ "contract_address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "CST-BEP20", @@ -3352,7 +3726,7 @@ "contract_address": "0xcC4b3EA1F25c8772D390dA1DB507832aBE4a9740" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "CUMMIES-BEP20", @@ -3370,7 +3744,7 @@ "contract_address": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "CVX-ERC20", @@ -3461,7 +3835,7 @@ "contract_address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "DAI-ERC20", @@ -3502,7 +3876,15 @@ "contract_address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "DAI-FTM20", @@ -3510,6 +3892,7 @@ "fname": "Dai", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -3521,7 +3904,7 @@ "contract_address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "DAI-HCO20", @@ -3529,6 +3912,7 @@ "fname": "Dai", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -3540,7 +3924,7 @@ "contract_address": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "DAI-MVR20", @@ -3548,6 +3932,7 @@ "fname": "Dai", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1285, "avg_blocktime": 15, "decimals": 18, @@ -3559,7 +3944,7 @@ "contract_address": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'" }, { "coin": "DAI-PLG20", @@ -3578,12 +3963,21 @@ "contract_address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "DASH", "name": "dashcore", "fname": "Dash", + "sign_message_prefix": "DarkCoin Signed Message:\n", "confpath": "USERHOME/.dashcore/dash.conf", "rpcport": 9998, "pubtype": 76, @@ -3663,25 +4057,6 @@ }, "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", @@ -3699,7 +4074,15 @@ "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "DGB", @@ -3810,12 +4193,21 @@ "contract_address": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "DPC", "name": "dualpowecoin", "fname": "Dualpowcoin", + "sign_message_prefix": "Dpowcoin Signed Message:\n", "rpcport": 42002, "pubtype": 55, "p2shtype": 28, @@ -3829,12 +4221,18 @@ "avg_blocktime": 300, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/739'", + "links": { + "github": "https://github.com/dpowcore-project/dpowcoin", + "homepage": "https://dpowcore.org" } }, { "coin": "DIAC", "name": "diabasecore", "fname": "Diabase", + "sign_message_prefix": "DarkCoin Signed Message:\n", "confpath": "USERHOME/.diabasecore/diabase.conf", "rpcport": 7676, "pubtype": 76, @@ -3854,10 +4252,34 @@ "homepage": "https://www.diabasecoin.com" } }, + { + "coin": "DIME", + "name": "dimecoin", + "fname": "Dimecoin", + "rpcport": 11931, + "pubtype": 15, + "p2shtype": 9, + "wiftype": 143, + "segwit": false, + "bech32_hrp": "vx", + "txfee": 1000, + "decimals": 5, + "mm2": 1, + "sign_message_prefix": "Dimecoin Signed Message:\n", + "required_confirmations": 6, + "avg_blocktime": 64, + "protocol": { + "type": "UTXO" + }, + "links": { + "github": "https://github.com/dime-coin/dimecoin/" + } + }, { "coin": "DIMI", "name": "diminutivecoin", "fname": "Diminutive Coin", + "sign_message_prefix": "DiminutiveCoin Signed Message:\n", "rpcport": 49122, "pubtype": 32, "p2shtype": 30, @@ -3867,7 +4289,7 @@ "segwit": false, "mm2": 1, "mature_confirmations": 75, - "required_confirmations": 7, + "required_confirmations": 4, "avg_blocktime": 75, "protocol": { "type": "UTXO" @@ -3889,7 +4311,7 @@ "contract_address": "0xA33789a5478Add74e8D7628E817a281aAbD92dA9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "DIMI-QRC20", @@ -3900,7 +4322,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -3915,6 +4337,33 @@ }, "derivation_path": "m/44'/2301'" }, + { + "coin": "DODO-ARB20", + "name": "dodo_arb20", + "fname": "DODO", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "DODO-BEP20", "name": "dodo_bep20", @@ -3931,7 +4380,15 @@ "contract_address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "DODO-ERC20", @@ -3969,7 +4426,7 @@ "contract_address": "0x8724F9FB7B3f1bb6f2c90B3Ad3Fd6B3c20A06429" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "DOGE", @@ -4012,7 +4469,7 @@ "contract_address": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "DOGEC", @@ -4053,7 +4510,7 @@ "contract_address": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "DOGGY-BEP20", @@ -4071,7 +4528,7 @@ "contract_address": "0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "DOT-BEP20", @@ -4089,7 +4546,15 @@ "contract_address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "DOT-HCO20", @@ -4097,6 +4562,7 @@ "fname": "Polkadot", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -4108,7 +4574,7 @@ "contract_address": "0xA2c49cEe16a5E5bDEFDe931107dc1fae9f7773E3" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "DP", @@ -4132,6 +4598,7 @@ "coin": "DOI", "name": "doichain", "fname": "Doichain", + "sign_message_prefix": "Doichain Signed Message:\n", "rpcport": 8339, "pubtype": 52, "p2shtype": 13, @@ -4143,47 +4610,10 @@ "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'" + "derivation_path": "m/44'/7070'" }, { "coin": "EFL", @@ -4220,7 +4650,15 @@ "contract_address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "EILN-ERC20", @@ -4257,7 +4695,15 @@ "contract_address": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ELF-ERC20", @@ -4295,8 +4741,7 @@ "txfee": 100000, "dust": 54600, "mm2": 1, - "required_confirmations": 2, - "requires_notarization": true, + "required_confirmations": 5, "avg_blocktime": 60, "protocol": { "type": "UTXO" @@ -4344,7 +4789,7 @@ "contract_address": "0x6e2D990C8e718E7b6D86ed08eBf0FF2dEc05253B" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "ENJ-PLG20", @@ -4363,7 +4808,7 @@ "contract_address": "0x7eC26842F195c852Fa843bB9f6D8B583a274a157" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "EOS-BEP20", @@ -4381,7 +4826,15 @@ "contract_address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ETC", @@ -4390,12 +4843,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 61, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 15, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/61'", + "derivation_path": "m/44'/60'", "trezor_coin": "Ethereum Classic", "links": { "homepage": "https://ethereumclassic.org" @@ -4417,7 +4872,7 @@ "contract_address": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "ETH", @@ -4451,7 +4906,7 @@ "contract_address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "ETH-ARB20", @@ -4460,10 +4915,19 @@ "rpcport": 80, "mm2": 1, "chain_id": 42161, - "required_confirmations": 3, - "avg_blocktime": 15, + "required_confirmations": 10, + "avg_blocktime": 0.25, "protocol": { "type": "ETH" + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_coins": 300000, + "eth_payment": 700000, + "eth_receiver_spend": 600000, + "eth_sender_refund": 600000 } }, { @@ -4482,7 +4946,15 @@ "contract_address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ETH-FTM20", @@ -4490,6 +4962,7 @@ "fname": "Ethereum", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -4501,7 +4974,7 @@ "contract_address": "0x74b23882a30290451A17c44f4F05243b6b58C76d" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "ETH-HCO20", @@ -4509,6 +4982,7 @@ "fname": "Ethereum", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -4520,7 +4994,7 @@ "contract_address": "0x64FF637fB478863B7468bc97D30a5bF3A428a1fD" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "ETH-KRC20", @@ -4539,7 +5013,7 @@ "contract_address": "0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "ETH-PLG20", @@ -4558,7 +5032,15 @@ "contract_address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "EURE-ERC20", @@ -4596,7 +5078,15 @@ "contract_address": "0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 90000, + "erc20_payment": 150000, + "erc20_receiver_spend": 120000, + "erc20_sender_refund": 120000 + } }, { "coin": "EUROE-ERC20", @@ -4634,7 +5124,15 @@ "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "EURS-ERC20", @@ -4677,7 +5175,15 @@ "contract_address": "0xE111178A87A3BFf0c8d18DECBa5798827539Ae99" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "EWT", @@ -4686,12 +5192,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 246, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 5, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/246'", + "derivation_path": "m/44'/60'", "trezor_coin": "Energy Web", "links": { "homepage": "https://www.energyweb.org" @@ -4714,7 +5222,59 @@ "contract_address": "0xc88f6F4C400321FAd5c26d574f9933a991011360" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" + }, + { + "coin": "FDUSD-ERC20", + "name": "fdusd_erc20", + "fname": "First Digital 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": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://firstdigitallabs.com" + } + }, + { + "coin": "FDUSD-BEP20", + "name": "fdusd_bep20", + "fname": "First Digital USD", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://firstdigitallabs.com" + }, + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 70000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "FEI-ERC20", @@ -4771,7 +5331,7 @@ "contract_address": "0x031b41e504677879370e9DBcF937283A8691Fa7f" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "FET-PLG20", @@ -4790,7 +5350,7 @@ "contract_address": "0x7583FEDDbceFA813dc18259940F76a02710A8905" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "FIL-BEP20", @@ -4808,7 +5368,15 @@ "contract_address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "FIL-ERC20", @@ -4835,6 +5403,7 @@ "fname": "Filecoin", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -4846,7 +5415,7 @@ "contract_address": "0xae3a768f9aB104c69A7CD6041fE16fFa235d1810" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "FIRO", @@ -4864,6 +5433,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/136'", "trezor_coin": "Firo", "links": { "github": "https://github.com/firoorg/firo", @@ -4886,7 +5456,15 @@ "contract_address": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "FJC", @@ -4959,7 +5537,7 @@ "contract_address": "0xd4451a8eE7D0978c60651a114b742Fa8d5857CDf" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "FJCB-BEP20", @@ -4977,7 +5555,7 @@ "contract_address": "0xda73AE86D38D9b5D22C64722320cCC071cB79ba3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "FLOKI-BEP20", @@ -4995,7 +5573,15 @@ "contract_address": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 85000, + "erc20_payment": 140000, + "erc20_receiver_spend": 110000, + "erc20_sender_refund": 110000 + } }, { "coin": "STFIRO-ERC20", @@ -5053,7 +5639,15 @@ "contract_address": "0xC943c5320B9c18C153d1e2d12cC3074bebfb31A2" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "FTC", @@ -5122,7 +5716,8 @@ "avg_blocktime": 15, "protocol": { "type": "ETH" - } + }, + "derivation_path": "m/44'/60'" }, { "coin": "FTM", @@ -5131,12 +5726,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 250, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 1.8, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "trezor_coin": "Fantom Opera", "links": { "homepage": "https://fantom.foundation" @@ -5158,7 +5755,7 @@ "contract_address": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "FTM-ERC20", @@ -5200,7 +5797,15 @@ "contract_address": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "FXS-ERC20", @@ -5238,7 +5843,15 @@ "contract_address": "0x1a3acf6D19267E2d3e7f898f42803e90C9219062" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "FXS-AVX20", @@ -5257,7 +5870,7 @@ "contract_address": "0x214DB107654fF987AD859F34125307783fC8e387" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "FXS-MVR20", @@ -5276,7 +5889,13 @@ "contract_address": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'", + "gas_limit": { + "eth_send_erc20": 1000000, + "erc20_payment": 1000000, + "erc20_receiver_spend": 1000000, + "erc20_sender_refund": 1000000 + } }, { "coin": "FXS-FTM20", @@ -5295,7 +5914,7 @@ "contract_address": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "GALA-ERC20", @@ -5334,7 +5953,7 @@ } }, "wallet_only": true, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "GAME-ERC20", @@ -5372,7 +5991,15 @@ "contract_address": "0x8d1566569d5b695d44a9a234540f68D393cDC40D" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "GBX", @@ -5415,7 +6042,7 @@ "contract_address": "0x8E10F08C9A56a93B6adbfBcFda421919B3357596" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "GFT-BEP20", @@ -5434,7 +6061,15 @@ "contract_address": "0x72fF5742319eF07061836F5C924aC6D72c919080" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "GLC", @@ -5454,22 +6089,41 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/101'", "links": { "github": "https://github.com/goldcoin/goldcoin", "homepage": "https://www.goldcoinproject.org" } }, { + "coin": "GLEEC-OLD", + "sign_message_prefix": "Komodo Signed Message:\n", + "asset": "GLEEC", + "fname": "Gleec (OLD)", + "rpcport": 23226, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo" + }, + { "coin": "GLEEC", "sign_message_prefix": "Komodo Signed Message:\n", "asset": "GLEEC", "fname": "Gleec", - "rpcport": 23226, + "rpcport": 23345, "txversion": 4, "overwintered": 1, "mm2": 1, - "required_confirmations": 2, - "requires_notarization": true, + "required_confirmations": 4, + "requires_notarization": false, "avg_blocktime": 60, "protocol": { "type": "UTXO" @@ -5513,7 +6167,15 @@ "contract_address": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "GM-BEP20", @@ -5531,7 +6193,7 @@ "contract_address": "0xA55C1e67039B6d59E91eb4cDa2bfc5A854989102" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "GMT-BEP20", @@ -5550,7 +6212,7 @@ "contract_address": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "GMT-PLG20", @@ -5569,7 +6231,42 @@ "contract_address": "0x714DB550b574b3E927af3D93E26127D15721D4C2" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "coin": "GMX-ARB20", + "name": "gmx_arb20", + "fname": "GMX", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } }, { "coin": "GMX-AVX20", @@ -5588,7 +6285,15 @@ "contract_address": "0x62edc0692BD897D2295872a9FFCac5425011c661" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "GNO-ERC20", @@ -5630,7 +6335,34 @@ "contract_address": "0x5FFD62D3C3eE2E81C00A7b9079FB248e7dF024A8" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" + }, + { + "coin": "GNS-ARB20", + "name": "gns_arb20", + "fname": "Gains Network", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x18c11FD286C5EC11c3b683Caa813B77f5163A122" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } }, { "coin": "GNS-PLG20", @@ -5649,7 +6381,15 @@ "contract_address": "0xE5417Af564e4bFDA1c483642db72007871397896" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "GRLC", @@ -5708,7 +6448,7 @@ "contract_address": "0x7283DfA2d8D7e277b148cc263B5d8Ae02f1076D3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "GRS", @@ -5736,6 +6476,33 @@ "homepage": "https://www.groestlcoin.org" } }, + { + "coin": "GRT-ARB20", + "name": "grt_arb20", + "fname": "The Graph", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x9623063377AD1B27544C965cCd7342f7EA7e88C7" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "GRT-AVX20", "name": "grt_avx20", @@ -5753,7 +6520,7 @@ "contract_address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "GRT-ERC20", @@ -5796,7 +6563,7 @@ "contract_address": "0xb49dd3eDB98FBe82A01DFcb556Cd016964baf5A3" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "GRT-PLG20", @@ -5815,7 +6582,15 @@ "contract_address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "GST-BEP20", @@ -5834,7 +6609,7 @@ "contract_address": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "GT-ERC20", @@ -5855,6 +6630,28 @@ }, "derivation_path": "m/44'/60'" }, + { + "coin": "GURU-BEP20", + "name": "guru_bep20", + "fname": "MobilityGuru", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xc166A8dd8e48355774ac95933f746b57A724A464" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://mobilityguru.org" + } + }, { "coin": "GUSD-ERC20", "name": "gusd_erc20", @@ -5915,7 +6712,15 @@ "contract_address": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "HOT-ERC20", @@ -5953,7 +6758,7 @@ "contract_address": "0x0C51f415cF478f8D08c246a6C6Ee180C5dC3A012" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "HT", @@ -5967,7 +6772,7 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1010'", + "derivation_path": "m/44'/60'", "trezor_coin": "Huobi ECO Chain", "links": { "homepage": "https://www.hecochain.com" @@ -6001,6 +6806,7 @@ "fname": "HUSD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1, "decimals": 8, "avg_blocktime": 15, @@ -6020,6 +6826,7 @@ "fname": "HUSD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 8, "avg_blocktime": 3, @@ -6031,7 +6838,7 @@ "contract_address": "0x0298c2b32eaE4da002a15f36fdf7615BEa3DA047" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "HUSD-KRC20", @@ -6039,6 +6846,7 @@ "fname": "HUSD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 321, "decimals": 18, "avg_blocktime": 3, @@ -6050,7 +6858,7 @@ "contract_address": "0xBEc1e1009CE00ECf7F16372451Ac849b39C32897" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "HUSD-PLG20", @@ -6058,6 +6866,7 @@ "fname": "HUSD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 137, "decimals": 8, "avg_blocktime": 1.8, @@ -6069,12 +6878,78 @@ "contract_address": "0x2088C47Fc0c78356c622F79dBa4CbE1cCfA84A91" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" + }, + { + "coin": "IDRT-ERC20", + "name": "idrt_erc20", + "fname": "Rupiah Token", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 2, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "IDRT-BEP20", + "name": "idrt_bep20", + "fname": "Rupiah Token", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 2, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x66207E39bb77e6B99aaB56795C7c340C08520d83" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "IDRT-PLG20", + "name": "idrt_plg20", + "fname": "Rupiah Token", + "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": "0x554cd6bdD03214b10AafA3e0D4D42De0C5D2937b" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "IL8P", "name": "infiniloop", "fname": "InfiniLooP", + "sign_message_prefix": "InfiniLooP Signed Message:\n", "isPoS": 1, "rpcport": 9459, "pubtype": 33, @@ -6088,6 +6963,11 @@ "avg_blocktime": 45, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/722'", + "links": { + "github": "https://github.com/WikiMin3R/InfiniLooP", + "homepage": "https://infiniloop.io" } }, { @@ -6128,7 +7008,7 @@ "contract_address": "0xb49a312677BA1E80DDe23C17E46E80B3E86b533d" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "ILN-PLG20", @@ -6147,7 +7027,7 @@ "contract_address": "0x2bAa79e7C13C302210436455925E68aD8fA687F0" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "ILNSW-PLG20", @@ -6166,7 +7046,7 @@ "contract_address": "0x0483Ddbb510d22b206f2F3bDAC18528C952c4213" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "ILV-ERC20", @@ -6204,7 +7084,15 @@ "contract_address": "0x4d5AC5cc4f8aBdf2EC2Cb986C00C382369f787D4" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "IMX-ERC20", @@ -6241,7 +7129,15 @@ "contract_address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "INJ-ERC20", @@ -6277,7 +7173,15 @@ "contract_address": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "IOTX-BEP20", @@ -6295,7 +7199,15 @@ "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "IOTX-PLG20", @@ -6314,25 +7226,71 @@ "contract_address": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { - "coin": "JDB-BEP20", - "name": "jdb_bep20", - "fname": "Jeet Detector Bot", + "coin": "JASMY-ERC20", + "name": "jasmy_erc20", + "fname": "JasmyCoin", "rpcport": 80, "mm2": 1, - "chain_id": 56, - "avg_blocktime": 3, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, "required_confirmations": 3, "protocol": { "type": "ERC20", "protocol_data": { - "platform": "BNB", - "contract_address": "0x7874CAFf04AFB8B6f5cbBE3ebec3f83Fcd882272" + "platform": "ETH", + "contract_address": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" + }, + { + "coin": "JASMY-BEP20", + "name": "jasmy_bep20", + "fname": "JasmyCoin", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x15669CF161946C09a8B207650BfBB00e3d8A2E3E" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "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'/60'" }, { "coin": "JAUD-PLG20", @@ -6351,7 +7309,15 @@ "contract_address": "0xCB7F1Ef7246D1497b985f7FC45A1A31F04346133" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JBRL-BEP20", @@ -6370,7 +7336,7 @@ "contract_address": "0x316622977073BBC3dF32E7d2A9B3c77596a0a603" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "JBRL-PLG20", @@ -6389,7 +7355,15 @@ "contract_address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JCAD-PLG20", @@ -6408,7 +7382,15 @@ "contract_address": "0x8ca194A3b22077359b5732DE53373D4afC11DeE3" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JCHF-AVX20", @@ -6427,7 +7409,7 @@ "contract_address": "0x2d5563da42b06FbBF9c67b7DC073cF6A7842239e" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "JCHF-BEP20", @@ -6446,7 +7428,7 @@ "contract_address": "0x7c869b5A294b1314E985283d01C702B62224a05f" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "JCHF-ERC20", @@ -6484,7 +7466,15 @@ "contract_address": "0xbD1463F02f61676d53fd183C2B19282BFF93D099" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JCNY-PLG20", @@ -6503,7 +7493,15 @@ "contract_address": "0x84526c812D8f6c4fD6C1a5B68713AFF50733E772" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JEUR-AVX20", @@ -6522,7 +7520,7 @@ "contract_address": "0x9fB1d52596c44603198fB0aee434fac3a679f702" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "JEUR-BEP20", @@ -6541,7 +7539,7 @@ "contract_address": "0x23b8683Ff98F9E4781552DFE6f12Aa32814924e8" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "JEUR-ERC20", @@ -6579,7 +7577,15 @@ "contract_address": "0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JGBP-BEP20", @@ -6598,7 +7604,7 @@ "contract_address": "0x048E9b1ddF9EBbb224812372280e94Ccac443f9e" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "JGBP-ERC20", @@ -6636,7 +7642,15 @@ "contract_address": "0x767058F11800FBA6A682E73A6e79ec5eB74Fac8c" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JGOLD-PLG20", @@ -6655,7 +7669,7 @@ "contract_address": "0x192Ef3FFF1708456D3A1F21354FA8d6bFd86b45c" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JJPY-PLG20", @@ -6674,7 +7688,15 @@ "contract_address": "0x8343091F2499FD4b6174A46D067A920a3b851FF9" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JKRW-PLG20", @@ -6693,7 +7715,7 @@ "contract_address": "0xa22f6bc96f13bcC84dF36109c973d3c0505a067E" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JMXN-PLG20", @@ -6712,7 +7734,15 @@ "contract_address": "0xBD1fe73e1f12bD2bc237De9b626F056f21f86427" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JNZD-PLG20", @@ -6731,7 +7761,15 @@ "contract_address": "0x6b526Daf03B4C47AF2bcc5860B12151823Ff70E0" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JPHP-PLG20", @@ -6750,7 +7788,7 @@ "contract_address": "0x486880FB16408b47f928F472f57beC55AC6089d1" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JPLN-PLG20", @@ -6769,7 +7807,7 @@ "contract_address": "0x08E6d1F0c4877Ef2993Ad733Fc6F1D022d0E9DBf" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JPYC-AVX20", @@ -6788,7 +7826,7 @@ "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "JPYC-PLG20", @@ -6807,7 +7845,15 @@ "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JRT-ERC20", @@ -6844,7 +7890,7 @@ "contract_address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JSEK-PLG20", @@ -6863,7 +7909,7 @@ "contract_address": "0x197E5d6CcfF265AC3E303a34Db360ee1429f5d1A" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JSGD-PLG20", @@ -6882,7 +7928,15 @@ "contract_address": "0xa926db7a4CC0cb1736D5ac60495ca8Eb7214B503" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "JTRY-PLG20", @@ -6901,7 +7955,7 @@ "contract_address": "0x2A227fc77Bb2cf8f1881a04eCC8fA01EC57EC9fc" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JUSD-PLG20", @@ -6920,7 +7974,7 @@ "contract_address": "0xc948EE9a0687C292ac4d8C1e2557aD652D6baf44" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "JST-BEP20", @@ -6939,7 +7993,15 @@ "contract_address": "0xeA998D307ACA04D4f0A3B3036Aba84AE2E409C0A" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "KCS", @@ -6948,71 +8010,19 @@ "rpcport": 80, "mm2": 1, "chain_id": 321, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 3, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "trezor_coin": "KCC", "links": { "homepage": "https://kcc.io" } }, - { - "coin": "KIP0002", - "sign_message_prefix": "Komodo Signed Message:\n", - "asset": "KIP0002", - "fname": "KIP0002", - "rpcport": 46856, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 2, - "avg_blocktime": 60, - "wallet_only": true, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo" - }, - { - "coin": "KIP0003", - "sign_message_prefix": "Komodo Signed Message:\n", - "asset": "KIP0003", - "fname": "KIP0003", - "rpcport": 46866, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 2, - "avg_blocktime": 60, - "wallet_only": true, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo" - }, - { - "coin": "KIP0004", - "sign_message_prefix": "Komodo Signed Message:\n", - "asset": "KIP0004", - "fname": "KIP0004", - "rpcport": 46876, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 2, - "avg_blocktime": 60, - "wallet_only": true, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo" - }, { "coin": "KMD", "name": "komodo", @@ -7055,7 +8065,15 @@ "contract_address": "0x2003f7ba57Ea956B05B85C60B4B2Ceea9b111256" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "KNC-BEP20", @@ -7073,7 +8091,7 @@ "contract_address": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "KNC-ERC20", @@ -7115,7 +8133,15 @@ "contract_address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "KNC-AVX20", @@ -7134,7 +8160,7 @@ "contract_address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "KOIN", @@ -7171,24 +8197,15 @@ "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" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "LBC", @@ -7322,24 +8339,32 @@ "contract_address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { - "coin": "LNC", - "name": "lightningcash", - "fname": "LightningCash", - "rpcport": 9110, - "pubtype": 28, - "p2shtype": 50, - "wiftype": 176, + "coin": "FRC", + "name": "faircoin", + "fname": "FairCoin", + "rpcport": 9875, + "pubtype": 36, + "p2shtype": 63, + "wiftype": 128, "decimals": 8, "signature_version": "base", "txfee": 10000, "segwit": true, - "bech32_hrp": "lnc", + "bech32_hrp": "frc", "mm2": 1, "required_confirmations": 6, - "avg_blocktime": 5, + "avg_blocktime": 150, "protocol": { "type": "UTXO" } @@ -7384,7 +8409,7 @@ "contract_address": "0x06D02e9D62A13fC76BB229373FB3BBBD1101D2fC" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "LINK-ERC20", @@ -7421,7 +8446,7 @@ "contract_address": "0x5947BB275c521040051D82396192181b413227A3" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "LINK-BEP20", @@ -7439,7 +8464,7 @@ "contract_address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "LINK-FTM20", @@ -7447,6 +8472,7 @@ "fname": "Chainlink", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -7458,7 +8484,7 @@ "contract_address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "LINK-HCO20", @@ -7466,6 +8492,7 @@ "fname": "Chainlink", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -7477,7 +8504,7 @@ "contract_address": "0x9e004545c59D359F6B7BFB06a26390b087717b42" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "LINK-KRC20", @@ -7496,7 +8523,7 @@ "contract_address": "0x47841910329aaa6b88D5e9DcdE9000195151dc72" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "LINK-PLG20", @@ -7515,7 +8542,37 @@ "contract_address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "coin": "LOLS-BEP20", + "name": "lols_bep20", + "fname": "LOLSmash", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x19961cf3B822d37e16E310AB7C6C0277F95f31c3" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://lolsmash.net" + } }, { "coin": "LOOP-BEP20", @@ -7534,7 +8591,7 @@ "contract_address": "0xcE186ad6430E2Fe494a22C9eDbD4c68794a28B35" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "LRC-ERC20", @@ -7577,7 +8634,15 @@ "contract_address": "0x66e4d38b20173F509A1fF5d82866949e4fE898da" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "LRC-PLG20", @@ -7596,50 +8661,7 @@ "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": false, - "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'" + "derivation_path": "m/44'/60'" }, { "coin": "LEASH-ERC20", @@ -7700,7 +8722,15 @@ "contract_address": "0xE6Ce27025F13f5213bBc560dC275e292965a392F" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "LSWAP-BEP20", @@ -7719,7 +8749,7 @@ "contract_address": "0x3F8a14f5a3Ee2F4A3Ed61cCF5EEA3c9535C090C8" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "LTC", @@ -7839,7 +8869,7 @@ "contract_address": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MANA-KRC20", @@ -7858,7 +8888,7 @@ "contract_address": "0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "MANA-PLG20", @@ -7877,7 +8907,15 @@ "contract_address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "MASK-BEP20", @@ -7896,7 +8934,7 @@ "contract_address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MASK-ERC20", @@ -7934,7 +8972,15 @@ "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "MATICTEST", @@ -7948,7 +8994,8 @@ "required_confirmations": 3, "protocol": { "type": "ETH" - } + }, + "derivation_path": "m/44'/60'" }, { "coin": "MATIC", @@ -7957,12 +9004,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 137, + "use_access_list": true, + "max_eth_tx_type": 2, "avg_blocktime": 1.8, "required_confirmations": 20, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "trezor_coin": "Polygon", "links": { "homepage": "https://polygon.technology/" @@ -7984,7 +9033,15 @@ "contract_address": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "MATIC-ERC20", @@ -8015,6 +9072,7 @@ "fname": "Polygon", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -8026,7 +9084,7 @@ "contract_address": "0xdB11743fe8B129b49b11236E8a715004BDabe7e5" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "MATIC-KRC20", @@ -8045,7 +9103,7 @@ "contract_address": "0x1B8e27ABA297466fc6765Ce55BD12A8E216759da" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "MC-ERC20", @@ -8053,6 +9111,7 @@ "fname": "Merit Circle", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1, "decimals": 18, "avg_blocktime": 15, @@ -8072,6 +9131,7 @@ "fname": "Merit Circle", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 56, "decimals": 18, "avg_blocktime": 3, @@ -8083,7 +9143,7 @@ "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MCL", @@ -8103,6 +9163,27 @@ "derivation_path": "m/44'/141'", "trezor_coin": "Komodo" }, + { + "coin": "MDX", + "sign_message_prefix": "Komodo Signed Message:\n", + "asset": "MDX", + "fname": "Mandala", + "rpcport": 18482, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "links": { + "homepage": "https://mandala.exchange" + } + }, { "coin": "MINDS-ERC20", "name": "minds_erc20", @@ -8126,25 +9207,6 @@ "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": "MINU-BEP20", "name": "minu_bep20", @@ -8163,7 +9225,7 @@ "contract_address": "0xf48f91df403976060cC05dBbf8A0901b09fdeFd4" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MIR-ERC20", @@ -8201,7 +9263,7 @@ "contract_address": "0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MKR-AVX20", @@ -8220,7 +9282,7 @@ "contract_address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "MKR-BEP20", @@ -8238,7 +9300,7 @@ "contract_address": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MKR-ERC20", @@ -8281,7 +9343,7 @@ "contract_address": "0xdE81028C743f5304fe2cdEfac588f572d629a687" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "MKR-PLG20", @@ -8300,7 +9362,15 @@ "contract_address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "MM-ERC20", @@ -8341,7 +9411,7 @@ "contract_address": "0x993163CaD35162fB579D7B64e6695cB076EF5064" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "MM-BEP20", @@ -8360,7 +9430,7 @@ "contract_address": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MM-MVR20", @@ -8368,6 +9438,7 @@ "fname": "Million", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1285, "avg_blocktime": 15, "decimals": 18, @@ -8379,7 +9450,7 @@ "contract_address": "0x95bf7E307BC1ab0BA38ae10fc27084bC36FcD605" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'" }, { "coin": "MM-PLG20", @@ -8398,7 +9469,7 @@ "contract_address": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "MONA", @@ -8457,6 +9528,52 @@ "homepage": "https://monacoin.org" } }, + { + "coin": "MOR-ERC20", + "name": "mor_erc20", + "fname": "Morpheus", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "MOR-ARB20", + "name": "mor_arb20", + "fname": "Morpheus", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x092bAaDB7DEf4C3981454dD9c0A0D7FF07bCFc86" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "MOVR", "name": "moonriver", @@ -8469,10 +9586,17 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "trezor_coin": "Moonriver", "links": { "homepage": "https://moonbeam.network/networks/moonriver/" + }, + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_payment": 100000, + "eth_receiver_spend": 500000, + "eth_sender_refund": 500000 } }, { @@ -8482,12 +9606,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 1284, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 15, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1284'", + "derivation_path": "m/44'/60'", "trezor_coin": "Moonbeam", "links": { "homepage": "https://moonbeam.network/networks/moonbeam/" @@ -8531,7 +9657,7 @@ "contract_address": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "NEAR-BEP20", @@ -8549,7 +9675,15 @@ "contract_address": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "NENG", @@ -8585,7 +9719,7 @@ "contract_address": "0xaD2c0B5ee5424C6b6f9C06E4fEF3FD7CD9FF0264" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "NEXO-ERC20", @@ -8627,7 +9761,7 @@ "contract_address": "0xb7A18bd55e8E3E2262d7c8Ee7b4DD9B216Df0Faf" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "NEXO-PLG20", @@ -8646,7 +9780,15 @@ "contract_address": "0x41b3966B4FF7b427969ddf5da3627d6AEAE9a48E" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "NINJA", @@ -8758,7 +9900,15 @@ "contract_address": "0xBF84720097de111A80f46f9D077643967042841A" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "NVC-QRC20", @@ -8769,7 +9919,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -8820,24 +9970,29 @@ "contract_address": "0xeaFE31Cd9e8E01C8f0073A2C974f728Fb80e9DcE" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { - "coin": "NYAN", - "name": "nyancoin", - "fname": "Nyancoin", - "rpcport": 33700, - "pubtype": 45, - "p2shtype": 5, - "wiftype": 173, - "txfee": 100000, + "coin": "NYC", + "name": "newyorkcoin", + "fname": "NewYorkCoin", + "sign_message_prefix": "NewYorkCoin Signed Message:\n", + "rpcport": 22555, + "pubtype": 60, + "p2shtype": 22, + "wiftype": 188, "segwit": false, - "bech32_hrp": "ny", + "txfee": 100000000, "mm2": 1, - "required_confirmations": 10, - "avg_blocktime": 60, + "required_confirmations": 7, + "avg_blocktime": 30, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/179'", + "links": { + "github": "https://github.com/NewYorkCoinNYC/newyorkcoin", + "homepage": "https://newyorkcoin.online" } }, { @@ -8857,7 +10012,7 @@ "contract_address": "0x6c015277B0f9b8c24B20BD8BbbD29FDb25738A69" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "OCEAN-BEP20", @@ -8865,6 +10020,7 @@ "fname": "Ocean Protocol", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 56, "avg_blocktime": 3, "required_confirmations": 3, @@ -8875,7 +10031,7 @@ "contract_address": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "OCEAN-ERC20", @@ -8883,6 +10039,7 @@ "fname": "Ocean Protocol", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1, "avg_blocktime": 15, "required_confirmations": 3, @@ -8906,6 +10063,7 @@ "fname": "Ocean Protocol", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 137, "decimals": 18, "avg_blocktime": 1.8, @@ -8917,7 +10075,80 @@ "contract_address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" + }, + { + "coin": "OM-ERC20", + "name": "om_erc20", + "fname": "MANTRA", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "OM-BEP20", + "name": "om_bep20", + "fname": "MANTRA", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "coin": "OM-PLG20", + "name": "om_plg20", + "fname": "MANTRA", + "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": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "OMG-ERC20", @@ -8960,7 +10191,7 @@ "contract_address": "0x62414D03084EeB269E18C970a21f45D2967F0170" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "ONE", @@ -8969,12 +10200,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 1666600000, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 15, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "ONT-BEP20", @@ -8992,7 +10225,15 @@ "contract_address": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "PAX-ERC20", @@ -9033,7 +10274,7 @@ "contract_address": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "PAX-KRC20", @@ -9052,7 +10293,7 @@ "contract_address": "0x69a7169F9Da9BBa04b982e49Ffd8d6a16c70c590" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "PAX-PLG20", @@ -9071,7 +10312,7 @@ "contract_address": "0x6F3B3286fd86d8b47EC737CEB3D0D354cc657B3e" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "PAXG-BEP20", @@ -9089,7 +10330,7 @@ "contract_address": "0x7950865a9140cB519342433146Ed5b40c6F210f7" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "PAXG-ERC20", @@ -9133,7 +10374,175 @@ "contract_address": "0x553d3D295e0f695B9228246232eDF400ed3560B5" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "coin": "PEP", + "name": "pepecoin", + "fname": "Pepecoin", + "rpcport": 33873, + "pubtype": 56, + "p2shtype": 22, + "wiftype": 158, + "segwit": false, + "txfee": 1000000, + "mm2": 1, + "sign_message_prefix": "Pepecoin Signed Message:\n", + "required_confirmations": 5, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/3434'", + "links": { + "github": "https://github.com/pepecoinppc/pepecoin", + "homepage": "https://pepecoin.org" + } + }, + { + "coin": "PENDLE-ARB20", + "name": "pendle_arb20", + "fname": "Pendle", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, + { + "coin": "PENDLE-ERC20", + "name": "pendle_erc20", + "fname": "Pendle", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x808507121B80c02388fAd14726482e061B8da827" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "PENDLE-BEP20", + "name": "pendle_bep20", + "fname": "Pendle", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xb3Ed0A426155B79B898849803E3B36552f7ED507" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "PEPE-ERC20", + "name": "pepe_erc20", + "fname": "Pepe", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://www.pepe.vip" + } + }, + { + "coin": "PEPE-BEP20", + "name": "pepe_bep20", + "fname": "Pepe", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x25d887Ce7a35172C62FeBFD67a1856F20FaEbB00" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://www.pepe.vip" + } + }, + { + "coin": "PEPE-ARB20", + "name": "pepe_arb20", + "fname": "Pepe", + "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": "0x25d887Ce7a35172C62FeBFD67a1856F20FaEbB00" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://www.pepe.vip" + }, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } }, { "coin": "PINK", @@ -9163,6 +10572,7 @@ "coin": "PIVX", "name": "pivx", "fname": "PIVX", + "sign_message_prefix": "DarkNet Signed Message:\n", "rpcport": 51473, "pubtype": 30, "p2shtype": 13, @@ -9258,7 +10668,15 @@ "contract_address": "0xd7c8469c7eC40f853dA5f651DE81b45aeD47e5aB" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "POWR-ERC20", @@ -9300,7 +10718,7 @@ "contract_address": "0x0AaB8DC887D34f00D50E19aee48371a941390d14" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "PPC", @@ -9365,7 +10783,7 @@ "contract_address": "0x91E7E32C710661C44ae44D10Aa86135d91C3Ed65" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "PRCY", @@ -9400,7 +10818,7 @@ "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "PRCY-ERC20", @@ -9438,25 +10856,7 @@ "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" - } + "derivation_path": "m/44'/60'" }, { "coin": "PYR-ERC20", @@ -9494,7 +10894,15 @@ "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "SHIB-BEP20", @@ -9512,7 +10920,7 @@ "contract_address": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SHIB-ERC20", @@ -9553,7 +10961,7 @@ "contract_address": "0x73b6086955c820370A18002F60E9b51FB67d7e1A" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "SHIB-PLG20", @@ -9572,7 +10980,15 @@ "contract_address": "0x6f8a06447Ff6FcF75d803135a7de15CE88C1d4ec" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "QC-QRC20", @@ -9583,7 +10999,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -9607,7 +11023,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -9631,7 +11047,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -9662,7 +11078,15 @@ "contract_address": "0xA1434F1FC3F437fa33F7a781E041961C0205B5Da" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "QKC-ERC20", @@ -9727,7 +11151,7 @@ "contract_address": "0x791630C11c7159A748d8c2267a66780B3DDC40a7" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "QRC20", @@ -9760,7 +11184,7 @@ "wiftype": 128, "segwit": true, "bech32_hrp": "qc", - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "sign_message_prefix": "Qtum Signed Message:\n", @@ -9821,10 +11245,29 @@ "type": "QTUM" } }, + { + "coin": "RAPH", + "sign_message_prefix": "Komodo Signed Message:\n", + "asset": "RAPH", + "fname": "Raphael", + "rpcport": 30261, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo" + }, { "coin": "RDD", "name": "reddcoin", "fname": "ReddCoin", + "sign_message_prefix": "Reddcoin Signed Message:\n", "isPoSV": 1, "rpcport": 45443, "pubtype": 61, @@ -9879,6 +11322,7 @@ "fname": "Ren", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -9890,7 +11334,7 @@ "contract_address": "0x212208bcc81F3a2D0188afF76A2d39351eb53b96" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "REP-ERC20", @@ -9950,12 +11394,21 @@ "contract_address": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "RIC", "name": "riecoin", "fname": "Riecoin", + "sign_message_prefix": "Riecoin Signed Message:\n", "rpcport": 28332, "pubtype": 60, "p2shtype": 65, @@ -9976,6 +11429,7 @@ "coin": "RIC-segwit", "name": "riecoin", "fname": "Riecoin", + "sign_message_prefix": "Riecoin Signed Message:\n", "rpcport": 28332, "pubtype": 60, "p2shtype": 65, @@ -10012,7 +11466,7 @@ "contract_address": "0xc2097531d6Cd4A712AE08f398283a92631DC39F9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "DOC", @@ -10092,7 +11546,7 @@ "contract_address": "0xbe662058e00849C3Eef2AC9664f37fEfdF2cdbFE" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "RNDR-ERC20", @@ -10130,7 +11584,15 @@ "contract_address": "0x61299774020dA444Af134c82fa83E3810b309991" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "RPL-ERC20", @@ -10175,27 +11637,6 @@ "homepage": "https://reserve.org" } }, - { - "coin": "RTB", - "sign_message_prefix": "Komodo Signed Message:\n", - "asset": "RTB", - "fname": "RideTheBullCoin", - "rpcport": 29403, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 5, - "avg_blocktime": 60, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo", - "links": { - "github": "https://github.com/RTBCoin", - "homepage": "https://ridethebullcoin.com" - } - }, { "coin": "RTM", "name": "raptoreum", @@ -10214,6 +11655,24 @@ }, "derivation_path": "m/44'/10226'" }, + { + "coin": "GRR", + "name": "ghostridercoin", + "fname": "Ghostridercoin", + "rpcport": 15420, + "pubtype": 38, + "p2shtype": 16, + "wiftype": 128, + "txfee": 1000, + "mm2": 1, + "confpath": "USERHOME/.grcoincore/grcoin.conf", + "required_confirmations": 3, + "avg_blocktime": 120, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/10226'" + }, { "coin": "RTM-BEP20", "name": "rtm_bep20", @@ -10231,7 +11690,7 @@ "contract_address": "0xF7C71cab11E3694638Bb9A106E0F430565BD15F1" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "RVN", @@ -10243,8 +11702,7 @@ "p2shtype": 122, "wiftype": 128, "segwit": true, - "txfee": 1000000, - "dust": 1000000, + "txfee": 1100000, "mm2": 1, "required_confirmations": 3, "avg_blocktime": 60, @@ -10294,7 +11752,7 @@ "contract_address": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SAND-PLG20", @@ -10313,7 +11771,15 @@ "contract_address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SCRT-BEP20", @@ -10332,7 +11798,15 @@ "contract_address": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SIGNA-BEP20", @@ -10351,7 +11825,15 @@ "contract_address": "0x7b0E7E40eE4672599F7095D1DdD730b0805195BA" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SNX-AVX20", @@ -10370,7 +11852,7 @@ "contract_address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "SNX-BEP20", @@ -10388,7 +11870,7 @@ "contract_address": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SNX-ERC20", @@ -10420,6 +11902,7 @@ "fname": "Synthetix", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -10431,7 +11914,7 @@ "contract_address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "SNX-KRC20", @@ -10450,7 +11933,7 @@ "contract_address": "0x31965b5c9c55f5579eb49F4b3AcC59aA10a7B98E" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "SNX-PLG20", @@ -10469,7 +11952,15 @@ "contract_address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SOL-BEP20", @@ -10488,7 +11979,7 @@ "contract_address": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SOL-PLG20", @@ -10507,7 +11998,15 @@ "contract_address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SOLVE-ERC20", @@ -10545,6 +12044,33 @@ "derivation_path": "m/44'/141'", "trezor_coin": "Komodo" }, + { + "coin": "SPACE-ARB20", + "name": "space_arb20", + "fname": "Space Token", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x1D1498166DDCEeE616a6d99868e1E0677300056f" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "SPACE-AVX20", "name": "space_avx20", @@ -10562,7 +12088,7 @@ "contract_address": "0x09211Dc67f9fe98Fb7bBB91Be0ef05f4a12FA2b2" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "SPACE-BEP20", @@ -10580,7 +12106,7 @@ "contract_address": "0x9E1170c12FDDd3B00FEc42ddF4C942565D9Be577" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SPACE-FTM20", @@ -10599,7 +12125,34 @@ "contract_address": "0x5f7F94a1dd7b15594d17543BEB8B30b111DD464c" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" + }, + { + "coin": "SPACE-PLG20_OLD", + "name": "space_plg20_old", + "fname": "Space Token (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": "0xB53Ec4aCe420a62Cfb75aFdEba600D284777cd65" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SPACE-PLG20", @@ -10615,10 +12168,18 @@ "type": "ERC20", "protocol_data": { "platform": "MATIC", - "contract_address": "0xB53Ec4aCe420a62Cfb75aFdEba600D284777cd65" + "contract_address": "0x1D1498166DDCEeE616a6d99868e1E0677300056f" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SRM-ERC20", @@ -10655,54 +12216,8 @@ "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": 3, - "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" + }, + "derivation_path": "m/44'/60'" }, { "coin": "SUSHI-AVX20", @@ -10721,7 +12236,7 @@ "contract_address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "SUSHI-BEP20", @@ -10739,7 +12254,7 @@ "contract_address": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SUSHI-ERC20", @@ -10771,6 +12286,7 @@ "fname": "Sushi", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -10782,7 +12298,7 @@ "contract_address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "SUSHI-KRC20", @@ -10801,7 +12317,7 @@ "contract_address": "0xE0a60890BB7F9250089455620063fb6fe4DC159a" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "SUSHI-MVR20", @@ -10809,6 +12325,7 @@ "fname": "Sushi", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1285, "avg_blocktime": 15, "decimals": 18, @@ -10820,7 +12337,7 @@ "contract_address": "0xf390830DF829cf22c53c8840554B98eafC5dCBc2" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'" }, { "coin": "SUSHI-PLG20", @@ -10839,7 +12356,15 @@ "contract_address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "SWAP-BEP20", @@ -10857,7 +12382,7 @@ "contract_address": "0xe56a473043EaAB7947c0a2408cEA623074500EE3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SXP-BEP20", @@ -10876,7 +12401,7 @@ "contract_address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "SXP-ERC20", @@ -10912,6 +12437,109 @@ "type": "ETH" } }, + { + "coin": "SYN-ERC20", + "name": "syn_erc20", + "fname": "Synapse", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x0f2D719407FdBeFF09D87557AbB7232601FD9F29" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "SYN-BEP20", + "name": "syn_bep20", + "fname": "Synapse", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xa4080f1778e69467E905B8d6F72f6e441f9e9484" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "SYN-PLG20", + "name": "syn_plg20", + "fname": "Synapse", + "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": "0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } + }, + { + "coin": "SYN-AVX20", + "name": "syn_avx20", + "fname": "Synapse", + "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": "0x1f1E7c893855525b303f99bDF5c3c05Be09ca251" + } + }, + "derivation_path": "m/44'/60'" + }, + { + "coin": "SYN-FTM20", + "name": "syn_ftm20", + "fname": "Synapse", + "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": "0xE55e19Fb4F2D85af758950957714292DAC1e25B2" + } + }, + "derivation_path": "m/44'/60'" + }, { "coin": "SYS", "name": "syscoin", @@ -10969,23 +12597,6 @@ "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", @@ -11022,7 +12633,7 @@ "contract_address": "0x83BC92dcfC1F62Ba5dbd0f3537032f83a004300A" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "TBTC-ERC20", @@ -11060,7 +12671,15 @@ "contract_address": "0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "TESTBTC", @@ -11079,7 +12698,8 @@ "required_confirmations": 0, "protocol": { "type": "UTXO" - } + }, + "derivation_path": "m/44'/1'" }, { "coin": "TESTBTC-segwit", @@ -11102,7 +12722,8 @@ "required_confirmations": 0, "protocol": { "type": "UTXO" - } + }, + "derivation_path": "m/84'/1'" }, { "coin": "TEL-ERC20", @@ -11140,7 +12761,7 @@ "contract_address": "0x621C1E8610e4B9b7fc9F043203C008EDe52E92F5" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "TEL-PLG20", @@ -11159,7 +12780,15 @@ "contract_address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "TFT-BEP20", @@ -11178,7 +12807,15 @@ "contract_address": "0x8f0FB159380176D324542b3a7933F0C2Fd0c2bbf" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "THC", @@ -11215,7 +12852,7 @@ "contract_address": "0xBD9a8CA934e673b874937761D7CFa7084ecBdd53" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "TKL", @@ -11271,7 +12908,7 @@ "contract_address": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "TRC", @@ -11298,6 +12935,7 @@ "fname": "TRON (OLD)", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 56, "avg_blocktime": 3, "required_confirmations": 3, @@ -11308,7 +12946,7 @@ "contract_address": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "TRX-BEP20", @@ -11327,7 +12965,15 @@ "contract_address": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "TRYB-AVX20", @@ -11346,7 +12992,15 @@ "contract_address": "0x564A341Df6C126f90cf3ECB92120FD7190ACb401" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "TRYB-BEP20", @@ -11364,7 +13018,7 @@ "contract_address": "0xC1fdbed7Dac39caE2CcC0748f7a80dC446F6a594" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "TRYB-PLG20", @@ -11383,7 +13037,15 @@ "contract_address": "0x4Fb71290Ac171E1d144F7221D882BECAc7196EB5" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "TRYB-ERC20", @@ -11403,24 +13065,6 @@ }, "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", @@ -11438,7 +13082,7 @@ "contract_address": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "TUSD-ERC20", @@ -11480,7 +13124,7 @@ "contract_address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "TUSD-FTM20", @@ -11488,6 +13132,7 @@ "fname": "TrueUSD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -11499,7 +13144,7 @@ "contract_address": "0x9879aBDea01a879644185341F7aF7d8343556B7a" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "TUSD-HCO20", @@ -11507,6 +13152,7 @@ "fname": "TrueUSD", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -11518,7 +13164,7 @@ "contract_address": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "TUSD-KRC20", @@ -11537,7 +13183,7 @@ "contract_address": "0xD17027b85Abf02721F953EE528721A980fa58941" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "TUSD-PLG20", @@ -11556,7 +13202,7 @@ "contract_address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "TWT-BEP20", @@ -11575,7 +13221,7 @@ "contract_address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "UBT-ERC20", @@ -11617,12 +13263,13 @@ "contract_address": "0x7FBc10850caE055B27039aF31bD258430e714c62" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "UIS", "name": "unitus", "fname": "Unitus", + "sign_message_prefix": "Unitus Signed Message:\n", "rpcport": 50604, "pubtype": 68, "p2shtype": 10, @@ -11634,6 +13281,11 @@ "avg_blocktime": 60, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/723'", + "links": { + "github": "https://github.com/unitusdev/unitus", + "homepage": "https://unituscurrency.com" } }, { @@ -11653,7 +13305,7 @@ "contract_address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "UMA-ERC20", @@ -11691,7 +13343,7 @@ "contract_address": "0x3066818837c5e6eD6601bd5a91B0762877A6B731" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "UNI-AVX20", @@ -11710,7 +13362,7 @@ "contract_address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "UNI-ERC20", @@ -11751,7 +13403,7 @@ "contract_address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "UNI-HCO20", @@ -11759,6 +13411,7 @@ "fname": "Uniswap", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "decimals": 18, "avg_blocktime": 3, @@ -11770,7 +13423,7 @@ "contract_address": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "UNI-KRC20", @@ -11789,7 +13442,7 @@ "contract_address": "0xEe58E4D62b10A92dB1089d4D040B759C28aE16Cd" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "UNI-PLG20", @@ -11808,7 +13461,15 @@ "contract_address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "UNO", @@ -11833,6 +13494,33 @@ "homepage": "https://unobtanium.uno" } }, + { + "coin": "USDC-ARB20", + "name": "usdc_arb20", + "fname": "USD Coin", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 6, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "USDC-AVX20", "name": "usdc_avx20", @@ -11850,7 +13538,7 @@ "contract_address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "USDC-AVX20_OLD", @@ -11858,6 +13546,7 @@ "fname": "USD Coin (OLD)", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 43114, "required_confirmations": 3, "avg_blocktime": 2.4, @@ -11869,7 +13558,7 @@ "contract_address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "USDC-ERC20", @@ -11910,7 +13599,15 @@ "contract_address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "USDC-FTM20", @@ -11918,6 +13615,7 @@ "fname": "USD Coin", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "avg_blocktime": 1.8, "required_confirmations": 3, @@ -11928,7 +13626,7 @@ "contract_address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "USDC-HCO20", @@ -11936,6 +13634,7 @@ "fname": "USD Coin", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "avg_blocktime": 3, "decimals": 6, @@ -11947,7 +13646,7 @@ "contract_address": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "USDC-KRC20", @@ -11966,7 +13665,7 @@ "contract_address": "0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "USDC-MVR20", @@ -11974,6 +13673,7 @@ "fname": "USD Coin", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1285, "avg_blocktime": 15, "decimals": 6, @@ -11985,7 +13685,7 @@ "contract_address": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'" }, { "coin": "USDC-PLG20", @@ -12004,7 +13704,15 @@ "contract_address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "USDC-PLG20_OLD", @@ -12023,7 +13731,7 @@ "contract_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "USDD-BEP20", @@ -12042,7 +13750,7 @@ "contract_address": "0xd17479997F34dd9156Deef8F95A52D81D265be9c" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "USDD-ERC20", @@ -12069,6 +13777,7 @@ "fname": "Tether", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 1285, "avg_blocktime": 15, "decimals": 6, @@ -12080,7 +13789,7 @@ "contract_address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C" } }, - "derivation_path": "m/44'/1285'" + "derivation_path": "m/44'/60'" }, { "coin": "USDT-FTM20", @@ -12088,6 +13797,7 @@ "fname": "Tether", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 6, "avg_blocktime": 1.8, @@ -12099,7 +13809,7 @@ "contract_address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "USDT-HCO20", @@ -12107,6 +13817,7 @@ "fname": "Tether", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 128, "avg_blocktime": 3, "decimals": 18, @@ -12118,7 +13829,7 @@ "contract_address": "0xa71EdC38d189767582C38A3145b5873052c3e47a" } }, - "derivation_path": "m/44'/1023'" + "derivation_path": "m/44'/60'" }, { "coin": "USDT-KRC20", @@ -12137,7 +13848,7 @@ "contract_address": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "USDT-PLG20", @@ -12156,7 +13867,15 @@ "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "USDT-ARB20", @@ -12164,17 +13883,25 @@ "fname": "Tether", "rpcport": 80, "mm2": 1, - "wallet_only": true, "chain_id": 42161, - "avg_blocktime": 15, "decimals": 6, - "required_confirmations": 3, + "avg_blocktime": 0.25, + "required_confirmations": 10, "protocol": { "type": "ERC20", "protocol_data": { "platform": "ETH-ARB20", "contract_address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9" } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 } }, { @@ -12194,7 +13921,15 @@ "contract_address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + } }, { "coin": "USDT-AVX20_OLD", @@ -12202,6 +13937,7 @@ "fname": "Tether (OLD)", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 43114, "required_confirmations": 3, "avg_blocktime": 2.4, @@ -12213,7 +13949,7 @@ "contract_address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "USDT-BEP20", @@ -12231,7 +13967,15 @@ "contract_address": "0x55d398326f99059fF775485246999027B3197955" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "USDT-ERC20", @@ -12256,24 +14000,6 @@ "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": "vARRR", "sign_message_prefix": "Komodo Signed Message:\n", @@ -12291,10 +14017,28 @@ "derivation_path": "m/44'/141'", "trezor_coin": "Komodo" }, + { + "coin": "vDEX", + "sign_message_prefix": "Komodo Signed Message:\n", + "asset": "vDEX", + "fname": "vDEX", + "rpcport": 21778, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 6, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo" + }, { "coin": "VAL", "name": "validity", "fname": "Validity", + "sign_message_prefix": "radium Signed Message:\n", "confpath": "USERHOME/.Validity/validity.conf", "isPoS": 1, "rpcport": 27914, @@ -12309,6 +14053,11 @@ "mature_confirmations": 60, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/634'", + "links": { + "github": "https://github.com/RadiumCore/Validity", + "homepage": "https://validitytech.com" } }, { @@ -12328,7 +14077,15 @@ "contract_address": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "VRA-ERC20", @@ -12338,6 +14095,7 @@ "mm2": 1, "required_confirmations": 3, "avg_blocktime": 15, + "chain_id": 1, "protocol": { "type": "ERC20", "protocol_data": { @@ -12383,7 +14141,7 @@ "contract_address": "0x054c42b6414747F5263b4A86f21B1aFAD00326Bf" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "VIA", @@ -12459,24 +14217,14 @@ "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" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 } }, { @@ -12626,7 +14374,7 @@ "contract_address": "0xFC3E14af0f0c2129a84Cc013D48C70D682902874" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "WBTC-ERC20", @@ -12669,7 +14417,15 @@ "contract_address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "WLD-ERC20", @@ -12709,6 +14465,33 @@ }, "derivation_path": "m/44'/60'" }, + { + "coin": "WOO-ARB20", + "name": "woo_arb20", + "fname": "WOO Network", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + } + }, { "coin": "WOO-AVX20", "name": "woo_avx20", @@ -12726,7 +14509,7 @@ "contract_address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "WOO-BEP20", @@ -12745,7 +14528,7 @@ "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "WOO-FTM20", @@ -12753,6 +14536,7 @@ "fname": "WOO Network", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -12764,7 +14548,7 @@ "contract_address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "WOO-PLG20", @@ -12783,7 +14567,15 @@ "contract_address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "XCN-ERC20", @@ -12821,12 +14613,13 @@ "contract_address": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "XEP-segwit", "name": "xep", "fname": "Electra Protocol", + "sign_message_prefix": "XEP Signed Message:\n", "rpcport": 16816, "pubtype": 55, "p2shtype": 137, @@ -12866,7 +14659,7 @@ "contract_address": "0xb897D0a0f68800f8Be7D69ffDD1c24b69f57Bf3e" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "XIDR-ERC20", @@ -12904,7 +14697,15 @@ "contract_address": "0x2c826035c1C36986117A0e949bD6ad4baB54afE2" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "XLM-BEP20", @@ -12922,12 +14723,21 @@ "contract_address": "0x43C934A845205F0b514417d757d7235B8f53f1B9" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "XMY", "name": "myriadcoin", "fname": "Myriad", + "sign_message_prefix": "Myriadcoin Signed Message:\n", "rpcport": 8332, "pubtype": 50, "p2shtype": 9, @@ -12948,6 +14758,7 @@ "coin": "XMY-segwit", "name": "myriadcoin", "fname": "Myriad", + "sign_message_prefix": "Myriadcoin Signed Message:\n", "rpcport": 8332, "pubtype": 50, "p2shtype": 9, @@ -13053,7 +14864,15 @@ "contract_address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "XRP-ERC20", @@ -13115,7 +14934,15 @@ "contract_address": "0xDC3326e71D45186F113a2F448984CA0e8D201995" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "XTZ-BEP20", @@ -13133,12 +14960,21 @@ "contract_address": "0x16939ef78684453bfDFb47825F8a5F714f12623a" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "XVC", "name": "vanillacash", "fname": "VanillaCash", + "sign_message_prefix": "Vanillacash Signed Message:\n", "isPoS": 1, "rpcport": 48888, "pubtype": 18, @@ -13147,10 +14983,15 @@ "txfee": 1000, "dust": 10000, "mm2": 1, - "required_confirmations": 7, + "required_confirmations": 4, "avg_blocktime": 60, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/724'", + "links": { + "github": "https://github.com/WikiMin3R/Vanillacash", + "homepage": "https://vanillacash.org" } }, { @@ -13169,7 +15010,7 @@ "contract_address": "0xeBbfB9E5aF3172C7C0e1D4ff7106A8Bbb961F87B" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "XVC-QRC20", @@ -13180,7 +15021,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -13235,7 +15076,15 @@ "contract_address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "YFI-AVX20", @@ -13254,7 +15103,7 @@ "contract_address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "YFI-BEP20", @@ -13272,7 +15121,15 @@ "contract_address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "YFI-ERC20", @@ -13304,6 +15161,7 @@ "fname": "yearn.finance", "rpcport": 80, "mm2": 1, + "wallet_only": true, "chain_id": 250, "decimals": 18, "avg_blocktime": 1.8, @@ -13315,7 +15173,7 @@ "contract_address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69" } }, - "derivation_path": "m/44'/1007'" + "derivation_path": "m/44'/60'" }, { "coin": "YFI-KRC20", @@ -13334,7 +15192,7 @@ "contract_address": "0xdfa3Ef49d357c6b0B2DfBB88701af2b7A053fD0A" } }, - "derivation_path": "m/44'/641'" + "derivation_path": "m/44'/60'" }, { "coin": "YFI-PLG20", @@ -13353,7 +15211,15 @@ "contract_address": "0xDA537104D6A5edd53c6fBba9A898708E465260b6" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "YFII-BEP20", @@ -13371,7 +15237,7 @@ "contract_address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "YFII-ERC20", @@ -13411,8 +15277,8 @@ "txversion": 4, "overwintered": 1, "version_group_id": "0x892f2085", - "consensus_branch_id": "0xc2d6d0b4", - "txfee": 10000, + "consensus_branch_id": "0xc8e71055", + "txfee": 100000, "mm2": 1, "required_confirmations": 3, "avg_blocktime": 75, @@ -13465,7 +15331,7 @@ "contract_address": "0x530e9346870E632A63E8d461bb3c3622e00782DE" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "ZET", @@ -13485,6 +15351,11 @@ "avg_blocktime": 45, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/719'", + "links": { + "github": "https://github.com/WikiMin3R/ZetacoinE", + "homepage": "https://zetacoin.io" } }, { @@ -13503,7 +15374,15 @@ "contract_address": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "ZRX-AVX20", @@ -13522,7 +15401,7 @@ "contract_address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2" } }, - "derivation_path": "m/44'/9000'" + "derivation_path": "m/44'/60'" }, { "coin": "ZRX-ERC20", @@ -13565,7 +15444,7 @@ "contract_address": "0x5559Edb74751A0edE9DeA4DC23aeE72cCA6bE3D5" } }, - "derivation_path": "m/44'/966'" + "derivation_path": "m/44'/60'" }, { "coin": "INK-QRC20", @@ -13576,7 +15455,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13650,7 +15529,15 @@ "contract_address": "0xaFF9084f2374585879e8B434C399E29E80ccE635" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + } }, { "coin": "HPY-QRC20", @@ -13661,7 +15548,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13686,7 +15573,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13711,7 +15598,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13736,7 +15623,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13761,7 +15648,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13786,7 +15673,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13811,7 +15698,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13836,7 +15723,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -13899,6 +15786,21 @@ "homepage": "http://seele.pro" } }, + { + "coin": "SEPOLIAETH", + "name": "sepolia", + "fname": "Sepolia", + "rpcport": 80, + "mm2": 1, + "chain_id": 11155111, + "sign_message_prefix": "Sepolia Signed Message:\n", + "required_confirmations": 3, + "avg_blocktime": 15, + "protocol": { + "type": "ETH" + }, + "derivation_path": "m/44'/60'" + }, { "coin": "REV-ERC20", "name": "rev_erc20", @@ -14086,7 +15988,7 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/108'", + "derivation_path": "m/44'/60'", "trezor_coin": "Ubiq", "links": { "homepage": "https://ubiqsmart.com" @@ -14298,7 +16200,7 @@ "contract_address": "0x5fb4968fC85868DF3aD2d6e59883a10570f01D18" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "S4F-ERC20", @@ -14336,7 +16238,7 @@ "contract_address": "0x788D2780992222360f674cc12C36478870b8E6ED" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "tBCH", @@ -14388,23 +16290,6 @@ "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", @@ -14425,6 +16310,7 @@ "coin": "WHIVE", "name": "whive", "fname": "Whive", + "sign_message_prefix": "Bitcoin Signed Message:\n", "rpcport": 1867, "pubtype": 73, "p2shtype": 10, @@ -14440,12 +16326,18 @@ "avg_blocktime": 600, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/658'", + "links": { + "github": "https://github.com/whiveio/whive", + "homepage": "https://www.whive.io" } }, { "coin": "WHIVE-segwit", "name": "whive", "fname": "Whive", + "sign_message_prefix": "Bitcoin Signed Message:\n", "rpcport": 1867, "pubtype": 73, "p2shtype": 10, @@ -14464,12 +16356,18 @@ "avg_blocktime": 600, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/84'/658'", + "links": { + "github": "https://github.com/whiveio/whive", + "homepage": "https://www.whive.io" } }, { "coin": "XEC", "name": "xec", "fname": "eCash", + "sign_message_prefix": "eCash Signed Message:\n", "rpcport": 8332, "pubtype": 0, "p2shtype": 5, @@ -14489,7 +16387,11 @@ "protocol": { "type": "UTXO" }, - "derivation_path": "m/44'/1899'" + "derivation_path": "m/44'/1899'", + "links": { + "github": "https://github.com/Bitcoin-ABC/bitcoin-abc", + "homepage": "https://e.cash" + } }, { "coin": "SIBM-BEP20", @@ -14507,26 +16409,7 @@ "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" + "derivation_path": "m/44'/60'" }, { "coin": "ZOMBIE", @@ -14558,9 +16441,11 @@ 28, 189 ] - } + }, + "z_derivation_path": "m/32'/133'" } }, + "derivation_path": "m/44'/133'", "required_confirmations": 3 }, { @@ -14579,12 +16464,13 @@ "contract_address": "0x21F9B5b2626603e3F40bfc13d01AfB8c431D382F" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "RUNES", "name": "runebase", "fname": "Runebase", + "sign_message_prefix": "Runebase Signed Message:\n", "rpcport": 9432, "pubtype": 61, "p2shtype": 123, @@ -14599,6 +16485,11 @@ "avg_blocktime": 120, "protocol": { "type": "UTXO" + }, + "derivation_path": "m/44'/88'", + "links": { + "github": "https://github.com/runebase/runebase", + "homepage": "https://www.runebase.io" } }, { @@ -14636,7 +16527,7 @@ "contract_address": "0xD7380b10bF3886B34Ab3422DEa42E408850375CA" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "ATOM", @@ -14651,6 +16542,7 @@ "decimals": 6, "denom": "uatom", "account_prefix": "cosmos", + "chain_registry_name": "cosmoshub", "chain_id": "cosmoshub-4" } }, @@ -14660,7 +16552,8 @@ "coin": "IRIS", "avg_blocktime": 7, "name": "iris", - "fname": "Iris", + "fname": "IRISnet", + "chain_id": 6688, "mm2": 1, "protocol": { "type": "TENDERMINT", @@ -14669,10 +16562,30 @@ "denom": "uiris", "account_prefix": "iaa", "chain_id": "irishub-1", + "chain_registry_name": "irishub", "gas_price": 0.5 } }, - "derivation_path": "m/44'/566'" + "derivation_path": "m/44'/118'" + }, + { + "coin": "IRIS-BEP20", + "name": "iris_bep20", + "fname": "IRISnet", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x05C50a62b0b87bE1fFB1Cf3b77d9eDBa834ef6f7" + } + }, + "derivation_path": "m/44'/60'" }, { "coin": "OSMO", @@ -14687,15 +16600,17 @@ "decimals": 6, "denom": "uosmo", "account_prefix": "osmo", + "chain_registry_name": "osmosis", "chain_id": "osmosis-1", "gas_price": 0.5 } - } + }, + "derivation_path": "m/44'/118'" }, { "coin": "ATOM-IBC_IRIS", "name": "cosmos_ibc_iris", - "fname": "Cosmos IBC-IRIS", + "fname": "Cosmos", "avg_blocktime": 7, "mm2": 1, "protocol": { @@ -14707,7 +16622,7 @@ "gas_price": 0.5 } }, - "derivation_path": "m/44'/566'" + "derivation_path": "m/44'/118'" }, { "coin": "MAZA", @@ -14784,30 +16699,6 @@ "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", @@ -14824,6 +16715,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/136'", "links": { "github": "https://github.com/kiirocoin/kiiro", "homepage": "https://kiirocoin.org" @@ -14845,7 +16737,7 @@ "contract_address": "0x347862372f7C8f83D69025234367Ac11c5241Db3" } }, - "derivation_path": "m/44'/714'" + "derivation_path": "m/44'/60'" }, { "coin": "MEWC", @@ -14870,5 +16762,140 @@ "github": "https://github.com/Meowcoin-Foundation/Meowcoin", "homepage": "https://www.mewccrypto.com/" } + }, + { + "coin": "IRISTEST", + "avg_blocktime": 7, + "name": "iristest", + "fname": "Iris Test", + "mm2": 1, + "wallet_only": false, + "is_testnet": true, + "protocol": { + "type": "TENDERMINT", + "protocol_data": { + "decimals": 6, + "denom": "unyan", + "account_prefix": "iaa", + "chain_id": "nyancat-9", + "gas_price": 0.5 + } + }, + "derivation_path": "m/44'/118'" + }, + { + "coin": "NUCLEUSTEST", + "avg_blocktime": 5, + "name": "nucleus-test", + "fname": "Nucleus Test", + "mm2": 1, + "wallet_only": false, + "is_testnet": true, + "protocol":{ + "type":"TENDERMINT", + "protocol_data": { + "decimals": 6, + "denom": "unucl", + "account_prefix": "nuc", + "chain_registry_name": "nucleus", + "chain_id": "nucleus-3" + } + }, + "derivation_path": "m/44'/118'" + }, + { + "coin":"IRISTEST-IBC_NUCLEUSTEST", + "avg_blocktime": 5, + "name": "iristest-ibc-nucleus-test", + "fname": "Iris Test", + "mm2": 1, + "wallet_only": false, + "is_testnet": true, + "protocol":{ + "type":"TENDERMINTTOKEN", + "protocol_data": { + "platform": "NUCLEUSTEST", + "decimals": 6, + "denom": "ibc/F7F28FF3C09024A0225EDBBDB207E5872D2B4EF2FB874FE47B05EF9C9A7D211C" + } + }, + "derivation_path": "m/44'/118'" + }, + { + "coin":"ATOM-IBC_NUCLEUSTEST", + "avg_blocktime": 5, + "name": "cosmos-ibc-nucleus-test", + "fname": "Cosmos", + "mm2": 1, + "wallet_only": false, + "is_testnet": true, + "protocol":{ + "type":"TENDERMINTTOKEN", + "protocol_data": { + "platform": "NUCLEUSTEST", + "decimals": 6, + "denom": "ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E" + } + }, + "derivation_path": "m/44'/118'" + }, + { + "coin":"OSMO-IBC_NUCLEUSTEST", + "avg_blocktime": 5, + "name": "cosmos-ibc-nucleus-test", + "fname": "Osmosis", + "mm2": 1, + "wallet_only": false, + "is_testnet": true, + "protocol":{ + "type":"TENDERMINTTOKEN", + "protocol_data": { + "platform": "NUCLEUSTEST", + "decimals": 6, + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23" + } + }, + "derivation_path": "m/44'/118'" + }, + { + "coin": "LUPA", + "sign_message_prefix": "Komodo Signed Message:\n", + "asset": "LUPA", + "fname": "Lupaza", + "rpcport": 64151, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 5, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo" + }, + { + "coin": "ZOIN", + "name": "zoin", + "fname": "ZoinCommunity", + "sign_message_prefix": "Zoincoin Signed Message:\n", + "rpcport": 8256, + "pubtype": 80, + "p2shtype": 53, + "wiftype": 208, + "segwit": false, + "txfee": 1000000, + "dust": 1000000, + "mm2": 1, + "required_confirmations": 3, + "avg_blocktime": 150, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/60'", + "links": { + "github": "https://github.com/seopub/zoincomumity", + "homepage": "http://zoincommunity.com/" + } } ] \ No newline at end of file diff --git a/assets/coins_config_tcp.json b/assets/coins_config_tcp.json index 05621677d..41993fe16 100644 --- a/assets/coins_config_tcp.json +++ b/assets/coins_config_tcp.json @@ -1,4 +1,60 @@ { + "ANAGAMI": { + "coin": "ANAGAMI", + "type": "SIA", + "name": "Anagami Testnet", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://api.siascan.com/anagami/wallet/api/", + "explorer_tx_url": "addresses/{ADDRESS}/events/", + "explorer_address_url": "nucleus/accounts/", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Anagami Testnet", + "mm2": 1, + "required_confirmations": 1, + "protocol": { + "type": "SIA" + }, + "nodes": [ + { + "url": "https://api.siascan.com/anagami/wallet/" + } + ], + "explorer_block_url": "block/" + }, + "TSIA": { + "coin": "TSIA", + "type": "SIA", + "name": "Siacoin Testnet", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://sia-walletd.komodo.earth/api/", + "explorer_tx_url": "addresses/{ADDRESS}/events/", + "explorer_address_url": "nucleus/accounts/", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Siacoin Testnet", + "mm2": 1, + "required_confirmations": 1, + "protocol": { + "type": "SIA" + }, + "nodes": [ + { + "url": "https://sia-walletd.komodo.earth/" + } + ], + "explorer_block_url": "block/" + }, "1INCH-AVX20": { "coin": "1INCH-AVX20", "type": "AVX-20", @@ -28,7 +84,7 @@ "contract_address": "0xd501281565bf7789224523144Fe5D98e8B28f267" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xd501281565bf7789224523144Fe5D98e8B28f267", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -38,7 +94,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -72,20 +133,27 @@ "contract_address": "0xaFf5Ed00c57b0E0c22123dbA28Cb6A5B26651Bbd" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xaFf5Ed00c57b0E0c22123dbA28Cb6A5B26651Bbd", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -119,20 +187,27 @@ "contract_address": "0x0D6e16c7066421607F8D334D6C02A48031fc2Eba" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x0D6e16c7066421607F8D334D6C02A48031fc2Eba", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -166,20 +241,35 @@ "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x111111111117dC0aa78b770fA6A738034120C302", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -221,22 +311,94 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "GNEISS-ERC20": { + "coin": "GNEISS-ERC20", + "type": "ERC-20", + "name": "GNEISS", + "coinpaprika_id": "", + "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": "GNEISS", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "avg_blocktime": 15, + "required_confirmations": 3, + "decimals": 8, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x5da3E93faB0580bD7a532A741aC5F886376EFF46" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x5da3E93faB0580bD7a532A741aC5F886376EFF46", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -270,17 +432,17 @@ "contract_address": "0x79f3244F3FFd7500A31a90Bb83C7D56649c2C7C5" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -314,20 +476,35 @@ "contract_address": "0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x9c2C5fd7b07E95EE044DDeba0E97a665F142394f", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -361,20 +538,35 @@ "contract_address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -408,7 +600,7 @@ "contract_address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -418,7 +610,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -451,20 +648,35 @@ "contract_address": "0xfb6115445Bff7b52FeB98650C87f44907E58f802" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xfb6115445Bff7b52FeB98650C87f44907E58f802", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -511,22 +723,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -545,7 +765,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "AAVE", "rpcport": 80, "mm2": 1, @@ -560,17 +780,23 @@ "contract_address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x6a07A792ab2965C72a5B8088d3a069A7aC3a993B", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -589,7 +815,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "AAVE", "rpcport": 80, "mm2": 1, @@ -604,14 +830,14 @@ "contract_address": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x202b4936fE1a82A4965220860aE46d7d3939Bb25", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -648,17 +874,17 @@ "contract_address": "0xE76e97C157658004eE22e01C03a5e21A4655A2Fd" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -692,20 +918,35 @@ "contract_address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -725,6 +966,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Artbyte Signed Message:\n", "fname": "ArtByte", "isPoS": 1, "rpcport": 9262, @@ -740,6 +982,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/720'", + "links": { + "github": "https://github.com/WikiMin3R/ArtBytE", + "homepage": "https://artbyte.art" + }, "electrum": [ { "url": "elec-seeder-one.artbytecoin.org:50012", @@ -749,6 +996,10 @@ { "url": "elec-seeder-two.artbytecoin.org:50012", "protocol": "SSL" + }, + { + "url": "electrumx-three.artbyte.live:50012", + "protocol": "SSL" } ], "explorer_block_url": "block.dws?" @@ -781,20 +1032,35 @@ "contract_address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -828,20 +1094,35 @@ "contract_address": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x6bfF4Fb161347ad7de4A625AE5aa3A1CA7077819", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -887,22 +1168,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -936,7 +1225,7 @@ "contract_address": "0xAEC8318a9a59bAEb39861d10ff6C7f7bf1F96C57" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xAEC8318a9a59bAEb39861d10ff6C7f7bf1F96C57", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -946,7 +1235,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -987,22 +1281,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -1036,20 +1338,35 @@ "contract_address": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -1068,7 +1385,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "SingularityNET", "rpcport": 80, "mm2": 1, @@ -1090,22 +1407,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -1124,7 +1449,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "SingularityNET", "rpcport": 80, "mm2": 1, @@ -1139,70 +1464,27 @@ "contract_address": "0x190Eb8a183D22a4bdf278c6791b152228857c033" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x190Eb8a183D22a4bdf278c6791b152228857c033", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" - } - ], - "explorer_block_url": "block/" - }, - "AIBC": { - "coin": "AIBC", - "type": "UTXO", - "name": "Aiblockchain", - "coinpaprika_id": "", - "coingecko_id": "", - "livecoinwatch_id": "", - "explorer_url": "http://95.111.231.8:3001/", - "explorer_tx_url": "", - "explorer_address_url": "", - "supported": [], - "active": false, - "is_testnet": false, - "currently_enabled": false, - "wallet_only": false, - "fname": "Aiblockchain", - "rpcport": 7772, - "pubtype": 23, - "p2shtype": 23, - "wiftype": 176, - "txfee": 0, - "dust": 5460, - "segwit": true, - "mm2": 1, - "required_confirmations": 11, - "avg_blocktime": 30, - "protocol": { - "type": "UTXO", - "bip44": "m/44'/2'/0'/0/0" - }, - "links": { - "github": "https://github.com/nickgsh/AiBlockChain", - "homepage": "https://aibc.space/" - }, - "electrum": [ + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, { - "url": "aibc.pro:50001", - "protocol": "TCP", - "contact": [ - { - "email": "electrum1_admin@aibc.pro" - }, - { - "github": "nickgsh" - } - ] + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -1243,15 +1525,6 @@ "homepage": "aipowergrid.io" }, "electrum": [ - { - "url": "electrumx1.aipowergrid.io:50002", - "protocol": "SSL", - "contact": [ - { - "discord": "482101557383528448" - } - ] - }, { "url": "electrumx2.aipowergrid.io:50002", "protocol": "SSL", @@ -1292,20 +1565,27 @@ "contract_address": "0xf307910A4c7bbc79691fD374889b36d8531B08e3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xf307910A4c7bbc79691fD374889b36d8531B08e3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -1346,22 +1626,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -1395,20 +1683,35 @@ "contract_address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -1449,22 +1752,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -1498,20 +1809,35 @@ "contract_address": "0xC762043E211571eB34f1ef377e5e8e76914962f9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xC762043E211571eB34f1ef377e5e8e76914962f9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -1531,7 +1857,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "ApeCoin", "rpcport": 80, "mm2": 1, @@ -1546,17 +1872,23 @@ "contract_address": "0x2d72A97a31Dc920dB03330780d30074626e39C8A" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x2d72A97a31Dc920dB03330780d30074626e39C8A", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -1590,20 +1922,156 @@ "contract_address": "0xB7b31a6BC18e48888545CE79e83E06003bE70930" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xB7b31a6BC18e48888545CE79e83E06003bE70930", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "ARB-ERC20": { + "coin": "ARB-ERC20", + "type": "ERC-20", + "name": "Arbitrum", + "coinpaprika_id": "arb-arbitrum", + "coingecko_id": "arbitrum", + "livecoinwatch_id": "ARB", + "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": "Arbitrum", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "ARB-ARB20": { + "coin": "ARB-ARB20", + "type": "Arbitrum", + "name": "Arbitrum", + "coinpaprika_id": "arb-arbitrum", + "coingecko_id": "arbitrum", + "livecoinwatch_id": "ARB", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Arbitrum", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x912CE59144191C1204E64559FE8253a0e49E6548" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -1636,20 +2104,35 @@ "contract_address": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -1690,22 +2173,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -1739,20 +2230,35 @@ "contract_address": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xEE800B277A96B0f490a1A732e1D6395FAD960A26", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -1764,7 +2270,7 @@ "coinpaprika_id": "arrr-pirate", "coingecko_id": "pirate-chain", "livecoinwatch_id": "ARRR", - "explorer_url": "https://pirate.komodo.earth/", + "explorer_url": "https://pirate.explorer.dragonhound.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -1816,9 +2322,11 @@ "time": 1652512363, "hash": "44797f3bb78323a7717007f1e289a3689e0b5b3433385dbd8e6f6a1700000000", "sapling_tree": "01e40c26f4a28071535b95ae637d30a209531e92a33de0a649e51183771025fd0f016cdc51442fcb328d047a709dc0f41e0173953404711045b3ef3036d7fd4151271501d6c94c5ce6787826af809aaee83768c4b7d4f02c8dc2d24cf60ed5f127a5d730018a752ea9d9efb3e1ac0e6e705ac9f7f9863cfa8f612ad43802175338d8d7cc6000000001fc3542434eff03075ea5f0a64f1dfb2f042d281b1a057e9f6c765b533ce51219013ad9484b1e901e62b93e7538f913dcb27695380c3bc579e79f5cc900f28e596e0001431da5f01fe11d58300134caf5ac76e0b1b7486fd02425dd8871bca4afa94d4b01bb39de1c1d10a25ce0cc775bc74b6b0f056c28639e7c5b7651bb8460060085530000000001732ddf661e68c9e335599bb0b18b048d2f1c06b20eabd18239ad2f3cc45fa910014496bab5eedab205b5f2a206bd1db30c5bc8bc0c1914a102f87010f3431be21a0000010b5fd8e7610754075f936463780e85841f3ab8ca2978f9afdf7c2c250f16a75f01db56bc66eb1cd54ec6861e5cf24af2f4a17991556a52ca781007569e95b9842401c03877ecdd98378b321250640a1885604d675aaa50380e49da8cfa6ff7deaf15" - } + }, + "z_derivation_path": "m/32'/133'" } }, + "derivation_path": "m/44'/133'", "required_confirmations": 2, "requires_notarization": true, "checkpoint_height": 1900000, @@ -1892,20 +2400,27 @@ "contract_address": "0xCDAF240C90F989847c56aC9Dee754F76F41c5833" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xCDAF240C90F989847c56aC9Dee754F76F41c5833", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -1939,20 +2454,35 @@ "contract_address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -1988,20 +2518,35 @@ "contract_address": "0xac51C4c48Dc3116487eD4BC16542e27B5694Da1b" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xac51C4c48Dc3116487eD4BC16542e27B5694Da1b", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -2039,6 +2584,15 @@ }, "derivation_path": "m/44'/85'", "electrum": [ + { + "url": "electrum1.valhala.is:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "388437778624413706" + } + ] + }, { "url": "electrumx.aur.ewmcx.info:50002", "protocol": "SSL", @@ -2052,10 +2606,10 @@ ], "explorer_block_url": "block.dws?" }, - "AVA-BEP20_OLD": { - "coin": "AVA-BEP20_OLD", + "AVA-BEP20": { + "coin": "AVA-BEP20", "type": "BEP-20", - "name": "Travala.com (OLD)", + "name": "Travala.com", "coinpaprika_id": "", "coingecko_id": "", "livecoinwatch_id": "AVA", @@ -2066,8 +2620,8 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, - "fname": "Travala.com (OLD)", + "wallet_only": true, + "fname": "Travala.com", "rpcport": 80, "mm2": 1, "chain_id": 56, @@ -2080,20 +2634,27 @@ "contract_address": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -2135,22 +2696,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -2179,11 +2748,16 @@ "protocol": { "type": "ETH" }, + "derivation_path": "m/44'/60'", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { "url": "https://api.avax-test.network/ext/bc/C/rpc" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avaxt", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avaxt/websocket" } ], "explorer_block_url": "block/" @@ -2207,12 +2781,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 43114, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 2.4, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "trezor_coin": "Avalanche C-Chain", "links": { "homepage": "https://www.avax.network/" @@ -2224,7 +2800,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/", @@ -2258,20 +2839,35 @@ "contract_address": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -2293,6 +2889,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Raven Signed Message:\n", "fname": "Avian", "rpcport": 7896, "pubtype": 60, @@ -2369,20 +2966,27 @@ "contract_address": "0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x752DC265EAf6Da2Db0F8e4a32D5596D3f18e8701", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -2422,22 +3026,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -2457,6 +3069,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "DarkCoin Signed Message:\n", "fname": "Axe", "rpcport": 9337, "pubtype": 55, @@ -2545,20 +3158,35 @@ "contract_address": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -2604,22 +3232,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -2648,8 +3284,7 @@ "txfee": 100000, "dust": 54600, "mm2": 1, - "required_confirmations": 2, - "requires_notarization": true, + "required_confirmations": 5, "avg_blocktime": 30, "protocol": { "type": "UTXO" @@ -2692,20 +3327,27 @@ "contract_address": "0x86e5775F5c46304939c40959812bC220dD1c0333" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x86e5775F5c46304939c40959812bC220dD1c0333", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -2739,20 +3381,27 @@ "contract_address": "0xc748673057861a797275CD8A068AbB95A902e8de" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xc748673057861a797275CD8A068AbB95A902e8de", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -2786,20 +3435,27 @@ "contract_address": "0xd4ed60d8368a92b5F1ca33aF61eF2A94714B2d46" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xd4ed60d8368a92b5F1ca33aF61eF2A94714B2d46", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -2846,22 +3502,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -2895,17 +3559,17 @@ "contract_address": "0xFC31366Be1795c1Ff444b9fBF55759733aD4d26D" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -2939,20 +3603,35 @@ "contract_address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -2985,20 +3664,27 @@ "contract_address": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -3032,20 +3718,35 @@ "contract_address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -3087,22 +3788,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -3121,7 +3830,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Band Protocol", "rpcport": 80, "mm2": 1, @@ -3136,17 +3845,23 @@ "contract_address": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -3180,20 +3895,27 @@ "contract_address": "0xA8b1E0764f85f53dfe21760e8AfE5446D82606ac" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xA8b1E0764f85f53dfe21760e8AfE5446D82606ac", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -3227,7 +3949,7 @@ "contract_address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -3237,7 +3959,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -3281,22 +4008,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -3329,20 +4064,35 @@ "contract_address": "0x101d82428437127bF1608F699CD651e6Abf9766E" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x101d82428437127bF1608F699CD651e6Abf9766E", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -3377,17 +4127,17 @@ "contract_address": "0x0bF46C86Ce3B904660aE85677EaA20B0C1b24064" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -3421,20 +4171,27 @@ "contract_address": "0x3Cef98bb43d732E2F285eE605a8158cDE967D219" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x3Cef98bb43d732E2F285eE605a8158cDE967D219", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -3502,6 +4259,18 @@ { "url": "cashnode.bch.ninja:50002", "protocol": "SSL" + }, + { + "url": "electrum3.cipig.net:20055", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] } ], "explorer_block_url": "block/", @@ -3679,22 +4448,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -3830,20 +4607,27 @@ "contract_address": "0x218645F85Ff27FC456ef46c3CdacBF5c40B2F9E8" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x218645F85Ff27FC456ef46c3CdacBF5c40B2F9E8", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -3889,9 +4673,9 @@ "coinpaprika_id": "bbk-bitblocks", "coingecko_id": "", "livecoinwatch_id": "BBK", - "explorer_url": "https://bbk.ccore.online/", - "explorer_tx_url": "", - "explorer_address_url": "", + "explorer_url": "https://chainz.cryptoid.info/bbk/", + "explorer_tx_url": "tx.dws?", + "explorer_address_url": "address.dws?", "supported": [], "active": false, "is_testnet": false, @@ -3916,15 +4700,25 @@ }, "electrum": [ { - "url": "bbk-one.ewm-cx.net:50001", - "protocol": "TCP" + "url": "bbk-ex-three.ewmci.online:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "475820011634819072" + } + ] }, { - "url": "bbk-two.ewm-cx.net:50001", - "protocol": "TCP" + "url": "bbk-ex-two.ewmci.online:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "475820011634819072" + } + ] } ], - "explorer_block_url": "block/" + "explorer_block_url": "block.dws?" }, "BBK-BEP20": { "coin": "BBK-BEP20", @@ -3955,20 +4749,27 @@ "contract_address": "0x9045B0eda6B6A556cf9B3d81C2db47411714f847" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x9045B0eda6B6A556cf9B3d81C2db47411714f847", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -4003,20 +4804,27 @@ "contract_address": "0x2C8a46eF99Cb64928eB3Dd50A925327e02296F63" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x2C8a46eF99Cb64928eB3Dd50A925327e02296F63", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -4057,22 +4865,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -4107,20 +4923,27 @@ "contract_address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -4141,7 +4964,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Bitcoin Cash", "rpcport": 80, "mm2": 1, @@ -4156,14 +4979,14 @@ "contract_address": "0xeF3CEBD77E0C52cb6f60875d9306397B5Caca375" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0xeF3CEBD77E0C52cb6f60875d9306397B5Caca375", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -4186,9 +5009,10 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "BIDR", "rpcport": 80, + "chain_id": 56, "mm2": 1, "avg_blocktime": 3, "required_confirmations": 3, @@ -4199,20 +5023,27 @@ "contract_address": "0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -4262,6 +5093,79 @@ ], "explorer_block_url": "block/" }, + "BCZERO": { + "coin": "BCZERO", + "type": "Smart Chain", + "name": "Buggyra Coin Zero", + "coinpaprika_id": "bczero-buggyra-coin-zero", + "coingecko_id": "", + "livecoinwatch_id": "BCZERO", + "explorer_url": "https://bczero.xpl.monster/", + "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": "BCZERO", + "fname": "Buggyra Coin Zero", + "rpcport": 46856, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "links": { + "homepage": "https://buggyracoinzero.com" + }, + "electrum": [ + { + "url": "electrum1.cipig.net:20003", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum2.cipig.net:20003", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum3.cipig.net:20003", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + } + ], + "explorer_block_url": "block/" + }, "BLK": { "coin": "BLK", "type": "UTXO", @@ -4317,13 +5221,14 @@ ] }, { - "url": "electrum1.blackcoin.nl:10001", + "url": "electrum3.blackcoin.nl:30002", + "protocol": "SSL", + "disable_cert_verification": false, "contact": [ { "discord": "michelvankessel#7656" } - ], - "protocol": "TCP" + ] } ], "explorer_block_url": "block.dws?" @@ -4357,20 +5262,27 @@ "contract_address": "0xd2cDfD5d26dfA1D11116B9ED7DBd7C6B88C6e1D3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xd2cDfD5d26dfA1D11116B9ED7DBd7C6B88C6e1D3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -4406,6 +5318,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/1'", "electrum": [ { "url": "electrum1.blackcoin.nl:10012", @@ -4428,13 +5341,14 @@ ] }, { - "url": "electrum1.blackcoin.nl:10011", + "url": "electrum3.blackcoin.nl:30012", + "protocol": "SSL", + "disable_cert_verification": true, "contact": [ { "discord": "michelvankessel#7656" } - ], - "protocol": "TCP" + ] } ], "explorer_block_url": "block/" @@ -4468,18 +5382,15 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/5'", "links": { "github": "https://github.com/BLOCXTECH/BLOCX", "homepage": "https://blocx.tech" }, "electrum": [ { - "url": "electrum1.blocx.space:50002", + "url": "electrum3.blocx.live:50002", "protocol": "SSL" - }, - { - "url": "electrum1.blocx.space:50001", - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -4504,11 +5415,13 @@ "rpcport": 80, "mm2": 1, "chain_id": 56, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "trezor_coin": "Binance Smart Chain", "links": { "homepage": "https://www.binance.org" @@ -4517,13 +5430,20 @@ "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -4608,22 +5528,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -4654,7 +5582,7 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/137'", + "derivation_path": "m/44'/60'", "trezor_coin": "RSK", "links": { "homepage": "https://rsk.co" @@ -4665,6 +5593,10 @@ "nodes": [ { "url": "https://public-node.rsk.co" + }, + { + "url": "https://rootstock.drpc.org", + "ws_url": "wss://rootstock.drpc.org" } ], "explorer_block_url": "block/" @@ -4693,9 +5625,14 @@ "protocol": { "type": "ETH" }, + "derivation_path": "m/44'/60'", "swap_contract_address": "0xcCD17C913aD7b772755Ad4F0BDFF7B34C6339150", "fallback_swap_contract": "0xcCD17C913aD7b772755Ad4F0BDFF7B34C6339150", "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnbt", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnbt/websocket" + }, { "url": "https://data-seed-prebsc-1-s2.binance.org:8545" } @@ -4731,20 +5668,35 @@ "contract_address": "0xA069008A669e2Af00a86673D9D584cfb524A42Cc" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xA069008A669e2Af00a86673D9D584cfb524A42Cc", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -4791,22 +5743,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -4840,20 +5800,27 @@ "contract_address": "0xc26D47d5c33aC71AC5CF9F776D63Ba292a4F7842" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xc26D47d5c33aC71AC5CF9F776D63Ba292a4F7842", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -4898,22 +5865,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -4947,80 +5922,30 @@ "contract_address": "0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x71be881e9C5d4465B3FfF61e89c6f3651E69B5bb", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" - }, - { - "url": "https://bsc2.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "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://eth1.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://eth3.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], + "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, "BRZ-ERC20": { @@ -5059,70 +5984,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "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://polygon-rpc.com" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -5156,24 +6041,38 @@ "contract_address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, "contract_address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "BRL" + "explorer_block_url": "block/" }, "BRZ-AVX20": { "coin": "BRZ-AVX20", @@ -5204,7 +6103,7 @@ "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -5214,11 +6113,15 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], - "explorer_block_url": "block/", - "forex_id": "BRL" + "explorer_block_url": "block/" }, "BSTY": { "coin": "BSTY", @@ -5340,6 +6243,54 @@ "explorer_block_url": "block/", "binance_id": "BTC" }, + "BKC": { + "coin": "BKC", + "type": "UTXO", + "name": "Briskcoin", + "coinpaprika_id": "bkc-briskcoin", + "coingecko_id": "", + "livecoinwatch_id": "__BKC", + "explorer_url": "https://explorer.briskcoin.org/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "sign_message_prefix": "Briskcoin Signed Message:\n", + "fname": "Briskcoin", + "rpcport": 8552, + "pubtype": 25, + "p2shtype": 33, + "wiftype": 153, + "txfee": 0, + "segwit": true, + "bech32_hrp": "bc", + "mm2": 1, + "required_confirmations": 5, + "avg_blocktime": 30, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/1918'", + "trezor_coin": "Briskcoin", + "links": { + "github": "https://github.com/briskcoin-project/briskcoin", + "homepage": "https://briskcoin.org" + }, + "electrum": [ + { + "url": "electrumx1.briskcoin.org:50001", + "protocol": "TCP" + }, + { + "url": "electrumx2.briskcoin.org:50001", + "protocol": "TCP" + } + ], + "explorer_block_url": "block/" + }, "BTC-segwit": { "coin": "BTC-segwit", "type": "UTXO", @@ -5450,20 +6401,35 @@ "contract_address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -5520,6 +6486,15 @@ } ], "protocol": "TCP" + }, + { + "url": "electrum3.btcz.rocks:50001", + "contact": [ + { + "discord": "426842722436120577" + } + ], + "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -5553,20 +6528,27 @@ "contract_address": "0xcBBB3e5099F769F6d4E2b8b92DC0e268f7E099D8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xcBBB3e5099F769F6d4E2b8b92DC0e268f7E099D8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -5587,6 +6569,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Bitweb Signed Message:\n", "fname": "Bitweb", "rpcport": 1605, "pubtype": 33, @@ -5601,6 +6584,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/738'", + "links": { + "github": "https://github.com/bitweb-project/bitweb", + "homepage": "https://bitwebcore.net" + }, "electrum": [ { "url": "electrumx.bitwebcore.net:20002", @@ -5665,6 +6653,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Bitweb Signed Message:\n", "fname": "Bitweb", "rpcport": 1605, "pubtype": 33, @@ -5683,6 +6672,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/84'/738'", + "links": { + "github": "https://github.com/bitweb-project/bitweb", + "homepage": "https://bitwebcore.net" + }, "electrum": [ { "url": "electrumx.bitwebcore.net:20002", @@ -5746,7 +6740,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "BitTorrent (OLD)", "rpcport": 80, "mm2": 1, @@ -5760,20 +6754,27 @@ "contract_address": "0x8595F9dA7b868b1822194fAEd312235E43007b49" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x8595F9dA7b868b1822194fAEd312235E43007b49", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -5808,20 +6809,35 @@ "contract_address": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x352Cb5E19b12FC216548a2677bD0fce83BaE434B", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -5868,22 +6884,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -5917,20 +6941,27 @@ "contract_address": "0xFdc26CDA2d2440d0E83CD1DeE8E8bE48405806DC" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xFdc26CDA2d2440d0E83CD1DeE8E8bE48405806DC", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -6066,20 +7097,27 @@ "contract_address": "0x000000089fb24237dA101020Ff8e2AfD14624687" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x000000089fb24237dA101020Ff8e2AfD14624687", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -6099,7 +7137,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Binance USD", "rpcport": 80, "mm2": 1, @@ -6114,7 +7152,7 @@ "contract_address": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -6124,51 +7162,12 @@ "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://api.avax.network/ext/bc/C/rpc" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -6187,7 +7186,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Binance USD", "rpcport": 80, "mm2": 1, @@ -6202,17 +7201,19 @@ "contract_address": "0x5D9ab5522c64E1F6ef5e3627ECCc093f56167818" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "contract_address": "0x5D9ab5522c64E1F6ef5e3627ECCc093f56167818", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -6231,7 +7232,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Binance USD", "rpcport": 80, "mm2": 1, @@ -6257,22 +7258,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -6291,7 +7300,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Binance USD", "rpcport": 80, "mm2": 1, @@ -6305,20 +7314,27 @@ "contract_address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -6338,7 +7354,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Binance USD", "rpcport": 80, "mm2": 1, @@ -6353,20 +7369,27 @@ "contract_address": "0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xdAb529f40E671A1D4bF91361c21bf9f0C9712ab7", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -6407,22 +7430,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -6457,20 +7488,35 @@ "contract_address": "0x9de41aFF9f55219D5bf4359F167d1D0c772A396D" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, "contract_address": "0x9de41aFF9f55219D5bf4359F167d1D0c772A396D", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -6504,20 +7550,35 @@ "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -6552,20 +7613,27 @@ "contract_address": "0x5cafe85d8983f61C059df359c504F1Bab8009e9e" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x5cafe85d8983f61C059df359c504F1Bab8009e9e", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -6685,7 +7753,22 @@ "disable_cert_verification": true }, { - "url": "lenoir.ecoincore.com:34333", + "url": "miami.ecoincore.com:34333", + "protocol": "SSL", + "disable_cert_verification": true + }, + { + "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 } @@ -6740,103 +7823,27 @@ "disable_cert_verification": true }, { - "url": "lenoir.ecoincore.com:34333", + "url": "miami.ecoincore.com:34333", "protocol": "SSL", "disable_cert_verification": true - } - ], - "explorer_block_url": "block.dws?" - }, - "CDS-AVX20": { - "coin": "CDS-AVX20", - "type": "AVX-20", - "name": "Crypto Development Services", - "coinpaprika_id": "cds-crypto-development-services", - "coingecko_id": "", - "livecoinwatch_id": "", - "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": "Crypto Development Services", - "rpcport": 80, - "mm2": 1, - "chain_id": 43114, - "required_confirmations": 3, - "avg_blocktime": 2.4, - "decimals": 8, - "protocol": { - "type": "ERC20", - "protocol_data": { - "platform": "AVAX", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5" - } - }, - "derivation_path": "m/44'/9000'", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5", - "parent_coin": "AVAX", - "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", - "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", - "nodes": [ - { - "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" - } - ], - "explorer_block_url": "block/" - }, - "CDS-BEP20": { - "coin": "CDS-BEP20", - "type": "BEP-20", - "name": "Crypto Development Services", - "coinpaprika_id": "cds-crypto-development-services", - "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": "Crypto Development Services", - "rpcport": 80, - "mm2": 1, - "chain_id": 56, - "avg_blocktime": 3, - "required_confirmations": 3, - "protocol": { - "type": "ERC20", - "protocol_data": { - "platform": "BNB", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5" - } - }, - "derivation_path": "m/44'/714'", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5", - "parent_coin": "BNB", - "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", - "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", - "nodes": [ - { - "url": "https://bsc1.cipig.net:18655" + "url": "oakland.ecoincore.com:34333", + "protocol": "SSL", + "disable_cert_verification": true }, { - "url": "https://bsc2.cipig.net:18655" + "url": "seattle.ecoincore.com:34333", + "protocol": "SSL", + "disable_cert_verification": true }, { - "url": "https://bsc3.cipig.net:18655" + "url": "woolloomooloo.ecoincore.com:34333", + "protocol": "SSL", + "disable_cert_verification": true } ], - "token_address_url": "tokentxns?a=", - "explorer_block_url": "block/" + "explorer_block_url": "block.dws?" }, "CDS-PLG20": { "coin": "CDS-PLG20", @@ -6864,23 +7871,30 @@ "type": "ERC20", "protocol_data": { "platform": "MATIC", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5" + "contract_address": "0xF7B5991c676929BF98BF3E2e2e386789BB16912a" } }, - "derivation_path": "m/44'/966'", - "contract_address": "0x23f07a1C03e7C6D0C88e0E05E79B6E3511073fD5", + "derivation_path": "m/44'/60'", + "contract_address": "0xF7B5991c676929BF98BF3E2e2e386789BB16912a", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -6921,22 +7935,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -6970,20 +7992,27 @@ "contract_address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -7029,22 +8058,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -7078,20 +8115,35 @@ "contract_address": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -7111,14 +8163,14 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": true, + "wallet_only": false, "fname": "Celer Network", "rpcport": 80, "mm2": 1, "chain_id": 42161, "decimals": 18, - "avg_blocktime": 15, - "required_confirmations": 3, + "avg_blocktime": 0.25, + "required_confirmations": 10, "protocol": { "type": "ERC20", "protocol_data": { @@ -7126,6 +8178,15 @@ "contract_address": "0x3a8B787f78D775AECFEEa15706D4221B40F345AB" } }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, "contract_address": "0x3a8B787f78D775AECFEEa15706D4221B40F345AB", "parent_coin": "ETH-ARB20", "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", @@ -7133,6 +8194,14 @@ "nodes": [ { "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -7166,20 +8235,35 @@ "contract_address": "0x045c4324039dA91c52C55DF5D785385Aab073DcF" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x045c4324039dA91c52C55DF5D785385Aab073DcF", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -7226,6 +8310,18 @@ ], "protocol": "TCP" }, + { + "url": "electrum1.mooo.com:10007", + "contact": [ + { + "email": "support@shorelinecrypto.com" + }, + { + "discord": "honglu69#5911" + } + ], + "protocol": "TCP" + }, { "url": "electrum2.mooo.com:10007", "contact": [ @@ -7270,100 +8366,38 @@ "contract_address": "0xb096DF47073A39041D9ffeD5d4E1d1b0D5D6b8E7" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xb096DF47073A39041D9ffeD5d4E1d1b0D5D6b8E7", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" - } - ], - "token_address_url": "tokentxns?a=", - "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:20053", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "electrum2.cipig.net:20053", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum3.cipig.net:20053", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], + "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, - "CHSB-ERC20_OLD": { - "coin": "CHSB-ERC20_OLD", + "CHSB-ERC20": { + "coin": "CHSB-ERC20", "type": "ERC-20", "name": "SwissBorg (OLD)", - "coinpaprika_id": "", - "coingecko_id": "", + "coinpaprika_id": "chsb-swissborg", + "coingecko_id": "swissborg", "livecoinwatch_id": "CHSB", "explorer_url": "https://etherscan.io/", "explorer_tx_url": "tx/", @@ -7372,7 +8406,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "SwissBorg (OLD)", "rpcport": 80, "mm2": 1, @@ -7398,22 +8432,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -7421,7 +8463,7 @@ "CHSB-PLG20": { "coin": "CHSB-PLG20", "type": "Matic", - "name": "SwissBorg", + "name": "SwissBorg (OLD)", "coinpaprika_id": "chsb-swissborg", "coingecko_id": "swissborg", "livecoinwatch_id": "CHSB", @@ -7432,8 +8474,8 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, - "fname": "SwissBorg", + "wallet_only": true, + "fname": "SwissBorg (OLD)", "rpcport": 80, "mm2": 1, "chain_id": 137, @@ -7447,20 +8489,27 @@ "contract_address": "0x67Ce67ec4fCd4aCa0Fcb738dD080b2a21ff69D75" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x67Ce67ec4fCd4aCa0Fcb738dD080b2a21ff69D75", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -7501,22 +8550,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -7550,17 +8607,17 @@ "contract_address": "0x6E8ce0519B7e4d691BaCE464099547E5fC17679c" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -7594,20 +8651,27 @@ "contract_address": "0xf1938Ce12400f9a761084E7A80d37e732a4dA056" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xf1938Ce12400f9a761084E7A80d37e732a4dA056", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -7656,18 +8720,55 @@ "discord": "475820011634819072" } ] - }, + } + ], + "explorer_block_url": "block.dws?" + }, + "CLC": { + "coin": "CLC", + "type": "Smart Chain", + "name": "Collider Coin", + "coinpaprika_id": "clc-collider-coin", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://clc.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": "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", + "electrum": [ { - "url": "clam-ex-one.ewmci.online:50001", - "protocol": "TCP", + "url": "v2.cryptocollider.com:8443", + "protocol": "SSL", "contact": [ { - "discord": "475820011634819072" + "email": "electrumx@cryptocollider.com" + }, + { + "discord": "collider#6160" } ] } ], - "explorer_block_url": "block.dws?" + "explorer_block_url": "block/" }, "CLP-BEP20": { "coin": "CLP-BEP20", @@ -7697,20 +8798,27 @@ "contract_address": "0x3039e86d39A5BCF38E96D78fF93FD0aBe753212c" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x3039e86d39A5BCF38E96D78fF93FD0aBe753212c", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -7745,7 +8853,7 @@ "contract_address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -7755,7 +8863,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -7788,20 +8901,35 @@ "contract_address": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -7848,22 +8976,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -7897,17 +9033,17 @@ "contract_address": "0x16c4106966cE30e06E806A7c40eEFb46d84cE7e5" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -7941,20 +9077,35 @@ "contract_address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8505b9d2254A7Ae468c0E9dd10Ccea3A837aef5c", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -7995,22 +9146,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -8044,17 +9203,17 @@ "contract_address": "0x652D253b7Ca91810A4a05ACFc39729387c5090C0" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -8088,20 +9247,27 @@ "contract_address": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xAdA58DF0F643D959C2A47c9D4d4c1a4deFe3F11C", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -8113,7 +9279,7 @@ "coinpaprika_id": "", "coingecko_id": "", "livecoinwatch_id": "", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -8127,7 +9293,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -8188,7 +9354,7 @@ "CRV-ERC20": { "coin": "CRV-ERC20", "type": "ERC-20", - "name": "Curve DAO Token", + "name": "Curve DAO", "coinpaprika_id": "crv-curve-dao-token", "coingecko_id": "curve-dao-token", "livecoinwatch_id": "CRV", @@ -8200,7 +9366,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 1, @@ -8221,22 +9387,87 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "CRV-ARB20": { + "coin": "CRV-ARB20", + "type": "Arbitrum", + "name": "Curve DAO", + "coinpaprika_id": "crv-curve-dao-token", + "coingecko_id": "curve-dao-token", + "livecoinwatch_id": "CRV", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Curve DAO", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x11cDb42B0EB46D95f990BeDD4695A6e3fA034978", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -8244,7 +9475,7 @@ "CRV-AVX20": { "coin": "CRV-AVX20", "type": "AVX-20", - "name": "Curve DAO Token", + "name": "Curve DAO", "coinpaprika_id": "crv-curve-dao-token", "coingecko_id": "curve-dao-token", "livecoinwatch_id": "CRV", @@ -8256,7 +9487,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 43114, @@ -8270,7 +9501,7 @@ "contract_address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -8280,7 +9511,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -8288,7 +9524,7 @@ "CRV-FTM20": { "coin": "CRV-FTM20", "type": "FTM-20", - "name": "Curve DAO Token", + "name": "Curve DAO", "coinpaprika_id": "crv-curve-dao-token", "coingecko_id": "curve-dao-token", "livecoinwatch_id": "CRV", @@ -8299,8 +9535,8 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, - "fname": "Curve DAO Token", + "wallet_only": true, + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 250, @@ -8314,17 +9550,23 @@ "contract_address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -8332,7 +9574,7 @@ "CRV-KRC20": { "coin": "CRV-KRC20", "type": "KRC-20", - "name": "Curve DAO Token", + "name": "Curve DAO", "coinpaprika_id": "crv-curve-dao-token", "coingecko_id": "curve-dao-token", "livecoinwatch_id": "CRV", @@ -8344,7 +9586,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 321, @@ -8358,17 +9600,17 @@ "contract_address": "0x4500E16dA66b99e0C55D7B46EBBD59bc413BA171" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -8376,7 +9618,7 @@ "CRV-PLG20": { "coin": "CRV-PLG20", "type": "Matic", - "name": "Curve DAO Token", + "name": "Curve DAO", "coinpaprika_id": "crv-curve-dao-token", "coingecko_id": "curve-dao-token", "livecoinwatch_id": "CRV", @@ -8388,7 +9630,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, - "fname": "Curve DAO Token", + "fname": "Curve DAO", "rpcport": 80, "mm2": 1, "chain_id": 137, @@ -8402,20 +9644,35 @@ "contract_address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -8448,20 +9705,27 @@ "contract_address": "0xcC4b3EA1F25c8772D390dA1DB507832aBE4a9740" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xcC4b3EA1F25c8772D390dA1DB507832aBE4a9740", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -8495,20 +9759,27 @@ "contract_address": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -8550,22 +9821,148 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "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://cyberyen.work/", + "explorer_tx_url": "", + "explorer_address_url": "", + "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", + "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", + "contact": [ + { + "support_chat": "https://matrix.to/#/#cyberyen-support:matrix.org" + } + ] + }, + { + "url": "electrum03.cyberyen.work:50002", + "protocol": "SSL", + "contact": [ + { + "support_chat": "https://matrix.to/#/#cyberyen-support:matrix.org" + } + ] + } + ], + "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://cyberyen.work/", + "explorer_tx_url": "", + "explorer_address_url": "", + "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", + "contact": [ + { + "support_chat": "https://matrix.to/#/#cyberyen-support:matrix.org" + } + ] + }, + { + "url": "electrum03.cyberyen.work:50002", + "protocol": "SSL", + "contact": [ + { + "support_chat": "https://matrix.to/#/#cyberyen-support:matrix.org" + } + ] } ], "explorer_block_url": "block/" @@ -8599,7 +9996,7 @@ "contract_address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -8609,7 +10006,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -8654,22 +10056,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -8702,20 +10112,35 @@ "contract_address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -8735,7 +10160,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Dai", "rpcport": 80, "mm2": 1, @@ -8750,17 +10175,23 @@ "contract_address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -8779,7 +10210,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Dai", "rpcport": 80, "mm2": 1, @@ -8794,14 +10225,14 @@ "contract_address": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x3D760a45D0887DFD89A2F5385a236B29Cb46ED2a", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -8823,7 +10254,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Dai", "rpcport": 80, "mm2": 1, @@ -8838,17 +10269,19 @@ "contract_address": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "contract_address": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -8882,20 +10315,35 @@ "contract_address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -8915,6 +10363,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "DarkCoin Signed Message:\n", "fname": "Dash", "confpath": "USERHOME/.dashcore/dash.conf", "rpcport": 9998, @@ -9011,22 +10460,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -9070,22 +10527,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -9126,32 +10591,40 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" }, - "DFX-PLG20_OLD": { - "coin": "DFX-PLG20_OLD", + "DFX-PLG20": { + "coin": "DFX-PLG20", "type": "Matic", - "name": "DFX Finance (OLD)", + "name": "DFX Finance", "coinpaprika_id": "", - "coingecko_id": "", + "coingecko_id": "dfx-finance", "livecoinwatch_id": "__DFX", "explorer_url": "https://polygonscan.com/", "explorer_tx_url": "tx/", @@ -9161,7 +10634,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, - "fname": "DFX Finance (OLD)", + "fname": "DFX Finance", "rpcport": 80, "mm2": 1, "chain_id": 137, @@ -9172,78 +10645,123 @@ "type": "ERC20", "protocol_data": { "platform": "MATIC", - "contract_address": "0xE7804D91dfCDE7F776c90043E03eAa6Df87E6395" + "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93" } }, - "derivation_path": "m/44'/966'", - "contract_address": "0xE7804D91dfCDE7F776c90043E03eAa6Df87E6395", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "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/", + "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": false, - "fname": "DFX Finance", - "rpcport": 80, + "sign_message_prefix": "DigiByte Signed Message:\n", + "fname": "DigiByte", + "rpcport": 14022, + "pubtype": 30, + "p2shtype": 63, + "wiftype": 128, + "txfee": 10000000, + "segwit": true, + "bech32_hrp": "dgb", "mm2": 1, - "chain_id": 137, - "decimals": 18, - "avg_blocktime": 1.8, - "required_confirmations": 20, + "required_confirmations": 7, + "avg_blocktime": 15, "protocol": { - "type": "ERC20", - "protocol_data": { - "platform": "MATIC", - "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93" - } + "type": "UTXO" }, - "derivation_path": "m/44'/966'", - "contract_address": "0x27f485b62C4A7E635F561A87560Adf5090239E93", - "parent_coin": "MATIC", - "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", - "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", - "nodes": [ + "derivation_path": "m/44'/20'", + "trezor_coin": "DigiByte", + "links": { + "github": "https://github.com/digibyte/digibyte", + "homepage": "https://digibyte.io" + }, + "electrum": [ { - "url": "https://polygon-rpc.com" + "url": "electrum1.cipig.net:20059", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "electrum2.cipig.net:20059", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] }, { - "url": "https://electrum3.cipig.net:18755" + "url": "electrum3.cipig.net:20059", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] } ], - "explorer_block_url": "block/" + "explorer_block_url": "block/", + "binance_id": "DGB" }, - "DGB": { - "coin": "DGB", + "DGB-segwit": { + "coin": "DGB-segwit", "type": "UTXO", - "name": "DigiByte", + "name": "Digibyte", "coinpaprika_id": "dgb-digibyte", "coingecko_id": "digibyte", "livecoinwatch_id": "DGB", @@ -9256,7 +10774,7 @@ "currently_enabled": false, "wallet_only": false, "sign_message_prefix": "DigiByte Signed Message:\n", - "fname": "DigiByte", + "fname": "Digibyte", "rpcport": 14022, "pubtype": 30, "p2shtype": 63, @@ -9264,87 +10782,10 @@ "txfee": 10000000, "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:20059", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum2.cipig.net:20059", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum3.cipig.net:20059", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - } - ], - "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": 10000000, - "segwit": true, - "bech32_hrp": "dgb", - "address_format": { - "format": "segwit" - }, - "orderbook_ticker": "DGB", + "address_format": { + "format": "segwit" + }, + "orderbook_ticker": "DGB", "mm2": 1, "required_confirmations": 7, "avg_blocktime": 15, @@ -9432,10 +10873,6 @@ "url": "failover.dgc.ewmcx.biz:50002", "protocol": "SSL", "disable_cert_verification": true - }, - { - "url": "electrumx.dgc.ewmcx.org:50001", - "protocol": "TCP" } ], "explorer_block_url": "block.dws?" @@ -9476,22 +10913,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -9525,25 +10970,124 @@ "contract_address": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, + "DPC": { + "coin": "DPC", + "type": "UTXO", + "name": "Dualpowcoin", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "_DPC", + "explorer_url": "https://explorerdpc.bitwebcore.net/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "sign_message_prefix": "Dpowcoin Signed Message:\n", + "fname": "Dualpowcoin", + "rpcport": 42002, + "pubtype": 55, + "p2shtype": 28, + "wiftype": 128, + "segwit": true, + "bech32_hrp": "dpc", + "txfee": 10000, + "mm2": 1, + "required_confirmations": 6, + "avg_blocktime": 300, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/739'", + "links": { + "github": "https://github.com/dpowcore-project/dpowcoin", + "homepage": "https://dpowcore.org" + }, + "electrum": [ + { + "url": "electrumxdpc.bitwebcore.net:22002", + "protocol": "SSL", + "contact": [ + { + "email": "mraksoll@gmail.com" + }, + { + "discord": "mraksoll" + }, + { + "github": "https://github.com/dpowcore-project/electrumx/issues" + } + ] + }, + { + "url": "electrumxdpc1.bitwebcore.net:22002", + "protocol": "SSL", + "contact": [ + { + "email": "mraksoll@gmail.com" + }, + { + "discord": "mraksoll" + }, + { + "github": "https://github.com/dpowcore-project/electrumx/issues" + } + ] + }, + { + "url": "electrumxdpc2.bitwebcore.net:22002", + "protocol": "SSL", + "contact": [ + { + "email": "mraksoll@gmail.com" + }, + { + "discord": "mraksoll" + }, + { + "github": "https://github.com/dpowcore-project/electrumx/issues" + } + ] + } + ], + "explorer_block_url": "block/" + }, "DIAC": { "coin": "DIAC", "type": "UTXO", @@ -9559,6 +11103,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "DarkCoin Signed Message:\n", "fname": "Diabase", "confpath": "USERHOME/.diabasecore/diabase.conf", "rpcport": 7676, @@ -9606,6 +11151,68 @@ ], "explorer_block_url": "block/" }, + "DIME": { + "coin": "DIME", + "type": "UTXO", + "name": "Dimecoin", + "coinpaprika_id": "dime-dimecoin", + "coingecko_id": "dimecoin", + "livecoinwatch_id": "DIME", + "explorer_url": "https://chainz.cryptoid.info/dime/", + "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": "Dimecoin Signed Message:\n", + "fname": "Dimecoin", + "rpcport": 11931, + "pubtype": 15, + "p2shtype": 9, + "wiftype": 143, + "segwit": false, + "bech32_hrp": "vx", + "txfee": 1000, + "decimals": 5, + "mm2": 1, + "required_confirmations": 6, + "avg_blocktime": 64, + "protocol": { + "type": "UTXO" + }, + "links": { + "github": "https://github.com/dime-coin/dimecoin/" + }, + "electrum": [ + { + "url": "electrumx1.dimecoinnetwork.com:50002", + "protocol": "SSL", + "contact": [ + { + "email": "developer@dimecoinnetwork.com" + }, + { + "discord": "dhop14#9359" + } + ] + }, + { + "url": "electrumx2.dimecoinnetwork.com:50001", + "contact": [ + { + "email": "developer@dimecoinnetwork.com" + }, + { + "discord": "dhop14#9359" + } + ], + "protocol": "TCP" + } + ], + "explorer_block_url": "block.dws?" + }, "DIMI": { "coin": "DIMI", "type": "UTXO", @@ -9621,6 +11228,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "DiminutiveCoin Signed Message:\n", "fname": "Diminutive Coin", "rpcport": 49122, "pubtype": 32, @@ -9631,7 +11239,7 @@ "segwit": false, "mm2": 1, "mature_confirmations": 75, - "required_confirmations": 7, + "required_confirmations": 4, "avg_blocktime": 75, "protocol": { "type": "UTXO" @@ -9700,20 +11308,27 @@ "contract_address": "0xA33789a5478Add74e8D7628E817a281aAbD92dA9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xA33789a5478Add74e8D7628E817a281aAbD92dA9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -9726,7 +11341,7 @@ "coinpaprika_id": "dimi-diminutive-coin", "coingecko_id": "diminutive-coin", "livecoinwatch_id": "DIMI", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -9740,7 +11355,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -9798,6 +11413,63 @@ ], "explorer_block_url": "block/" }, + "DODO-ARB20": { + "coin": "DODO-ARB20", + "type": "Arbitrum", + "name": "DODO", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "DODO", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "DODO", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" + } + ], + "explorer_block_url": "block/" + }, "DODO-BEP20": { "coin": "DODO-BEP20", "type": "BEP-20", @@ -9826,20 +11498,35 @@ "contract_address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -9881,22 +11568,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -9930,17 +11625,17 @@ "contract_address": "0x8724F9FB7B3f1bb6f2c90B3Ad3Fd6B3c20A06429" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -10050,20 +11745,27 @@ "contract_address": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xbA2aE424d960c26247Dd6c32edC70B295c744C43", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -10140,20 +11842,27 @@ "contract_address": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7AE5709c585cCFB3e61fF312EC632C21A5F03F70", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -10187,20 +11896,27 @@ "contract_address": "0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -10234,20 +11950,35 @@ "contract_address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -10267,7 +11998,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Polkadot", "rpcport": 80, "mm2": 1, @@ -10282,14 +12013,14 @@ "contract_address": "0xA2c49cEe16a5E5bDEFDe931107dc1fae9f7773E3" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0xA2c49cEe16a5E5bDEFDe931107dc1fae9f7773E3", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -10355,6 +12086,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Doichain Signed Message:\n", "fname": "Doichain", "rpcport": 8339, "pubtype": 52, @@ -10370,6 +12102,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/7070'", "electrum": [ { "url": "big-parrot-60.doi.works:50002", @@ -10377,7 +12110,7 @@ "contact": [ { "github": "https://github.com/doichain/electrum-doi/issues", - "twitter": "example_username" + "twitter": "doichain" } ], "ws-url": "big-parrot-60.doi.works:50004" @@ -10388,7 +12121,7 @@ "contact": [ { "github": "https://github.com/doichain/electrum-doi/issues", - "twitter": "example_username" + "twitter": "doichain" } ], "ws-url": "itchy-jellyfish-89.doi.works:50004" @@ -10398,82 +12131,22 @@ "protocol": "SSL", "contact": [ { - "github": "https://github.com/namecoin/electrum-nmc/issues", - "twitter": "example_username" + "github": "https://github.com/doichain/electrum-doi/issues", + "twitter": "doichain" } ], "ws-url": "pink-deer-69.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:20052", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] }, { - "url": "electrum2.cipig.net:20052", + "url": "ugly-bird-70.doi.works:50002", "protocol": "SSL", "contact": [ { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum1.cipig.net:10052", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" + "github": "https://github.com/doichain/electrum-doi/issues", + "twitter": "doichain" } ], - "protocol": "TCP" + "ws-url": "ugly-bird-70.doi.works:50004" } ], "explorer_block_url": "block/" @@ -10518,6 +12191,11 @@ "url": "electrum3.egulden.org:50002", "protocol": "SSL", "disable_cert_verification": true + }, + { + "url": "holland.ecoincore.com:11017", + "protocol": "SSL", + "disable_cert_verification": true } ], "explorer_block_url": "block.dws?" @@ -10550,20 +12228,35 @@ "contract_address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -10605,22 +12298,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -10653,20 +12354,35 @@ "contract_address": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -10713,22 +12429,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -10757,8 +12481,7 @@ "txfee": 100000, "dust": 54600, "mm2": 1, - "required_confirmations": 2, - "requires_notarization": true, + "required_confirmations": 5, "avg_blocktime": 60, "protocol": { "type": "UTXO" @@ -10788,18 +12511,6 @@ "discord": "cipi#4502" } ] - }, - { - "url": "electrum3.cipig.net:20062", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] } ], "explorer_block_url": "block.dws?" @@ -10845,22 +12556,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -10894,17 +12613,17 @@ "contract_address": "0x6e2D990C8e718E7b6D86ed08eBf0FF2dEc05253B" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -10938,20 +12657,27 @@ "contract_address": "0x7eC26842F195c852Fa843bB9f6D8B583a274a157" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x7eC26842F195c852Fa843bB9f6D8B583a274a157", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -10984,20 +12710,35 @@ "contract_address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -11022,12 +12763,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 61, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 15, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/61'", + "derivation_path": "m/44'/60'", "trezor_coin": "Ethereum Classic", "links": { "homepage": "https://ethereumclassic.org" @@ -11036,13 +12779,13 @@ "fallback_swap_contract": "0x6d9ce4BD298DE38bAfEFD15f5C6f5c95313B1d94", "nodes": [ { - "url": "https://geth-de.etc-network.info" + "url": "https://etc.etcdesktop.com" }, { - "url": "https://geth-at.etc-network.info" + "url": "https://etc.rivet.link" }, { - "url": "https://besu-de.etc-network.info" + "url": "https://rpc.etcinscribe.com" } ], "explorer_block_url": "block/", @@ -11076,20 +12819,27 @@ "contract_address": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x3d6545b08693daE087E957cb1180ee38B9e3c25E", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -11126,22 +12876,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -11176,7 +12934,7 @@ "contract_address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -11186,7 +12944,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/", @@ -11211,16 +12974,33 @@ "rpcport": 80, "mm2": 1, "chain_id": 42161, - "required_confirmations": 3, - "avg_blocktime": 15, + "required_confirmations": 10, + "avg_blocktime": 0.25, "protocol": { "type": "ETH" }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_coins": 300000, + "eth_payment": 700000, + "eth_receiver_spend": 600000, + "eth_sender_refund": 600000 + }, "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", "nodes": [ { "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/", @@ -11254,20 +13034,35 @@ "contract_address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -11288,7 +13083,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Ethereum", "rpcport": 80, "mm2": 1, @@ -11303,17 +13098,23 @@ "contract_address": "0x74b23882a30290451A17c44f4F05243b6b58C76d" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x74b23882a30290451A17c44f4F05243b6b58C76d", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/", @@ -11333,7 +13134,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Ethereum", "rpcport": 80, "mm2": 1, @@ -11348,14 +13149,14 @@ "contract_address": "0x64FF637fB478863B7468bc97D30a5bF3A428a1fD" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x64FF637fB478863B7468bc97D30a5bF3A428a1fD", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -11393,17 +13194,17 @@ "contract_address": "0xf55aF137A98607F7ED2eFEfA4cd2DfE70E4253b1" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/", @@ -11438,20 +13239,35 @@ "contract_address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -11493,22 +13309,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -11542,20 +13366,35 @@ "contract_address": "0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 90000, + "erc20_payment": 150000, + "erc20_receiver_spend": 120000, + "erc20_sender_refund": 120000 + }, "contract_address": "0x18ec0A6E18E5bc3784fDd3a3634b31245ab704F6", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -11596,26 +13435,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block/", - "forex_id": "EUR" + "explorer_block_url": "block/" }, "EUROE-PLG20": { "coin": "EUROE-PLG20", @@ -11646,20 +13492,35 @@ "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x820802Fa8a99901F52e39acD21177b0BE6EE2974", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -11705,26 +13566,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block/", - "forex_id": "EUR" + "explorer_block_url": "block/" }, "EURS-PLG20": { "coin": "EURS-PLG20", @@ -11755,24 +13623,38 @@ "contract_address": "0xE111178A87A3BFf0c8d18DECBa5798827539Ae99" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xE111178A87A3BFf0c8d18DECBa5798827539Ae99", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "EUR" + "explorer_block_url": "block/" }, "EWT": { "coin": "EWT", @@ -11793,12 +13675,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 246, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 5, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/246'", + "derivation_path": "m/44'/60'", "trezor_coin": "Energy Web", "links": { "homepage": "https://www.energyweb.org" @@ -11841,20 +13725,160 @@ "contract_address": "0xc88f6F4C400321FAd5c26d574f9933a991011360" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xc88f6F4C400321FAd5c26d574f9933a991011360", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, + "FDUSD-ERC20": { + "coin": "FDUSD-ERC20", + "type": "ERC-20", + "name": "First Digital USD", + "coinpaprika_id": "fdusd-first-digital-usd", + "coingecko_id": "first-digital-usd", + "livecoinwatch_id": "FDUSD", + "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": "First Digital 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": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://firstdigitallabs.com" + }, + "contract_address": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "FDUSD-BEP20": { + "coin": "FDUSD-BEP20", + "type": "BEP-20", + "name": "First Digital USD", + "coinpaprika_id": "fdusd-first-digital-usd", + "coingecko_id": "first-digital-usd", + "livecoinwatch_id": "FDUSD", + "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": "First Digital USD", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://firstdigitallabs.com" + }, + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 70000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -11896,22 +13920,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -11952,22 +13984,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -12001,20 +14041,27 @@ "contract_address": "0x031b41e504677879370e9DBcF937283A8691Fa7f" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x031b41e504677879370e9DBcF937283A8691Fa7f", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12049,20 +14096,27 @@ "contract_address": "0x7583FEDDbceFA813dc18259940F76a02710A8905" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x7583FEDDbceFA813dc18259940F76a02710A8905", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -12095,20 +14149,35 @@ "contract_address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12150,22 +14219,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -12184,7 +14261,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Filecoin", "rpcport": 80, "mm2": 1, @@ -12199,14 +14276,14 @@ "contract_address": "0xae3a768f9aB104c69A7CD6041fE16fFa235d1810" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0xae3a768f9aB104c69A7CD6041fE16fFa235d1810", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -12242,6 +14319,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/136'", "trezor_coin": "Firo", "links": { "github": "https://github.com/firoorg/firo", @@ -12274,6 +14352,15 @@ "github": "https://github.com/firoorg/electrumx-firo/issues" } ] + }, + { + "url": "electrumx03.firo.org:50001", + "protocol": "TCP", + "contact": [ + { + "github": "https://github.com/firoorg/electrumx-firo/issues" + } + ] } ], "explorer_block_url": "block/", @@ -12307,20 +14394,35 @@ "contract_address": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12381,15 +14483,6 @@ "discord": "motty#8318" } ] - }, - { - "url": "electrumx1.fujicoin.org:50001", - "protocol": "TCP", - "contact": [ - { - "discord": "motty#8318" - } - ] } ], "explorer_block_url": "block/" @@ -12452,15 +14545,6 @@ "discord": "motty#8318" } ] - }, - { - "url": "electrumx1.fujicoin.org:50001", - "protocol": "TCP", - "contact": [ - { - "discord": "motty#8318" - } - ] } ], "explorer_block_url": "block/" @@ -12493,20 +14577,27 @@ "contract_address": "0xd4451a8eE7D0978c60651a114b742Fa8d5857CDf" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xd4451a8eE7D0978c60651a114b742Fa8d5857CDf", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12540,20 +14631,27 @@ "contract_address": "0xda73AE86D38D9b5D22C64722320cCC071cB79ba3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xda73AE86D38D9b5D22C64722320cCC071cB79ba3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12587,20 +14685,35 @@ "contract_address": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 85000, + "erc20_payment": 140000, + "erc20_receiver_spend": 110000, + "erc20_sender_refund": 110000 + }, "contract_address": "0xfb5B838b6cfEEdC2873aB27866079AC55363D37E", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12642,22 +14755,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -12691,20 +14812,35 @@ "contract_address": "0xC943c5320B9c18C153d1e2d12cC3074bebfb31A2" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xC943c5320B9c18C153d1e2d12cC3074bebfb31A2", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -12890,6 +15026,7 @@ "protocol": { "type": "ETH" }, + "derivation_path": "m/44'/60'", "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", "nodes": [ @@ -12918,12 +15055,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 250, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 1.8, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "trezor_coin": "Fantom Opera", "links": { "homepage": "https://fantom.foundation" @@ -12932,10 +15071,16 @@ "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/", @@ -12969,20 +15114,27 @@ "contract_address": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xAD29AbB318791D579433D831ed122aFeAf29dcfe", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -13029,22 +15181,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -13079,20 +15239,35 @@ "contract_address": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xDE2F075f6F14EB9D96755b24E416A53E736Ca363", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -13134,22 +15309,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -13183,20 +15366,35 @@ "contract_address": "0x1a3acf6D19267E2d3e7f898f42803e90C9219062" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1a3acf6D19267E2d3e7f898f42803e90C9219062", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -13230,7 +15428,7 @@ "contract_address": "0x214DB107654fF987AD859F34125307783fC8e387" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x214DB107654fF987AD859F34125307783fC8e387", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -13240,7 +15438,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -13274,17 +15477,25 @@ "contract_address": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", + "gas_limit": { + "eth_send_erc20": 1000000, + "erc20_payment": 1000000, + "erc20_receiver_spend": 1000000, + "erc20_sender_refund": 1000000 + }, "contract_address": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -13318,17 +15529,23 @@ "contract_address": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x7d016eec9c25232b01F23EF992D98ca97fc2AF5a", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -13369,22 +15586,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -13418,20 +15643,27 @@ "contract_address": "0x7dDEE176F665cD201F93eEDE625770E2fD911990" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7dDEE176F665cD201F93eEDE625770E2fD911990", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -13473,22 +15705,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -13522,20 +15762,35 @@ "contract_address": "0x8d1566569d5b695d44a9a234540f68D393cDC40D" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8d1566569d5b695d44a9a234540f68D393cDC40D", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -13612,20 +15867,27 @@ "contract_address": "0x8E10F08C9A56a93B6adbfBcFda421919B3357596" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x8E10F08C9A56a93B6adbfBcFda421919B3357596", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -13660,20 +15922,35 @@ "contract_address": "0x72fF5742319eF07061836F5C924aC6D72c919080" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x72fF5742319eF07061836F5C924aC6D72c919080", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -13709,6 +15986,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/101'", "links": { "github": "https://github.com/goldcoin/goldcoin", "homepage": "https://www.goldcoinproject.org" @@ -13721,18 +15999,14 @@ { "url": "electrum2.netseed.net:50002", "protocol": "SSL" - }, - { - "url": "electrum1.netseed.net:50001", - "protocol": "TCP" } ], "explorer_block_url": "block.dws?" }, - "GLEEC": { - "coin": "GLEEC", + "GLEEC-OLD": { + "coin": "GLEEC-OLD", "type": "Smart Chain", - "name": "Gleec", + "name": "Gleec (OLD)", "coinpaprika_id": "gleec-gleec-coin", "coingecko_id": "gleec-coin", "livecoinwatch_id": "GLEEC", @@ -13746,13 +16020,13 @@ "wallet_only": false, "sign_message_prefix": "Komodo Signed Message:\n", "asset": "GLEEC", - "fname": "Gleec", + "fname": "Gleec (OLD)", "rpcport": 23226, "txversion": 4, "overwintered": 1, "mm2": 1, - "required_confirmations": 2, - "requires_notarization": true, + "required_confirmations": 4, + "requires_notarization": false, "avg_blocktime": 60, "protocol": { "type": "UTXO" @@ -13799,6 +16073,76 @@ ], "explorer_block_url": "block/" }, + "GLEEC": { + "coin": "GLEEC", + "type": "Smart Chain", + "name": "Gleec", + "coinpaprika_id": "gleec-gleec-coin", + "coingecko_id": "gleec-coin", + "livecoinwatch_id": "GLEEC", + "explorer_url": "https://explorer.gleec.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": "GLEEC", + "fname": "Gleec", + "rpcport": 23345, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "electrum": [ + { + "url": "electrum1.cipig.net:20025", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum2.cipig.net:20025", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum3.cipig.net:20025", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + } + ], + "explorer_block_url": "block/" + }, "GLM-ERC20": { "coin": "GLM-ERC20", "type": "ERC-20", @@ -13835,22 +16179,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -13884,20 +16236,35 @@ "contract_address": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -13930,20 +16297,27 @@ "contract_address": "0xA55C1e67039B6d59E91eb4cDa2bfc5A854989102" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xA55C1e67039B6d59E91eb4cDa2bfc5A854989102", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -13978,20 +16352,27 @@ "contract_address": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -14026,20 +16407,92 @@ "contract_address": "0x714DB550b574b3E927af3D93E26127D15721D4C2" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x714DB550b574b3E927af3D93E26127D15721D4C2", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "GMX-ARB20": { + "coin": "GMX-ARB20", + "type": "Arbitrum", + "name": "GMX", + "coinpaprika_id": "gmx-gmx", + "coingecko_id": "gmx", + "livecoinwatch_id": "__GMX", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "GMX", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -14073,7 +16526,15 @@ "contract_address": "0x62edc0692BD897D2295872a9FFCac5425011c661" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, "contract_address": "0x62edc0692BD897D2295872a9FFCac5425011c661", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -14083,7 +16544,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -14128,22 +16594,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -14177,20 +16651,84 @@ "contract_address": "0x5FFD62D3C3eE2E81C00A7b9079FB248e7dF024A8" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x5FFD62D3C3eE2E81C00A7b9079FB248e7dF024A8", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "GNS-ARB20": { + "coin": "GNS-ARB20", + "type": "Arbitrum", + "name": "Gains Network", + "coinpaprika_id": "gns-gains-network", + "coingecko_id": "gains-network", + "livecoinwatch_id": "GNS", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Gains Network", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x18c11FD286C5EC11c3b683Caa813B77f5163A122" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x18c11FD286C5EC11c3b683Caa813B77f5163A122", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -14224,20 +16762,35 @@ "contract_address": "0xE5417Af564e4bFDA1c483642db72007871397896" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xE5417Af564e4bFDA1c483642db72007871397896", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -14285,22 +16838,11 @@ ] }, { - "url": "fr.garlium.crapules.org:50002", + "url": "electrum.niftybakes.com:50002", "protocol": "SSL", - "disable_cert_verification": true, "contact": [ { - "discord": "orpheas#1503" - } - ] - }, - { - "url": "uk.garlium.crapules.org:50002", - "protocol": "SSL", - "disable_cert_verification": true, - "contact": [ - { - "discord": "orpheas#1503" + "discord": "405566674448810005" } ] } @@ -14343,22 +16885,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -14392,20 +16942,27 @@ "contract_address": "0x7283DfA2d8D7e277b148cc263B5d8Ae02f1076D3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7283DfA2d8D7e277b148cc263B5d8Ae02f1076D3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -14463,7 +17020,7 @@ ] }, { - "url": "electrum1.groestlcoin.org:50001", + "url": "electrum12.groestlcoin.org:50001", "contact": [ { "email": "jackielove4u@hotmail.com" @@ -14475,7 +17032,307 @@ "protocol": "TCP" }, { - "url": "electrum12.groestlcoin.org:50001", + "url": "electrum13.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum14.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum15.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum16.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum17.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum18.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum19.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum2.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum20.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum21.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum22.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum23.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum24.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum25.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum26.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum27.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum28.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum31.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum32.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum33.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum34.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum35.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum36.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum37.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum38.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + }, + { + "url": "electrum39.groestlcoin.org:50001", "contact": [ { "email": "jackielove4u@hotmail.com" @@ -14485,6 +17342,75 @@ } ], "protocol": "TCP" + }, + { + "url": "electrum40.groestlcoin.org:50001", + "contact": [ + { + "email": "jackielove4u@hotmail.com" + }, + { + "discord": "jackielove4u#0412" + } + ], + "protocol": "TCP" + } + ], + "explorer_block_url": "block/" + }, + "GRT-ARB20": { + "coin": "GRT-ARB20", + "type": "Arbitrum", + "name": "The Graph", + "coinpaprika_id": "grt-the-graph", + "coingecko_id": "the-graph", + "livecoinwatch_id": "GRT", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "The Graph", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x9623063377AD1B27544C965cCd7342f7EA7e88C7" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x9623063377AD1B27544C965cCd7342f7EA7e88C7", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -14518,7 +17444,7 @@ "contract_address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -14528,7 +17454,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -14574,22 +17505,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -14623,17 +17562,17 @@ "contract_address": "0xb49dd3eDB98FBe82A01DFcb556Cd016964baf5A3" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -14667,20 +17606,35 @@ "contract_address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -14714,20 +17668,27 @@ "contract_address": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -14769,24 +17730,90 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "GURU-BEP20": { + "coin": "GURU-BEP20", + "type": "BEP-20", + "name": "MobilityGuru", + "coinpaprika_id": "guru-mobilityguru-token", + "coingecko_id": "", + "livecoinwatch_id": "_GURU", + "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": "MobilityGuru", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xc166A8dd8e48355774ac95933f746b57A724A464" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://mobilityguru.org" + }, + "contract_address": "0xc166A8dd8e48355774ac95933f746b57A724A464", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], + "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, "GUSD-ERC20": { @@ -14825,22 +17852,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -14886,22 +17921,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -14935,20 +17978,35 @@ "contract_address": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -14989,22 +18047,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -15038,20 +18104,27 @@ "contract_address": "0x0C51f415cF478f8D08c246a6C6Ee180C5dC3A012" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x0C51f415cF478f8D08c246a6C6Ee180C5dC3A012", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -15080,7 +18153,7 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1010'", + "derivation_path": "m/44'/60'", "trezor_coin": "Huobi ECO Chain", "links": { "homepage": "https://www.hecochain.com" @@ -15089,7 +18162,7 @@ "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -15136,22 +18209,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -15170,7 +18251,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "HUSD", "rpcport": 80, "mm2": 1, @@ -15192,22 +18273,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -15226,7 +18315,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "HUSD", "rpcport": 80, "mm2": 1, @@ -15241,14 +18330,14 @@ "contract_address": "0x0298c2b32eaE4da002a15f36fdf7615BEa3DA047" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x0298c2b32eaE4da002a15f36fdf7615BEa3DA047", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -15270,7 +18359,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "HUSD", "rpcport": 80, "mm2": 1, @@ -15285,17 +18374,17 @@ "contract_address": "0xBEc1e1009CE00ECf7F16372451Ac849b39C32897" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -15314,7 +18403,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "HUSD", "rpcport": 80, "mm2": 1, @@ -15329,20 +18418,208 @@ "contract_address": "0x2088C47Fc0c78356c622F79dBa4CbE1cCfA84A91" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x2088C47Fc0c78356c622F79dBa4CbE1cCfA84A91", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "IDRT-ERC20": { + "coin": "IDRT-ERC20", + "type": "ERC-20", + "name": "Rupiah Token", + "coinpaprika_id": "idrt-rupiah-token", + "coingecko_id": "rupiah-token", + "livecoinwatch_id": "IDRT", + "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": "Rupiah Token", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 2, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x998FFE1E43fAcffb941dc337dD0468d52bA5b48A", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "IDRT-BEP20": { + "coin": "IDRT-BEP20", + "type": "BEP-20", + "name": "Rupiah Token", + "coinpaprika_id": "idrt-rupiah-token", + "coingecko_id": "rupiah-token", + "livecoinwatch_id": "IDRT", + "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": "Rupiah Token", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 2, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x66207E39bb77e6B99aaB56795C7c340C08520d83" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x66207E39bb77e6B99aaB56795C7c340C08520d83", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, + "IDRT-PLG20": { + "coin": "IDRT-PLG20", + "type": "Matic", + "name": "Rupiah Token", + "coinpaprika_id": "idrt-rupiah-token", + "coingecko_id": "rupiah-token", + "livecoinwatch_id": "IDRT", + "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": "Rupiah Token", + "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": "0x554cd6bdD03214b10AafA3e0D4D42De0C5D2937b" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, + "contract_address": "0x554cd6bdD03214b10AafA3e0D4D42De0C5D2937b", + "parent_coin": "MATIC", + "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -15362,6 +18639,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "InfiniLooP Signed Message:\n", "fname": "InfiniLooP", "isPoS": 1, "rpcport": 9459, @@ -15377,7 +18655,43 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/722'", + "links": { + "github": "https://github.com/WikiMin3R/InfiniLooP", + "homepage": "https://infiniloop.io" + }, "electrum": [ + { + "url": "il8p-ex-five.ewmci.online:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "475820011634819072" + } + ] + }, + { + "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" + } + ] + }, { "url": "il9p.electrumx.transcenders.name:50002", "protocol": "SSL", @@ -15432,20 +18746,27 @@ "contract_address": "0xb49a312677BA1E80DDe23C17E46E80B3E86b533d" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xb49a312677BA1E80DDe23C17E46E80B3E86b533d", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -15480,20 +18801,27 @@ "contract_address": "0x2bAa79e7C13C302210436455925E68aD8fA687F0" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x2bAa79e7C13C302210436455925E68aD8fA687F0", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -15527,20 +18855,27 @@ "contract_address": "0x0483Ddbb510d22b206f2F3bDAC18528C952c4213" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x0483Ddbb510d22b206f2F3bDAC18528C952c4213", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -15581,22 +18916,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -15630,20 +18973,35 @@ "contract_address": "0x4d5AC5cc4f8aBdf2EC2Cb986C00C382369f787D4" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x4d5AC5cc4f8aBdf2EC2Cb986C00C382369f787D4", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -15685,22 +19043,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -15733,20 +19099,35 @@ "contract_address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -15787,22 +19168,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -15835,20 +19224,35 @@ "contract_address": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -15882,20 +19286,35 @@ "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x9678E42ceBEb63F23197D726B29b1CB20d0064E5", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -15930,24 +19349,158 @@ "contract_address": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "JASMY-ERC20": { + "coin": "JASMY-ERC20", + "type": "ERC-20", + "name": "JasmyCoin", + "coinpaprika_id": "jasmy-jasmycoin", + "coingecko_id": "jasmycoin", + "livecoinwatch_id": "JASMY", + "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": "JasmyCoin", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x7420B4b9a0110cdC71fB720908340C03F9Bc03EC", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" }, + "JASMY-BEP20": { + "coin": "JASMY-BEP20", + "type": "BEP-20", + "name": "JasmyCoin", + "coinpaprika_id": "jasmy-jasmycoin", + "coingecko_id": "jasmycoin", + "livecoinwatch_id": "JASMY", + "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": "JasmyCoin", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x15669CF161946C09a8B207650BfBB00e3d8A2E3E" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0x15669CF161946C09a8B207650BfBB00e3d8A2E3E", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, "JDB-BEP20": { "coin": "JDB-BEP20", "type": "BEP-20", @@ -15976,20 +19529,27 @@ "contract_address": "0x7874CAFf04AFB8B6f5cbBE3ebec3f83Fcd882272" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7874CAFf04AFB8B6f5cbBE3ebec3f83Fcd882272", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -16024,20 +19584,35 @@ "contract_address": "0xCB7F1Ef7246D1497b985f7FC45A1A31F04346133" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xCB7F1Ef7246D1497b985f7FC45A1A31F04346133", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16072,20 +19647,27 @@ "contract_address": "0x316622977073BBC3dF32E7d2A9B3c77596a0a603" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x316622977073BBC3dF32E7d2A9B3c77596a0a603", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -16121,20 +19703,35 @@ "contract_address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16169,20 +19766,35 @@ "contract_address": "0x8ca194A3b22077359b5732DE53373D4afC11DeE3" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8ca194A3b22077359b5732DE53373D4afC11DeE3", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16217,7 +19829,7 @@ "contract_address": "0x2d5563da42b06FbBF9c67b7DC073cF6A7842239e" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x2d5563da42b06FbBF9c67b7DC073cF6A7842239e", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -16227,7 +19839,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -16261,20 +19878,27 @@ "contract_address": "0x7c869b5A294b1314E985283d01C702B62224a05f" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7c869b5A294b1314E985283d01C702B62224a05f", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -16316,26 +19940,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block/", - "forex_id": "CHF" + "explorer_block_url": "block/" }, "JCHF-PLG20": { "coin": "JCHF-PLG20", @@ -16366,24 +19997,38 @@ "contract_address": "0xbD1463F02f61676d53fd183C2B19282BFF93D099" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xbD1463F02f61676d53fd183C2B19282BFF93D099", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "CHF" + "explorer_block_url": "block/" }, "JCNY-PLG20": { "coin": "JCNY-PLG20", @@ -16414,20 +20059,35 @@ "contract_address": "0x84526c812D8f6c4fD6C1a5B68713AFF50733E772" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x84526c812D8f6c4fD6C1a5B68713AFF50733E772", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16462,7 +20122,7 @@ "contract_address": "0x9fB1d52596c44603198fB0aee434fac3a679f702" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x9fB1d52596c44603198fB0aee434fac3a679f702", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -16472,7 +20132,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -16506,20 +20171,27 @@ "contract_address": "0x23b8683Ff98F9E4781552DFE6f12Aa32814924e8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x23b8683Ff98F9E4781552DFE6f12Aa32814924e8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -16561,22 +20233,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -16610,20 +20290,35 @@ "contract_address": "0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x4e3Decbb3645551B8A19f0eA1678079FCB33fB4c", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -16657,20 +20352,27 @@ "contract_address": "0x048E9b1ddF9EBbb224812372280e94Ccac443f9e" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x048E9b1ddF9EBbb224812372280e94Ccac443f9e", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -16712,26 +20414,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block/", - "forex_id": "GBP" + "explorer_block_url": "block/" }, "JGBP-PLG20": { "coin": "JGBP-PLG20", @@ -16762,24 +20471,38 @@ "contract_address": "0x767058F11800FBA6A682E73A6e79ec5eB74Fac8c" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x767058F11800FBA6A682E73A6e79ec5eB74Fac8c", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "GBP" + "explorer_block_url": "block/" }, "JGOLD-PLG20": { "coin": "JGOLD-PLG20", @@ -16810,20 +20533,27 @@ "contract_address": "0x192Ef3FFF1708456D3A1F21354FA8d6bFd86b45c" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x192Ef3FFF1708456D3A1F21354FA8d6bFd86b45c", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16858,20 +20588,35 @@ "contract_address": "0x8343091F2499FD4b6174A46D067A920a3b851FF9" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8343091F2499FD4b6174A46D067A920a3b851FF9", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16906,20 +20651,27 @@ "contract_address": "0xa22f6bc96f13bcC84dF36109c973d3c0505a067E" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xa22f6bc96f13bcC84dF36109c973d3c0505a067E", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -16954,20 +20706,35 @@ "contract_address": "0xBD1fe73e1f12bD2bc237De9b626F056f21f86427" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xBD1fe73e1f12bD2bc237De9b626F056f21f86427", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17002,20 +20769,35 @@ "contract_address": "0x6b526Daf03B4C47AF2bcc5860B12151823Ff70E0" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x6b526Daf03B4C47AF2bcc5860B12151823Ff70E0", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17050,20 +20832,27 @@ "contract_address": "0x486880FB16408b47f928F472f57beC55AC6089d1" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x486880FB16408b47f928F472f57beC55AC6089d1", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17098,20 +20887,27 @@ "contract_address": "0x08E6d1F0c4877Ef2993Ad733Fc6F1D022d0E9DBf" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x08E6d1F0c4877Ef2993Ad733Fc6F1D022d0E9DBf", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17146,7 +20942,7 @@ "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -17156,11 +20952,15 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], - "explorer_block_url": "block/", - "forex_id": "JPY" + "explorer_block_url": "block/" }, "JPYC-PLG20": { "coin": "JPYC-PLG20", @@ -17191,24 +20991,38 @@ "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "JPY" + "explorer_block_url": "block/" }, "JRT-ERC20": { "coin": "JRT-ERC20", @@ -17245,22 +21059,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -17294,20 +21116,27 @@ "contract_address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -17341,20 +21170,27 @@ "contract_address": "0x197E5d6CcfF265AC3E303a34Db360ee1429f5d1A" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x197E5d6CcfF265AC3E303a34Db360ee1429f5d1A", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17389,20 +21225,35 @@ "contract_address": "0xa926db7a4CC0cb1736D5ac60495ca8Eb7214B503" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xa926db7a4CC0cb1736D5ac60495ca8Eb7214B503", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17437,20 +21288,27 @@ "contract_address": "0x2A227fc77Bb2cf8f1881a04eCC8fA01EC57EC9fc" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x2A227fc77Bb2cf8f1881a04eCC8fA01EC57EC9fc", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17485,20 +21343,27 @@ "contract_address": "0xc948EE9a0687C292ac4d8C1e2557aD652D6baf44" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xc948EE9a0687C292ac4d8C1e2557aD652D6baf44", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -17533,20 +21398,35 @@ "contract_address": "0xeA998D307ACA04D4f0A3B3036Aba84AE2E409C0A" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xeA998D307ACA04D4f0A3B3036Aba84AE2E409C0A", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -17571,12 +21451,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 321, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 3, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "trezor_coin": "KCC", "links": { "homepage": "https://kcc.io" @@ -17584,218 +21466,11 @@ "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ - { - "url": "https://rpc-mainnet.kcc.network" - }, { "url": "https://kcc-rpc.com" - } - ], - "explorer_block_url": "block/" - }, - "KIP0002": { - "coin": "KIP0002", - "type": "Smart Chain", - "name": "KIP0002", - "coinpaprika_id": "", - "coingecko_id": "", - "livecoinwatch_id": "", - "explorer_url": "https://kip0002.kmdexplorer.io/", - "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": "KIP0002", - "fname": "KIP0002", - "rpcport": 46856, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 2, - "avg_blocktime": 60, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo", - "electrum": [ - { - "url": "electrum1.cipig.net:20014", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum2.cipig.net:20014", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum3.cipig.net:20014", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - } - ], - "explorer_block_url": "block/" - }, - "KIP0003": { - "coin": "KIP0003", - "type": "Smart Chain", - "name": "KIP0003", - "coinpaprika_id": "", - "coingecko_id": "", - "livecoinwatch_id": "", - "explorer_url": "https://kip0003.kmdexplorer.io/", - "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": "KIP0003", - "fname": "KIP0003", - "rpcport": 46866, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 2, - "avg_blocktime": 60, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo", - "electrum": [ - { - "url": "electrum1.cipig.net:20015", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum2.cipig.net:20015", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum3.cipig.net:20015", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - } - ], - "explorer_block_url": "block/" - }, - "KIP0004": { - "coin": "KIP0004", - "type": "Smart Chain", - "name": "KIP0004", - "coinpaprika_id": "", - "coingecko_id": "", - "livecoinwatch_id": "", - "explorer_url": "https://kip0004.kmdexplorer.io/", - "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": "KIP0004", - "fname": "KIP0004", - "rpcport": 46876, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 2, - "avg_blocktime": 60, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo", - "electrum": [ - { - "url": "electrum1.cipig.net:20016", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] }, { - "url": "electrum2.cipig.net:20016", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum3.cipig.net:20016", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -17908,20 +21583,35 @@ "contract_address": "0x2003f7ba57Ea956B05B85C60B4B2Ceea9b111256" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x2003f7ba57Ea956B05B85C60B4B2Ceea9b111256", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -17956,20 +21646,27 @@ "contract_address": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xfe56d5892BDffC7BF58f2E84BE1b2C32D21C308b", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -18015,22 +21712,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -18064,20 +21769,35 @@ "contract_address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -18111,7 +21831,7 @@ "contract_address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -18121,7 +21841,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -18225,92 +21950,38 @@ "contract_address": "0x2aa69E8D25C045B659787BC1f03ce47a388DB6E8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x2aa69E8D25C045B659787BC1f03ce47a388DB6E8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "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:20019", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "electrum2.cipig.net:20019", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "electrum3.cipig.net:20019", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], + "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, "LBC": { @@ -18464,15 +22135,6 @@ { "url": "88.99.26.209:5140", "protocol": "TCP" - }, - { - "url": "lcc-ex-one.ewmci.online:50001", - "protocol": "TCP", - "contact": [ - { - "discord": "475820011634819072" - } - ] } ], "explorer_block_url": "block.dws?" @@ -18528,15 +22190,6 @@ { "url": "88.99.26.209:5140", "protocol": "TCP" - }, - { - "url": "lcc-ex-one.ewmci.online:50001", - "protocol": "TCP", - "contact": [ - { - "discord": "475820011634819072" - } - ] } ], "explorer_block_url": "block.dws?" @@ -18577,22 +22230,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -18626,20 +22287,35 @@ "contract_address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -18684,22 +22360,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -18733,20 +22417,27 @@ "contract_address": "0x06D02e9D62A13fC76BB229373FB3BBBD1101D2fC" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x06D02e9D62A13fC76BB229373FB3BBBD1101D2fC", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -18786,22 +22477,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -18835,7 +22534,7 @@ "contract_address": "0x5947BB275c521040051D82396192181b413227A3" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x5947BB275c521040051D82396192181b413227A3", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -18845,7 +22544,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -18878,20 +22582,27 @@ "contract_address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -18911,7 +22622,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Chainlink", "rpcport": 80, "mm2": 1, @@ -18926,17 +22637,23 @@ "contract_address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0xb3654dc3D10Ea7645f8319668E8F54d2574FBdC8", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -18955,7 +22672,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Chainlink", "rpcport": 80, "mm2": 1, @@ -18970,14 +22687,14 @@ "contract_address": "0x9e004545c59D359F6B7BFB06a26390b087717b42" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x9e004545c59D359F6B7BFB06a26390b087717b42", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -19014,17 +22731,17 @@ "contract_address": "0x47841910329aaa6b88D5e9DcdE9000195151dc72" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -19058,22 +22775,95 @@ "contract_address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "LOLS-BEP20": { + "coin": "LOLS-BEP20", + "type": "BEP-20", + "name": "LOLSmash", + "coinpaprika_id": "lols-lolsmash", + "coingecko_id": "", + "livecoinwatch_id": "LOLS", + "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": "LOLSmash", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x19961cf3B822d37e16E310AB7C6C0277F95f31c3" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://lolsmash.net" + }, + "contract_address": "0x19961cf3B822d37e16E310AB7C6C0277F95f31c3", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], + "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, "LOOP-BEP20": { @@ -19105,20 +22895,27 @@ "contract_address": "0xcE186ad6430E2Fe494a22C9eDbD4c68794a28B35" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xcE186ad6430E2Fe494a22C9eDbD4c68794a28B35", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -19165,22 +22962,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -19214,20 +23019,35 @@ "contract_address": "0x66e4d38b20173F509A1fF5d82866949e4fE898da" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x66e4d38b20173F509A1fF5d82866949e4fE898da", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -19262,108 +23082,27 @@ "contract_address": "0x84e1670F61347CDaeD56dcc736FB990fBB47ddC1" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x84e1670F61347CDaeD56dcc736FB990fBB47ddC1", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" - } - ], - "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": false, - "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": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "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" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -19403,22 +23142,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -19464,22 +23211,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -19513,20 +23268,35 @@ "contract_address": "0xE6Ce27025F13f5213bBc560dC275e292965a392F" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xE6Ce27025F13f5213bBc560dC275e292965a392F", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -19561,20 +23331,27 @@ "contract_address": "0x3F8a14f5a3Ee2F4A3Ed61cCF5EEA3c9535C090C8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x3F8a14f5a3Ee2F4A3Ed61cCF5EEA3c9535C090C8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -19773,15 +23550,15 @@ "derivation_path": "m/44'/191'", "electrum": [ { - "url": "electrum5.getlynx.io:50002", + "url": "electrum7.getlynx.io:50002", "protocol": "SSL" }, { - "url": "electrum6.getlynx.io:50002", + "url": "electrum8.getlynx.io:50002", "protocol": "SSL" }, { - "url": "electrum7.getlynx.io:50002", + "url": "electrum9.getlynx.io:50002", "protocol": "SSL" } ], @@ -19828,22 +23605,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -19877,20 +23662,27 @@ "contract_address": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -19925,17 +23717,17 @@ "contract_address": "0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -19969,20 +23761,35 @@ "contract_address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -20016,20 +23823,27 @@ "contract_address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -20071,22 +23885,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -20120,20 +23942,35 @@ "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -20162,13 +23999,14 @@ "protocol": { "type": "ETH" }, + "derivation_path": "m/44'/60'", "swap_contract_address": "0x73c1Dd989218c3A154C71Fc08Eb55A24Bd2B3A10", "nodes": [ { - "url": "https://rpc-mumbai.matic.today" + "url": "https://matic-mumbai.chainstacklabs.com" }, { - "url": "https://matic-mumbai.chainstacklabs.com" + "url": "https://rpc-mumbai.matic.today" }, { "url": "https://rpc-mumbai.maticvigil.com" @@ -20195,12 +24033,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 137, + "use_access_list": true, + "max_eth_tx_type": 2, "avg_blocktime": 1.8, "required_confirmations": 20, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "trezor_coin": "Polygon", "links": { "homepage": "https://polygon.technology/" @@ -20209,13 +24049,20 @@ "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", @@ -20249,20 +24096,35 @@ "contract_address": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -20309,22 +24171,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -20344,7 +24214,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Polygon", "rpcport": 80, "mm2": 1, @@ -20359,14 +24229,14 @@ "contract_address": "0xdB11743fe8B129b49b11236E8a715004BDabe7e5" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0xdB11743fe8B129b49b11236E8a715004BDabe7e5", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -20404,17 +24274,17 @@ "contract_address": "0x1B8e27ABA297466fc6765Ce55BD12A8E216759da" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/", @@ -20434,7 +24304,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Merit Circle", "rpcport": 80, "mm2": 1, @@ -20456,22 +24326,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -20490,7 +24368,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Merit Circle", "rpcport": 80, "mm2": 1, @@ -20505,20 +24383,27 @@ "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x949D48EcA67b17269629c7194F4b727d4Ef9E5d6", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -20594,6 +24479,79 @@ ], "explorer_block_url": "block/" }, + "MDX": { + "coin": "MDX", + "type": "Smart Chain", + "name": "Mandala", + "coinpaprika_id": "mdx-mandala-exchange-token", + "coingecko_id": "mandala-exchange-token", + "livecoinwatch_id": "MDX", + "explorer_url": "https://mdx.xpl.monster/", + "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": "MDX", + "fname": "Mandala", + "rpcport": 18482, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "links": { + "homepage": "https://mandala.exchange" + }, + "electrum": [ + { + "url": "electrum1.cipig.net:20005", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum2.cipig.net:20005", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum3.cipig.net:20005", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + } + ], + "explorer_block_url": "block/" + }, "MINDS-ERC20": { "coin": "MINDS-ERC20", "type": "ERC-20", @@ -20634,95 +24592,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "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:20069", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] }, { - "url": "electrum2.cipig.net:20069", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" }, { - "url": "electrum3.cipig.net:20069", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block.dws?" + "explorer_block_url": "block/" }, "MINU-BEP20": { "coin": "MINU-BEP20", @@ -20753,20 +24649,27 @@ "contract_address": "0xf48f91df403976060cC05dBbf8A0901b09fdeFd4" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xf48f91df403976060cC05dBbf8A0901b09fdeFd4", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -20808,22 +24711,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -20857,20 +24768,27 @@ "contract_address": "0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -20905,7 +24823,7 @@ "contract_address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x88128fd4b259552A9A1D457f435a6527AAb72d42", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -20915,7 +24833,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -20948,20 +24871,27 @@ "contract_address": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -21008,22 +24938,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -21057,17 +24995,17 @@ "contract_address": "0xdE81028C743f5304fe2cdEfac588f572d629a687" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -21101,20 +25039,35 @@ "contract_address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x6f7C932e7684666C9fd1d44527765433e01fF61d", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -21158,22 +25111,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -21207,7 +25168,7 @@ "contract_address": "0x993163CaD35162fB579D7B64e6695cB076EF5064" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x993163CaD35162fB579D7B64e6695cB076EF5064", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -21217,7 +25178,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -21251,20 +25217,27 @@ "contract_address": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xBF05279F9Bf1CE69bBFEd670813b7e431142Afa4", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -21284,7 +25257,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Million", "rpcport": 80, "mm2": 1, @@ -21299,17 +25272,19 @@ "contract_address": "0x95bf7E307BC1ab0BA38ae10fc27084bC36FcD605" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "contract_address": "0x95bf7E307BC1ab0BA38ae10fc27084bC36FcD605", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -21343,20 +25318,27 @@ "contract_address": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x5647Fe4281F8F6F01E84BCE775AD4b828A7b8927", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -21471,6 +25453,127 @@ ], "explorer_block_url": "block/" }, + "MOR-ERC20": { + "coin": "MOR-ERC20", + "type": "ERC-20", + "name": "Morpheus", + "coinpaprika_id": "mor-morpheusai", + "coingecko_id": "morpheusai", + "livecoinwatch_id": "____MOR", + "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": "Morpheus", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0xcBB8f1BDA10b9696c57E13BC128Fe674769DCEc0", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "MOR-ARB20": { + "coin": "MOR-ARB20", + "type": "Arbitrum", + "name": "Morpheus", + "coinpaprika_id": "mor-morpheusai", + "coingecko_id": "morpheusai", + "livecoinwatch_id": "____MOR", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Morpheus", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x092bAaDB7DEf4C3981454dD9c0A0D7FF07bCFc86" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x092bAaDB7DEf4C3981454dD9c0A0D7FF07bCFc86", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" + } + ], + "explorer_block_url": "block/" + }, "MOVR": { "coin": "MOVR", "type": "Moonriver", @@ -21495,19 +25598,28 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "trezor_coin": "Moonriver", "links": { "homepage": "https://moonbeam.network/networks/moonriver/" }, + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_payment": 100000, + "eth_receiver_spend": 500000, + "eth_sender_refund": 500000 + }, "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/", @@ -21532,12 +25644,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 1284, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 15, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1284'", + "derivation_path": "m/44'/60'", "trezor_coin": "Moonbeam", "links": { "homepage": "https://moonbeam.network/networks/moonbeam/" @@ -21546,10 +25660,12 @@ "fallback_swap_contract": "0x6d9ce4BD298DE38bAfEFD15f5C6f5c95313B1d94", "nodes": [ { - "url": "https://rpc.api.moonbeam.network" + "url": "https://moonbeam.public.blastapi.io", + "ws_url": "wss://moonbeam.public.blastapi.io" }, { - "url": "https://moonbeam.public.blastapi.io" + "url": "https://rpc.api.moonbeam.network", + "ws_url": "wss://wss.api.moonbeam.network" } ], "explorer_block_url": "block/", @@ -21628,20 +25744,27 @@ "contract_address": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xBFEf6cCFC830D3BaCA4F6766a0d4AaA242Ca9F3D", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -21675,20 +25798,35 @@ "contract_address": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -21735,6 +25873,18 @@ ], "protocol": "TCP" }, + { + "url": "electrum1.mooo.com:10001", + "contact": [ + { + "email": "support@shorelinecrypto.com" + }, + { + "discord": "honglu69#5911" + } + ], + "protocol": "TCP" + }, { "url": "electrum2.mooo.com:10001", "contact": [ @@ -21779,20 +25929,27 @@ "contract_address": "0xaD2c0B5ee5424C6b6f9C06E4fEF3FD7CD9FF0264" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xaD2c0B5ee5424C6b6f9C06E4fEF3FD7CD9FF0264", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -21838,22 +25995,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -21887,17 +26052,17 @@ "contract_address": "0xb7A18bd55e8E3E2262d7c8Ee7b4DD9B216Df0Faf" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -21931,20 +26096,35 @@ "contract_address": "0x41b3966B4FF7b427969ddf5da3627d6AEAE9a48E" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x41b3966B4FF7b427969ddf5da3627d6AEAE9a48E", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -22081,6 +26261,20 @@ "github": "https://github.com/namecoin/electrum-nmc/issues" } ] + }, + { + "url": "electrumx4.nmc.dotbit.zone:50002", + "protocol": "SSL", + "contact": [ + { + "github": "https://github.com/namecoin/electrum-nmc/issues" + } + ] + }, + { + "url": "nmc2.bitcoins.sk:57002", + "protocol": "SSL", + "disable_cert_verification": true } ], "explorer_block_url": "block/" @@ -22151,6 +26345,20 @@ "github": "https://github.com/namecoin/electrum-nmc/issues" } ] + }, + { + "url": "electrumx4.nmc.dotbit.zone:50002", + "protocol": "SSL", + "contact": [ + { + "github": "https://github.com/namecoin/electrum-nmc/issues" + } + ] + }, + { + "url": "nmc2.bitcoins.sk:57002", + "protocol": "SSL", + "disable_cert_verification": true } ], "explorer_block_url": "block/" @@ -22264,20 +26472,35 @@ "contract_address": "0xBF84720097de111A80f46f9D077643967042841A" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xBF84720097de111A80f46f9D077643967042841A", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -22290,7 +26513,7 @@ "coinpaprika_id": "nvc-novacoin", "coingecko_id": "novacoin", "livecoinwatch_id": "NVC", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -22304,7 +26527,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -22398,22 +26621,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -22448,25 +26679,74 @@ "contract_address": "0xeaFE31Cd9e8E01C8f0073A2C974f728Fb80e9DcE" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xeaFE31Cd9e8E01C8f0073A2C974f728Fb80e9DcE", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/", "forex_id": "NZD" }, + "NYC": { + "coin": "NYC", + "type": "UTXO", + "name": "NewYorkCoin", + "coinpaprika_id": "nyc-newyorkcoin", + "coingecko_id": "newyorkcoin", + "livecoinwatch_id": "NYC", + "explorer_url": "https://chainz.cryptoid.info/nyc/", + "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": "NewYorkCoin Signed Message:\n", + "fname": "NewYorkCoin", + "rpcport": 22555, + "pubtype": 60, + "p2shtype": 22, + "wiftype": 188, + "segwit": false, + "txfee": 100000000, + "mm2": 1, + "required_confirmations": 7, + "avg_blocktime": 30, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/179'", + "links": { + "github": "https://github.com/NewYorkCoinNYC/newyorkcoin", + "homepage": "https://newyorkcoin.online" + }, + "electrum": [ + { + "url": "88.99.26.209:5127", + "protocol": "TCP" + } + ], + "explorer_block_url": "block.dws?" + }, "NYC-BEP20": { "coin": "NYC-BEP20", "type": "BEP-20", @@ -22496,20 +26776,27 @@ "contract_address": "0x6c015277B0f9b8c24B20BD8BbbD29FDb25738A69" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x6c015277B0f9b8c24B20BD8BbbD29FDb25738A69", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -22529,7 +26816,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Ocean Protocol", "rpcport": 80, "mm2": 1, @@ -22543,20 +26830,27 @@ "contract_address": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -22576,7 +26870,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Ocean Protocol", "rpcport": 80, "mm2": 1, @@ -22602,22 +26896,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -22636,7 +26938,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Ocean Protocol", "rpcport": 80, "mm2": 1, @@ -22651,20 +26953,216 @@ "contract_address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "OM-ERC20": { + "coin": "OM-ERC20", + "type": "ERC-20", + "name": "MANTRA", + "coinpaprika_id": "om-mantra-dao", + "coingecko_id": "mantra-dao", + "livecoinwatch_id": "OM", + "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": "MANTRA", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "OM-BEP20": { + "coin": "OM-BEP20", + "type": "BEP-20", + "name": "MANTRA", + "coinpaprika_id": "om-mantra-dao", + "coingecko_id": "mantra-dao", + "livecoinwatch_id": "OM", + "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": "MANTRA", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, + "OM-PLG20": { + "coin": "OM-PLG20", + "type": "Matic", + "name": "MANTRA", + "coinpaprika_id": "om-mantra-dao", + "coingecko_id": "mantra-dao", + "livecoinwatch_id": "OM", + "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": "MANTRA", + "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": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea", + "parent_coin": "MATIC", + "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -22710,22 +27208,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -22759,20 +27265,27 @@ "contract_address": "0x62414D03084EeB269E18C970a21f45D2967F0170" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x62414D03084EeB269E18C970a21f45D2967F0170", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -22796,12 +27309,14 @@ "rpcport": 80, "mm2": 1, "chain_id": 1666600000, + "use_access_list": true, + "max_eth_tx_type": 2, "required_confirmations": 3, "avg_blocktime": 15, "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ @@ -22810,6 +27325,10 @@ }, { "url": "https://api.s0.t.hmny.io" + }, + { + "url": "https://harmony-0.drpc.org", + "ws_url": "wss://harmony-0.drpc.org" } ], "explorer_block_url": "block/", @@ -22843,20 +27362,35 @@ "contract_address": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xFd7B3A77848f1C2D67E05E54d78d174a0C850335", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -22902,22 +27436,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -22950,20 +27492,27 @@ "contract_address": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -22998,17 +27547,17 @@ "contract_address": "0x69a7169F9Da9BBa04b982e49Ffd8d6a16c70c590" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -23042,20 +27591,27 @@ "contract_address": "0x6F3B3286fd86d8b47EC737CEB3D0D354cc657B3e" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x6F3B3286fd86d8b47EC737CEB3D0D354cc657B3e", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -23088,20 +27644,27 @@ "contract_address": "0x7950865a9140cB519342433146Ed5b40c6F210f7" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7950865a9140cB519342433146Ed5b40c6F210f7", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -23148,22 +27711,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -23197,20 +27768,459 @@ "contract_address": "0x553d3D295e0f695B9228246232eDF400ed3560B5" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x553d3D295e0f695B9228246232eDF400ed3560B5", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "PEP": { + "coin": "PEP", + "type": "UTXO", + "name": "Pepecoin", + "coinpaprika_id": "pepenet-pepecoin", + "coingecko_id": "pepecoin-network", + "livecoinwatch_id": "_______________________________________PEPE", + "explorer_url": "https://pepeexplorer.com/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "sign_message_prefix": "Pepecoin Signed Message:\n", + "fname": "Pepecoin", + "rpcport": 33873, + "pubtype": 56, + "p2shtype": 22, + "wiftype": 158, + "segwit": false, + "txfee": 1000000, + "mm2": 1, + "required_confirmations": 5, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/3434'", + "links": { + "github": "https://github.com/pepecoinppc/pepecoin", + "homepage": "https://pepecoin.org" + }, + "electrum": [ + { + "url": "electrum.pepe.tips:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "squidicuz" + } + ] }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "electrum.pepeblocks.com:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "realmasterkush" + } + ] }, { - "url": "https://electrum3.cipig.net:18755" + "url": "electrum.pepelum.site:50002", + "protocol": "SSL", + "contact": [ + { + "discord": "emgi2" + } + ] + } + ], + "explorer_block_url": "block/" + }, + "PENDLE-ARB20": { + "coin": "PENDLE-ARB20", + "type": "Arbitrum", + "name": "Pendle", + "coinpaprika_id": "pendle-pendle", + "coingecko_id": "pendle", + "livecoinwatch_id": "PENDLE", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Pendle", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" + } + ], + "explorer_block_url": "block/" + }, + "PENDLE-ERC20": { + "coin": "PENDLE-ERC20", + "type": "ERC-20", + "name": "Pendle", + "coinpaprika_id": "pendle-pendle", + "coingecko_id": "pendle", + "livecoinwatch_id": "PENDLE", + "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": "Pendle", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x808507121B80c02388fAd14726482e061B8da827" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x808507121B80c02388fAd14726482e061B8da827", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "PENDLE-BEP20": { + "coin": "PENDLE-BEP20", + "type": "BEP-20", + "name": "Pendle", + "coinpaprika_id": "pendle-pendle", + "coingecko_id": "pendle", + "livecoinwatch_id": "PENDLE", + "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": "Pendle", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xb3Ed0A426155B79B898849803E3B36552f7ED507" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, + "PEPE-ERC20": { + "coin": "PEPE-ERC20", + "type": "ERC-20", + "name": "Pepe", + "coinpaprika_id": "pepe-pepe", + "coingecko_id": "pepe", + "livecoinwatch_id": "____PEPE", + "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": "Pepe", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://www.pepe.vip" + }, + "contract_address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "PEPE-BEP20": { + "coin": "PEPE-BEP20", + "type": "BEP-20", + "name": "Pepe", + "coinpaprika_id": "pepe-pepe", + "coingecko_id": "pepe", + "livecoinwatch_id": "____PEPE", + "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": "Pepe", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x25d887Ce7a35172C62FeBFD67a1856F20FaEbB00" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://www.pepe.vip" + }, + "contract_address": "0x25d887Ce7a35172C62FeBFD67a1856F20FaEbB00", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, + "PEPE-ARB20": { + "coin": "PEPE-ARB20", + "type": "Arbitrum", + "name": "Pepe", + "coinpaprika_id": "pepe-pepe", + "coingecko_id": "pepe", + "livecoinwatch_id": "____PEPE", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Pepe", + "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": "0x25d887Ce7a35172C62FeBFD67a1856F20FaEbB00" + } + }, + "derivation_path": "m/44'/60'", + "links": { + "homepage": "https://www.pepe.vip" + }, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x25d887Ce7a35172C62FeBFD67a1856F20FaEbB00", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -23276,6 +28286,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "DarkNet Signed Message:\n", "fname": "PIVX", "rpcport": 51473, "pubtype": 30, @@ -23299,6 +28310,15 @@ } ], "protocol": "TCP" + }, + { + "url": "electrum02.chainster.org:50001", + "contact": [ + { + "discord": "312541186793406465" + } + ], + "protocol": "TCP" } ], "explorer_block_url": "block.dws?", @@ -23426,22 +28446,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -23475,20 +28503,35 @@ "contract_address": "0xd7c8469c7eC40f853dA5f651DE81b45aeD47e5aB" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xd7c8469c7eC40f853dA5f651DE81b45aeD47e5aB", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -23533,22 +28576,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -23582,20 +28633,27 @@ "contract_address": "0x0AaB8DC887D34f00D50E19aee48371a941390d14" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x0AaB8DC887D34f00D50E19aee48371a941390d14", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -23688,22 +28746,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -23737,20 +28803,27 @@ "contract_address": "0x91E7E32C710661C44ae44D10Aa86135d91C3Ed65" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x91E7E32C710661C44ae44D10Aa86135d91C3Ed65", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -23783,20 +28856,27 @@ "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -23838,22 +28918,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -23887,80 +28975,27 @@ "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xdFC3829b127761a3218bFceE7fc92e1232c9D116", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" - }, - { - "url": "https://electrum3.cipig.net:18755" - } - ], - "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:50012", - "protocol": "SSL", - "contact": [ - { - "discord": "PRUX-Coin#1668" - } - ] + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "txserver.live:50002", - "protocol": "SSL", - "contact": [ - { - "discord": "PRUX-Coin#1668" - } - ] + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "electrumx.live:50010", - "protocol": "TCP", - "contact": [ - { - "discord": "PRUX-Coin#1668" - } - ] + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -24001,22 +29036,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -24050,20 +29093,35 @@ "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, "contract_address": "0x430EF9263E76DAE63c84292C3409D61c598E9682", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -24096,20 +29154,27 @@ "contract_address": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x2859e4544C4bB03966803b044A93563Bd2D0DD4D", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -24154,22 +29219,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -24203,17 +29276,17 @@ "contract_address": "0x73b6086955c820370A18002F60E9b51FB67d7e1A" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -24247,20 +29320,35 @@ "contract_address": "0x6f8a06447Ff6FcF75d803135a7de15CE88C1d4ec" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x6f8a06447Ff6FcF75d803135a7de15CE88C1d4ec", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -24272,7 +29360,7 @@ "coinpaprika_id": "qc-qcash", "coingecko_id": "qcash", "livecoinwatch_id": "QC", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -24286,7 +29374,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -24351,7 +29439,7 @@ "coinpaprika_id": "", "coingecko_id": "", "livecoinwatch_id": "", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -24365,7 +29453,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -24430,7 +29518,7 @@ "coinpaprika_id": "qi-qiswap", "coingecko_id": "qiswap", "livecoinwatch_id": "QI", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -24444,7 +29532,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -24530,20 +29618,35 @@ "contract_address": "0xA1434F1FC3F437fa33F7a781E041961C0205B5Da" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xA1434F1FC3F437fa33F7a781E041961C0205B5Da", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -24588,22 +29691,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -24649,22 +29760,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -24698,17 +29817,17 @@ "contract_address": "0x791630C11c7159A748d8c2267a66780B3DDC40a7" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -24761,18 +29880,6 @@ "discord": "cipi#4502" } ] - }, - { - "url": "electrum3.cipig.net:10071", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -24784,7 +29891,7 @@ "coinpaprika_id": "qtum-qtum", "coingecko_id": "qtum", "livecoinwatch_id": "QTUM", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -24800,7 +29907,7 @@ "wiftype": 128, "segwit": true, "bech32_hrp": "qc", - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "force_min_relay_fee": true, @@ -24899,22 +30006,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -24964,9 +30079,56 @@ "discord": "cipi#4502" } ] + } + ], + "explorer_block_url": "block/" + }, + "RAPH": { + "coin": "RAPH", + "type": "Smart Chain", + "name": "Raphael", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://raph.xpl.monster/", + "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": "RAPH", + "fname": "Raphael", + "rpcport": 30261, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 4, + "requires_notarization": false, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "electrum": [ + { + "url": "electrum1.cipig.net:20004", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] }, { - "url": "electrum3.cipig.net:10071", + "url": "electrum2.cipig.net:20004", + "protocol": "SSL", "contact": [ { "email": "cipi@komodoplatform.com" @@ -24974,8 +30136,19 @@ { "discord": "cipi#4502" } - ], - "protocol": "TCP" + ] + }, + { + "url": "electrum3.cipig.net:20004", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] } ], "explorer_block_url": "block/" @@ -24995,6 +30168,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": true, + "sign_message_prefix": "Reddcoin Signed Message:\n", "fname": "ReddCoin", "isPoSV": 1, "rpcport": 45443, @@ -25019,6 +30193,14 @@ "homepage": "https://reddcoin.com" }, "electrum": [ + { + "url": "electrum01.reddcoin.com:50002", + "protocol": "SSL" + }, + { + "url": "electrum02.reddcoin.com:50002", + "protocol": "SSL" + }, { "url": "electrum03.reddcoin.com:50002", "protocol": "SSL" @@ -25067,22 +30249,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -25101,7 +30291,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Ren", "rpcport": 80, "mm2": 1, @@ -25116,14 +30306,14 @@ "contract_address": "0x212208bcc81F3a2D0188afF76A2d39351eb53b96" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x212208bcc81F3a2D0188afF76A2d39351eb53b96", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -25170,22 +30360,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -25226,22 +30424,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -25275,20 +30481,35 @@ "contract_address": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -25308,6 +30529,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Riecoin Signed Message:\n", "fname": "Riecoin", "rpcport": 28332, "pubtype": 60, @@ -25344,15 +30566,6 @@ "discord": "475820011634819072" } ] - }, - { - "url": "ric-ex-two.ewmci.online:50001", - "protocol": "TCP", - "contact": [ - { - "discord": "475820011634819072" - } - ] } ], "explorer_block_url": "block.dws?" @@ -25372,6 +30585,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Riecoin Signed Message:\n", "fname": "Riecoin", "rpcport": 28332, "pubtype": 60, @@ -25412,15 +30626,6 @@ "discord": "475820011634819072" } ] - }, - { - "url": "ric-ex-two.ewmci.online:50001", - "protocol": "TCP", - "contact": [ - { - "discord": "475820011634819072" - } - ] } ], "explorer_block_url": "block.dws?" @@ -25454,20 +30659,27 @@ "contract_address": "0xc2097531d6Cd4A712AE08f398283a92631DC39F9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xc2097531d6Cd4A712AE08f398283a92631DC39F9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -25653,22 +30865,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -25702,20 +30922,27 @@ "contract_address": "0xbe662058e00849C3Eef2AC9664f37fEfdF2cdbFE" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0xbe662058e00849C3Eef2AC9664f37fEfdF2cdbFE", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -25756,22 +30983,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -25805,20 +31040,35 @@ "contract_address": "0x61299774020dA444Af134c82fa83E3810b309991" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x61299774020dA444Af134c82fa83E3810b309991", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -25859,22 +31109,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -25920,104 +31178,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } - } - ], - "explorer_block_url": "block/" - }, - "RTB": { - "coin": "RTB", - "type": "Smart Chain", - "name": "RideTheBullCoin", - "coinpaprika_id": "", - "coingecko_id": "", - "livecoinwatch_id": "RTB", - "explorer_url": "https://explorer1.ridethebullcoin.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": "RTB", - "fname": "RideTheBullCoin", - "rpcport": 29403, - "txversion": 4, - "overwintered": 1, - "mm2": 1, - "required_confirmations": 5, - "avg_blocktime": 60, - "protocol": { - "type": "UTXO" - }, - "derivation_path": "m/44'/141'", - "trezor_coin": "Komodo", - "links": { - "github": "https://github.com/RTBCoin", - "homepage": "https://ridethebullcoin.com" - }, - "electrum": [ - { - "url": "electrumx1.ridethebullcoin.com:20053", - "protocol": "SSL", - "contact": [ - { - "email": "rtbadmin@ridethebullcoin.com" - }, - { - "github": "RTBCoin" - }, - { - "discord": "rtbcoin" - } - ] }, { - "url": "electrumx2.ridethebullcoin.com:20053", - "protocol": "SSL", - "contact": [ - { - "email": "rtbadmin@ridethebullcoin.com" - }, - { - "github": "RTBCoin" - }, - { - "discord": "rtbcoin" - } - ] + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" }, { - "url": "electrumx1.ridethebullcoin.com:10002", - "protocol": "TCP", - "contact": [ - { - "email": "rtbadmin@ridethebullcoin.com" - }, - { - "github": "RTBCoin" - }, - { - "discord": "rtbcoin" - } - ] + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -26092,20 +31276,27 @@ "contract_address": "0xF7C71cab11E3694638Bb9A106E0F430565BD15F1" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xF7C71cab11E3694638Bb9A106E0F430565BD15F1", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -26133,8 +31324,7 @@ "p2shtype": 122, "wiftype": 128, "segwit": true, - "txfee": 1000000, - "dust": 1000000, + "txfee": 1100000, "mm2": 1, "required_confirmations": 3, "avg_blocktime": 60, @@ -26224,22 +31414,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -26273,20 +31471,27 @@ "contract_address": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x67b725d7e342d7B611fa85e859Df9697D9378B2e", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -26321,20 +31526,35 @@ "contract_address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -26368,20 +31588,35 @@ "contract_address": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x02dd18E4981DA3fC7363fE56f3B81D1860b44ea7", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -26416,20 +31651,35 @@ "contract_address": "0x7b0E7E40eE4672599F7095D1DdD730b0805195BA" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x7b0E7E40eE4672599F7095D1DdD730b0805195BA", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -26464,7 +31714,7 @@ "contract_address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xBeC243C995409E6520D7C41E404da5dEba4b209B", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -26474,7 +31724,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -26507,20 +31762,27 @@ "contract_address": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x9Ac983826058b8a9C7Aa1C9171441191232E8404", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -26567,22 +31829,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -26601,7 +31871,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Synthetix", "rpcport": 80, "mm2": 1, @@ -26616,17 +31886,23 @@ "contract_address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x56ee926bD8c72B2d5fa1aF4d9E4Cbb515a1E3Adc", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -26660,17 +31936,17 @@ "contract_address": "0x31965b5c9c55f5579eb49F4b3AcC59aA10a7B98E" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -26704,20 +31980,35 @@ "contract_address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x50B728D8D964fd00C2d0AAD81718b71311feF68a", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -26751,20 +32042,27 @@ "contract_address": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x570A5D26f7765Ecb712C0924E4De545B89fD43dF", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -26799,20 +32097,35 @@ "contract_address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -26852,22 +32165,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -26942,6 +32263,63 @@ ], "explorer_block_url": "block/" }, + "SPACE-ARB20": { + "coin": "SPACE-ARB20", + "type": "Arbitrum", + "name": "Space Token", + "coinpaprika_id": "space-space-token", + "coingecko_id": "space-token-bsc", + "livecoinwatch_id": "__SPACE", + "explorer_url": "https://arbiscan.io/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Space Token", + "rpcport": 80, + "mm2": 1, + "chain_id": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0x1D1498166DDCEeE616a6d99868e1E0677300056f" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0x1D1498166DDCEeE616a6d99868e1E0677300056f", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" + } + ], + "explorer_block_url": "block/" + }, "SPACE-AVX20": { "coin": "SPACE-AVX20", "type": "AVX-20", @@ -26971,7 +32349,7 @@ "contract_address": "0x09211Dc67f9fe98Fb7bBB91Be0ef05f4a12FA2b2" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x09211Dc67f9fe98Fb7bBB91Be0ef05f4a12FA2b2", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -26981,7 +32359,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -27014,20 +32397,27 @@ "contract_address": "0x9E1170c12FDDd3B00FEc42ddF4C942565D9Be577" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x9E1170c12FDDd3B00FEc42ddF4C942565D9Be577", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -27062,17 +32452,85 @@ "contract_address": "0x5f7F94a1dd7b15594d17543BEB8B30b111DD464c" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x5f7F94a1dd7b15594d17543BEB8B30b111DD464c", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "SPACE-PLG20_OLD": { + "coin": "SPACE-PLG20_OLD", + "type": "Matic", + "name": "Space Token (OLD)", + "coinpaprika_id": "space-space-token", + "coingecko_id": "space-token-bsc", + "livecoinwatch_id": "__SPACE", + "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": "Space Token (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": "0xB53Ec4aCe420a62Cfb75aFdEba600D284777cd65" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0xB53Ec4aCe420a62Cfb75aFdEba600D284777cd65", + "parent_coin": "MATIC", + "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -27103,23 +32561,38 @@ "type": "ERC20", "protocol_data": { "platform": "MATIC", - "contract_address": "0xB53Ec4aCe420a62Cfb75aFdEba600D284777cd65" + "contract_address": "0x1D1498166DDCEeE616a6d99868e1E0677300056f" } }, - "derivation_path": "m/44'/966'", - "contract_address": "0xB53Ec4aCe420a62Cfb75aFdEba600D284777cd65", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0x1D1498166DDCEeE616a6d99868e1E0677300056f", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -27160,22 +32633,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -27209,143 +32690,27 @@ "contract_address": "0x6Bf2eb299E51Fc5DF30Dec81D9445dDe70e3F185" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x6Bf2eb299E51Fc5DF30Dec81D9445dDe70e3F185", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" - } - ], - "explorer_block_url": "block/" - }, - "SUM": { - "coin": "SUM", - "type": "UTXO", - "name": "Sumcoin", - "coinpaprika_id": "sum-sumcoin", - "coingecko_id": "sumcoin", - "livecoinwatch_id": "SUM", - "explorer_url": "https://sumexplorer.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": 3, - "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 - }, - { - "url": "sumpos2.electrum-sum.org:50002", - "protocol": "SSL", - "disable_cert_verification": false - } - ], - "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:20005", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum2.cipig.net:20005", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "electrum3.cipig.net:20005", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -27379,7 +32744,7 @@ "contract_address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -27389,7 +32754,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -27422,20 +32792,27 @@ "contract_address": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x947950BcC74888a40Ffa2593C5798F11Fc9124C4", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -27482,22 +32859,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -27516,7 +32901,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Sushi", "rpcport": 80, "mm2": 1, @@ -27531,17 +32916,23 @@ "contract_address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0xae75A438b2E0cB8Bb01Ec1E1e376De11D44477CC", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -27575,17 +32966,17 @@ "contract_address": "0xE0a60890BB7F9250089455620063fb6fe4DC159a" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -27604,7 +32995,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Sushi", "rpcport": 80, "mm2": 1, @@ -27619,17 +33010,19 @@ "contract_address": "0xf390830DF829cf22c53c8840554B98eafC5dCBc2" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "contract_address": "0xf390830DF829cf22c53c8840554B98eafC5dCBc2", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -27663,20 +33056,35 @@ "contract_address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -27709,20 +33117,27 @@ "contract_address": "0xe56a473043EaAB7947c0a2408cEA623074500EE3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xe56a473043EaAB7947c0a2408cEA623074500EE3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -27756,20 +33171,27 @@ "contract_address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -27811,22 +33233,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -27874,6 +33304,286 @@ ], "explorer_block_url": "block/" }, + "SYN-ERC20": { + "coin": "SYN-ERC20", + "type": "ERC-20", + "name": "Synapse", + "coinpaprika_id": "syn-synapse", + "coingecko_id": "synapse-2", + "livecoinwatch_id": "_SYN", + "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": "Synapse", + "rpcport": 80, + "mm2": 1, + "chain_id": 1, + "decimals": 18, + "avg_blocktime": 15, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH", + "contract_address": "0x0f2D719407FdBeFF09D87557AbB7232601FD9F29" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x0f2D719407FdBeFF09D87557AbB7232601FD9F29", + "parent_coin": "ETH", + "swap_contract_address": "0x24ABE4c71FC658C91313b6552cd40cD808b3Ea80", + "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", + "contact": { + "email": "smk@komodoplatform.com" + } + }, + { + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" + }, + { + "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", + "contact": { + "email": "cipi@komodoplatform.com" + } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "SYN-BEP20": { + "coin": "SYN-BEP20", + "type": "BEP-20", + "name": "Synapse", + "coinpaprika_id": "syn-synapse", + "coingecko_id": "synapse-2", + "livecoinwatch_id": "_SYN", + "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": "Synapse", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0xa4080f1778e69467E905B8d6F72f6e441f9e9484" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0xa4080f1778e69467E905B8d6F72f6e441f9e9484", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" + }, + "SYN-PLG20": { + "coin": "SYN-PLG20", + "type": "Matic", + "name": "Synapse", + "coinpaprika_id": "syn-synapse", + "coingecko_id": "synapse-2", + "livecoinwatch_id": "_SYN", + "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": "Synapse", + "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": "0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, + "contract_address": "0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695", + "parent_coin": "MATIC", + "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" + }, + { + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" + } + ], + "explorer_block_url": "block/" + }, + "SYN-AVX20": { + "coin": "SYN-AVX20", + "type": "AVX-20", + "name": "Synapse", + "coinpaprika_id": "syn-synapse", + "coingecko_id": "synapse-2", + "livecoinwatch_id": "_SYN", + "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": "Synapse", + "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": "0x1f1E7c893855525b303f99bDF5c3c05Be09ca251" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x1f1E7c893855525b303f99bDF5c3c05Be09ca251", + "parent_coin": "AVAX", + "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "nodes": [ + { + "url": "https://api.avax.network/ext/bc/C/rpc" + }, + { + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" + } + ], + "explorer_block_url": "block/" + }, + "SYN-FTM20": { + "coin": "SYN-FTM20", + "type": "FTM-20", + "name": "Synapse", + "coinpaprika_id": "syn-synapse", + "coingecko_id": "synapse-2", + "livecoinwatch_id": "_SYN", + "explorer_url": "https://ftmscan.com/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "fname": "Synapse", + "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": "0xE55e19Fb4F2D85af758950957714292DAC1e25B2" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0xE55e19Fb4F2D85af758950957714292DAC1e25B2", + "parent_coin": "FTM", + "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" + } + ], + "explorer_block_url": "block/" + }, "SYS": { "coin": "SYS", "type": "UTXO", @@ -28070,22 +33780,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -28119,20 +33837,27 @@ "contract_address": "0x83BC92dcfC1F62Ba5dbd0f3537032f83a004300A" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x83BC92dcfC1F62Ba5dbd0f3537032f83a004300A", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -28174,22 +33899,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -28223,20 +33956,35 @@ "contract_address": "0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -28270,6 +34018,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/1'", "electrum": [ { "url": "electrum3.cipig.net:20068", @@ -28283,18 +34032,6 @@ } ] }, - { - "url": "electrum3.cipig.net:10068", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ], - "protocol": "TCP" - }, { "url": "testnet.aranguren.org:51001", "protocol": "TCP" @@ -28335,6 +34072,7 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/84'/1'", "electrum": [ { "url": "electrum3.cipig.net:20068", @@ -28348,18 +34086,6 @@ } ] }, - { - "url": "electrum3.cipig.net:10068", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ], - "protocol": "TCP" - }, { "url": "testnet.aranguren.org:51001", "protocol": "TCP" @@ -28403,22 +34129,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -28452,17 +34186,17 @@ "contract_address": "0x621C1E8610e4B9b7fc9F043203C008EDe52E92F5" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -28496,20 +34230,35 @@ "contract_address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -28543,20 +34292,35 @@ "contract_address": "0x8f0FB159380176D324542b3a7933F0C2Fd0c2bbf" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8f0FB159380176D324542b3a7933F0C2Fd0c2bbf", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -28643,20 +34407,27 @@ "contract_address": "0xBD9a8CA934e673b874937761D7CFa7084ecBdd53" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xBD9a8CA934e673b874937761D7CFa7084ecBdd53", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -28704,18 +34475,6 @@ "discord": "chmex#0686" } ] - }, - { - "url": "1.eu.tokel.electrum.dexstats.info:10077", - "contact": [ - { - "email": "chmex@dexstats.info" - }, - { - "discord": "chmex#0686" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -28756,22 +34515,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -28805,20 +34572,27 @@ "contract_address": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x76A797A59Ba2C17726896976B7B3747BfD1d220f", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -28877,7 +34651,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "TRON (OLD)", "rpcport": 80, "mm2": 1, @@ -28891,20 +34665,27 @@ "contract_address": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -28939,20 +34720,35 @@ "contract_address": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -28987,7 +34783,15 @@ "contract_address": "0x564A341Df6C126f90cf3ECB92120FD7190ACb401" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, "contract_address": "0x564A341Df6C126f90cf3ECB92120FD7190ACb401", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -28997,11 +34801,15 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], - "explorer_block_url": "block/", - "forex_id": "TRY" + "explorer_block_url": "block/" }, "TRYB-BEP20": { "coin": "TRYB-BEP20", @@ -29031,25 +34839,31 @@ "contract_address": "0xC1fdbed7Dac39caE2CcC0748f7a80dC446F6a594" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xC1fdbed7Dac39caE2CcC0748f7a80dC446F6a594", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", - "explorer_block_url": "block/", - "forex_id": "TRY" + "explorer_block_url": "block/" }, "TRYB-PLG20": { "coin": "TRYB-PLG20", @@ -29080,24 +34894,38 @@ "contract_address": "0x4Fb71290Ac171E1d144F7221D882BECAc7196EB5" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x4Fb71290Ac171E1d144F7221D882BECAc7196EB5", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "TRY" + "explorer_block_url": "block/" }, "TRYB-ERC20": { "coin": "TRYB-ERC20", @@ -29134,72 +34962,32 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "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://bsc1.cipig.net:18655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, "TUSD-BEP20": { @@ -29231,20 +35019,27 @@ "contract_address": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -29290,22 +35085,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -29339,7 +35142,7 @@ "contract_address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -29349,7 +35152,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -29368,7 +35176,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "TrueUSD", "rpcport": 80, "mm2": 1, @@ -29383,17 +35191,23 @@ "contract_address": "0x9879aBDea01a879644185341F7aF7d8343556B7a" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x9879aBDea01a879644185341F7aF7d8343556B7a", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -29412,7 +35226,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "TrueUSD", "rpcport": 80, "mm2": 1, @@ -29427,14 +35241,14 @@ "contract_address": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x5eE41aB6edd38cDfB9f6B4e6Cf7F75c87E170d98", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -29471,17 +35285,17 @@ "contract_address": "0xD17027b85Abf02721F953EE528721A980fa58941" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -29515,20 +35329,27 @@ "contract_address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -29562,20 +35383,27 @@ "contract_address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x4B0F1812e5Df2A09796481Ff14017e6005508003", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -29621,22 +35449,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -29670,20 +35506,27 @@ "contract_address": "0x7FBc10850caE055B27039aF31bD258430e714c62" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x7FBc10850caE055B27039aF31bD258430e714c62", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -29703,6 +35546,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Unitus Signed Message:\n", "fname": "Unitus", "rpcport": 50604, "pubtype": 68, @@ -29716,6 +35560,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/723'", + "links": { + "github": "https://github.com/unitusdev/unitus", + "homepage": "https://unituscurrency.com" + }, "electrum": [ { "url": "failover.trc-uis.ewmcx.biz:50002", @@ -29759,7 +35608,7 @@ "contract_address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -29769,7 +35618,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -29810,22 +35664,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -29859,20 +35721,27 @@ "contract_address": "0x3066818837c5e6eD6601bd5a91B0762877A6B731" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x3066818837c5e6eD6601bd5a91B0762877A6B731", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -29906,7 +35775,7 @@ "contract_address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -29916,7 +35785,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -29961,22 +35835,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -30009,20 +35891,27 @@ "contract_address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -30042,7 +35931,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Uniswap", "rpcport": 80, "mm2": 1, @@ -30057,14 +35946,14 @@ "contract_address": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x22C54cE8321A4015740eE1109D9cBc25815C46E6", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -30101,17 +35990,17 @@ "contract_address": "0xEe58E4D62b10A92dB1089d4D040B759C28aE16Cd" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -30145,20 +36034,35 @@ "contract_address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -30203,6 +36107,10 @@ "protocol": "SSL", "disable_cert_verification": true }, + { + "url": "uno-ex-one.ewmci.online:50002", + "protocol": "SSL" + }, { "url": "uno-main.coinmunity.gold:50002", "protocol": "SSL", @@ -30211,6 +36119,63 @@ ], "explorer_block_url": "block.dws?" }, + "USDC-ARB20": { + "coin": "USDC-ARB20", + "type": "Arbitrum", + "name": "USD Coin", + "coinpaprika_id": "usdc-usd-coin", + "coingecko_id": "usd-coin", + "livecoinwatch_id": "USDC", + "explorer_url": "https://arbiscan.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": 42161, + "decimals": 6, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" + } + ], + "explorer_block_url": "block/" + }, "USDC-AVX20": { "coin": "USDC-AVX20", "type": "AVX-20", @@ -30240,7 +36205,7 @@ "contract_address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -30250,7 +36215,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -30269,7 +36239,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "USD Coin (OLD)", "rpcport": 80, "mm2": 1, @@ -30284,7 +36254,7 @@ "contract_address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -30294,7 +36264,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -30339,22 +36314,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -30387,20 +36370,35 @@ "contract_address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -30420,7 +36418,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "USD Coin", "rpcport": 80, "mm2": 1, @@ -30434,17 +36432,23 @@ "contract_address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -30463,7 +36467,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "USD Coin", "rpcport": 80, "mm2": 1, @@ -30478,14 +36482,14 @@ "contract_address": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0x9362Bbef4B8313A8Aa9f0c9808B80577Aa26B73B", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -30522,17 +36526,17 @@ "contract_address": "0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -30551,7 +36555,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "USD Coin", "rpcport": 80, "mm2": 1, @@ -30566,17 +36570,19 @@ "contract_address": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "contract_address": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -30610,20 +36616,35 @@ "contract_address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -30657,20 +36678,27 @@ "contract_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -30704,20 +36732,27 @@ "contract_address": "0xd17479997F34dd9156Deef8F95A52D81D265be9c" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xd17479997F34dd9156Deef8F95A52D81D265be9c", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -30759,22 +36794,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -30793,7 +36836,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Tether", "rpcport": 80, "mm2": 1, @@ -30808,17 +36851,19 @@ "contract_address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C" } }, - "derivation_path": "m/44'/1285'", + "derivation_path": "m/44'/60'", "contract_address": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", "parent_coin": "MOVR", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://moonriver.public.blastapi.io" + "url": "https://moonriver.public.blastapi.io", + "ws_url": "wss://moonriver.public.blastapi.io" }, { - "url": "https://rpc.api.moonriver.moonbeam.network" + "url": "https://rpc.api.moonriver.moonbeam.network", + "ws_url": "wss://wss.api.moonriver.moonbeam.network" } ], "explorer_block_url": "block/" @@ -30837,7 +36882,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Tether", "rpcport": 80, "mm2": 1, @@ -30852,17 +36897,23 @@ "contract_address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -30881,7 +36932,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Tether", "rpcport": 80, "mm2": 1, @@ -30896,14 +36947,14 @@ "contract_address": "0xa71EdC38d189767582C38A3145b5873052c3e47a" } }, - "derivation_path": "m/44'/1023'", + "derivation_path": "m/44'/60'", "contract_address": "0xa71EdC38d189767582C38A3145b5873052c3e47a", "parent_coin": "HT", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://http-mainnet.hecochain.com" + "url": "http://http-mainnet.hecochain.com" }, { "url": "https://http-mainnet-node.huobichain.com" @@ -30940,17 +36991,17 @@ "contract_address": "0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -30984,20 +37035,35 @@ "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -31016,14 +37082,14 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": true, + "wallet_only": false, "fname": "Tether", "rpcport": 80, "mm2": 1, "chain_id": 42161, - "avg_blocktime": 15, "decimals": 6, - "required_confirmations": 3, + "avg_blocktime": 0.25, + "required_confirmations": 10, "protocol": { "type": "ERC20", "protocol_data": { @@ -31031,6 +37097,15 @@ "contract_address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9" } }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, "contract_address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", "parent_coin": "ETH-ARB20", "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", @@ -31038,6 +37113,14 @@ "nodes": [ { "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -31071,7 +37154,15 @@ "contract_address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 120000, + "erc20_receiver_spend": 90000, + "erc20_sender_refund": 90000 + }, "contract_address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -31081,7 +37172,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -31100,7 +37196,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "Tether (OLD)", "rpcport": 80, "mm2": 1, @@ -31115,7 +37211,7 @@ "contract_address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -31125,7 +37221,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -31158,20 +37259,35 @@ "contract_address": "0x55d398326f99059fF775485246999027B3197955" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x55d398326f99059fF775485246999027B3197955", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -31216,77 +37332,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "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://eth1.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" }, { - "url": "https://eth3.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -31360,6 +37429,75 @@ ], "explorer_block_url": "block/" }, + "vDEX": { + "coin": "vDEX", + "type": "Smart Chain", + "name": "vDEX", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://explorer.vdex.to/", + "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": "vDEX", + "fname": "vDEX", + "rpcport": 21778, + "txversion": 4, + "overwintered": 1, + "mm2": 1, + "required_confirmations": 6, + "avg_blocktime": 60, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/141'", + "trezor_coin": "Komodo", + "electrum": [ + { + "url": "electrum1.cipig.net:20010", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum2.cipig.net:20010", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + }, + { + "url": "electrum3.cipig.net:20010", + "protocol": "SSL", + "contact": [ + { + "email": "cipi@komodoplatform.com" + }, + { + "discord": "cipi#4502" + } + ] + } + ], + "explorer_block_url": "block/" + }, "VAL": { "coin": "VAL", "type": "UTXO", @@ -31375,6 +37513,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "radium Signed Message:\n", "fname": "Validity", "confpath": "USERHOME/.Validity/validity.conf", "isPoS": 1, @@ -31391,6 +37530,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/634'", + "links": { + "github": "https://github.com/RadiumCore/Validity", + "homepage": "https://validitytech.com" + }, "electrum": [ { "url": "e1.validitytech.com:11002", @@ -31413,13 +37557,14 @@ ] }, { - "url": "e1.validitytech.com:11001", + "url": "e3.validitytech.com:11002", + "protocol": "SSL", + "disable_cert_verification": true, "contact": [ { "discord": "michelvankessel#7656" } - ], - "protocol": "TCP" + ] } ], "explorer_block_url": "block.dws?" @@ -31453,20 +37598,35 @@ "contract_address": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -31492,6 +37652,7 @@ "mm2": 1, "required_confirmations": 3, "avg_blocktime": 15, + "chain_id": 1, "protocol": { "type": "ERC20", "protocol_data": { @@ -31506,22 +37667,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -31562,22 +37731,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -31611,20 +37788,27 @@ "contract_address": "0x054c42b6414747F5263b4A86f21B1aFAD00326Bf" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x054c42b6414747F5263b4A86f21B1aFAD00326Bf", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -31769,20 +37953,35 @@ "contract_address": "0x2794DAD4077602eD25A88d03781528D1637898B4" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x2794DAD4077602eD25A88d03781528D1637898B4", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -31900,7 +38099,7 @@ "trezor_coin": "Komodo", "electrum": [ { - "url": "electrum1.grms.pw:50002", + "url": "electrum.grms.pw:50002", "protocol": "SSL", "contact": [ { @@ -31915,7 +38114,7 @@ ] }, { - "url": "electrum3.grms.pw:50002", + "url": "electrum1.grms.pw:50002", "protocol": "SSL", "contact": [ { @@ -31930,7 +38129,8 @@ ] }, { - "url": "electrum1.grms.pw:17485", + "url": "electrum2.grms.pw:50002", + "protocol": "SSL", "contact": [ { "email": "contact@grms.pw" @@ -31941,59 +38141,22 @@ { "github": "Miner113" } - ], - "protocol": "TCP" - } - ], - "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" - } - ], - "protocol": "TCP" + ] }, { - "url": "electrumx2.vaporumcoin.us:50001", + "url": "electrum3.grms.pw:50002", + "protocol": "SSL", "contact": [ { - "github": "VaporumCoin" + "email": "contact@grms.pw" + }, + { + "discord": "miner113#7864" + }, + { + "github": "Miner113" } - ], - "protocol": "TCP" + ] } ], "explorer_block_url": "block/" @@ -32040,6 +38203,15 @@ "url": "88.99.26.209:5028", "protocol": "TCP" }, + { + "url": "electrumx-vtc.cryptoverted.com:55001", + "contact": [ + { + "discord": "alviemahmud" + } + ], + "protocol": "TCP" + }, { "url": "electrumx.javerity.com:5885", "contact": [ @@ -32099,62 +38271,25 @@ "protocol": "TCP" }, { - "url": "electrumx.javerity.com:5885", + "url": "electrumx-vtc.cryptoverted.com:55001", "contact": [ { - "discord": "cruelnovo#4936" + "discord": "alviemahmud" } ], "protocol": "TCP" - } - ], - "explorer_block_url": "block.dws?" - }, - "WAF": { - "coin": "WAF", - "type": "UTXO", - "name": "Waifu", - "coinpaprika_id": "waf-waifu-core", - "coingecko_id": "", - "livecoinwatch_id": "_WAF", - "explorer_url": "https://waifu-explorer.io/", - "explorer_tx_url": "", - "explorer_address_url": "", - "supported": [], - "active": false, - "is_testnet": false, - "currently_enabled": false, - "wallet_only": false, - "sign_message_prefix": "Waifu Signed Message:\n", - "fname": "Waifu", - "rpcport": 18332, - "pubtype": 73, - "p2shtype": 22, - "wiftype": 158, - "segwit": true, - "bech32_hrp": "waf", - "txfee": 1000, - "mm2": 1, - "required_confirmations": 4, - "avg_blocktime": 210, - "protocol": { - "type": "UTXO" - }, - "links": { - "github": "https://github.com/waifu-core/waifu-core" - }, - "electrum": [ + }, { - "url": "waifu-explorer.io:50002", - "protocol": "SSL", + "url": "electrumx.javerity.com:5885", "contact": [ { - "discord": "376197863346274307" + "discord": "cruelnovo#4936" } - ] + ], + "protocol": "TCP" } ], - "explorer_block_url": "block/" + "explorer_block_url": "block.dws?" }, "WAVES-BEP20": { "coin": "WAVES-BEP20", @@ -32185,20 +38320,27 @@ "contract_address": "0xFC3E14af0f0c2129a84Cc013D48C70D682902874" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xFC3E14af0f0c2129a84Cc013D48C70D682902874", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -32245,22 +38387,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -32294,20 +38444,35 @@ "contract_address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -32348,22 +38513,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -32404,22 +38577,87 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" + } + ], + "explorer_block_url": "block/" + }, + "WOO-ARB20": { + "coin": "WOO-ARB20", + "type": "Arbitrum", + "name": "WOO Network", + "coinpaprika_id": "woo-wootrade", + "coingecko_id": "woo-network", + "livecoinwatch_id": "WOO", + "explorer_url": "https://arbiscan.io/", + "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": 42161, + "decimals": 18, + "avg_blocktime": 0.25, + "required_confirmations": 10, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "ETH-ARB20", + "contract_address": "0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b" + } + }, + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 400000, + "erc20_payment": 800000, + "erc20_receiver_spend": 700000, + "erc20_sender_refund": 700000 + }, + "contract_address": "0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b", + "parent_coin": "ETH-ARB20", + "swap_contract_address": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "fallback_swap_contract": "0x9130b257d37a52e52f21054c4da3450c72f595ce", + "nodes": [ + { + "url": "https://arb1.arbitrum.io/rpc" + }, + { + "url": "https://arbitrum-one.publicnode.com", + "ws_url": "wss://arbitrum-one.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/arb/", + "ws_url": "wss://block-proxy.komodo.earth/rpc/arb/websocket" } ], "explorer_block_url": "block/" @@ -32453,7 +38691,7 @@ "contract_address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -32463,7 +38701,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -32497,20 +38740,27 @@ "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -32530,7 +38780,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "WOO Network", "rpcport": 80, "mm2": 1, @@ -32545,17 +38795,23 @@ "contract_address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" + }, + { + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -32589,20 +38845,35 @@ "contract_address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -32643,22 +38914,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -32692,20 +38971,27 @@ "contract_address": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -32715,8 +39001,8 @@ "coin": "XEP-segwit", "type": "UTXO", "name": "Electra Protocol", - "coinpaprika_id": "", - "coingecko_id": "", + "coinpaprika_id": "xep-electra-protocol", + "coingecko_id": "electra-protocol", "livecoinwatch_id": "XEP", "explorer_url": "https://electraprotocol.network/", "explorer_tx_url": "", @@ -32726,6 +39012,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "XEP Signed Message:\n", "fname": "Electra Protocol", "rpcport": 16816, "pubtype": 55, @@ -32808,20 +39095,27 @@ "contract_address": "0xb897D0a0f68800f8Be7D69ffDD1c24b69f57Bf3e" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xb897D0a0f68800f8Be7D69ffDD1c24b69f57Bf3e", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -32863,26 +39157,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block/", - "forex_id": "IDR" + "explorer_block_url": "block/" }, "XIDR-PLG20": { "coin": "XIDR-PLG20", @@ -32913,20 +39214,35 @@ "contract_address": "0x2c826035c1C36986117A0e949bD6ad4baB54afE2" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x2c826035c1C36986117A0e949bD6ad4baB54afE2", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -32959,20 +39275,35 @@ "contract_address": "0x43C934A845205F0b514417d757d7235B8f53f1B9" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x43C934A845205F0b514417d757d7235B8f53f1B9", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -32993,6 +39324,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Myriadcoin Signed Message:\n", "fname": "Myriad", "rpcport": 8332, "pubtype": 50, @@ -33010,12 +39342,13 @@ "derivation_path": "m/44'/90'", "electrum": [ { - "url": "lenoir.ecoincore.com:10892", - "protocol": "SSL" - }, - { - "url": "lenoir.ecoincore.com:10891", - "protocol": "TCP" + "url": "xmy-two.ewm-cx.net:50001", + "protocol": "TCP", + "contact": [ + { + "discord": "475820011634819072" + } + ] } ], "explorer_block_url": "block.dws?" @@ -33035,6 +39368,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Myriadcoin Signed Message:\n", "fname": "Myriad", "rpcport": 8332, "pubtype": 50, @@ -33056,12 +39390,13 @@ "derivation_path": "m/44'/90'", "electrum": [ { - "url": "lenoir.ecoincore.com:10892", - "protocol": "SSL" - }, - { - "url": "lenoir.ecoincore.com:10891", - "protocol": "TCP" + "url": "xmy-two.ewm-cx.net:50001", + "protocol": "TCP", + "contact": [ + { + "discord": "475820011634819072" + } + ] } ], "explorer_block_url": "block.dws?" @@ -33102,7 +39437,7 @@ }, "electrum": [ { - "url": "electrumx1.neurai.top:50001", + "url": "electrumx-dex-01.neuraiexplorer.com:50001", "protocol": "SSL", "contact": [ { @@ -33114,7 +39449,7 @@ ] }, { - "url": "electrumx2.neurai.top:50001", + "url": "electrumx-dex-02.neuraiexplorer.com:50001", "protocol": "SSL", "contact": [ { @@ -33282,20 +39617,35 @@ "contract_address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -33337,22 +39687,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -33398,26 +39756,33 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], - "explorer_block_url": "block/", - "forex_id": "SGD" + "explorer_block_url": "block/" }, "XSGD-PLG20": { "coin": "XSGD-PLG20", @@ -33448,24 +39813,38 @@ "contract_address": "0xDC3326e71D45186F113a2F448984CA0e8D201995" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xDC3326e71D45186F113a2F448984CA0e8D201995", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], - "explorer_block_url": "block/", - "forex_id": "SGD" + "explorer_block_url": "block/" }, "XTZ-BEP20": { "coin": "XTZ-BEP20", @@ -33495,20 +39874,35 @@ "contract_address": "0x16939ef78684453bfDFb47825F8a5F714f12623a" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x16939ef78684453bfDFb47825F8a5F714f12623a", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -33529,6 +39923,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Vanillacash Signed Message:\n", "fname": "VanillaCash", "isPoS": 1, "rpcport": 48888, @@ -33538,11 +39933,16 @@ "txfee": 1000, "dust": 10000, "mm2": 1, - "required_confirmations": 7, + "required_confirmations": 4, "avg_blocktime": 60, "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/724'", + "links": { + "github": "https://github.com/WikiMin3R/Vanillacash", + "homepage": "https://vanillacash.org" + }, "electrum": [ { "url": "xvc-ex-seven.ewmci.online:50002", @@ -33592,20 +39992,27 @@ "contract_address": "0xeBbfB9E5aF3172C7C0e1D4ff7106A8Bbb961F87B" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xeBbfB9E5aF3172C7C0e1D4ff7106A8Bbb961F87B", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -33618,7 +40025,7 @@ "coinpaprika_id": "xvc-vcash", "coingecko_id": "vcash", "livecoinwatch_id": "XVC", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -33632,7 +40039,7 @@ "p2shtype": 50, "wiftype": 128, "segwit": false, - "txfee": 0, + "txfee": 400000, "dust": 72800, "mm2": 1, "required_confirmations": 3, @@ -33727,15 +40134,15 @@ "derivation_path": "m/44'/77'", "electrum": [ { - "url": "electrumx-verge.cloud:50002", + "url": "electrum-verge.cloud:50002", "protocol": "SSL" }, { - "url": "88.99.26.209:5036", - "protocol": "TCP" + "url": "electrumx-verge.cloud:50002", + "protocol": "SSL" }, { - "url": "electrumx-verge.cloud:50001", + "url": "88.99.26.209:5036", "protocol": "TCP" } ], @@ -33770,20 +40177,35 @@ "contract_address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -33818,7 +40240,7 @@ "contract_address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -33828,7 +40250,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -33861,20 +40288,35 @@ "contract_address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -33921,22 +40363,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -33955,7 +40405,7 @@ "active": false, "is_testnet": false, "currently_enabled": false, - "wallet_only": false, + "wallet_only": true, "fname": "yearn.finance", "rpcport": 80, "mm2": 1, @@ -33970,17 +40420,23 @@ "contract_address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69" } }, - "derivation_path": "m/44'/1007'", + "derivation_path": "m/44'/60'", "contract_address": "0x29b0Da86e484E1C0029B56e817912d778aC0EC69", "parent_coin": "FTM", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://fantom.drpc.org" + "url": "https://block-proxy.komodo.earth/rpc/ftm", + "ws_url": "wss://block-proxy.komodo.earth/rpc/ftm/websocket" }, { - "url": "https://fantom-pokt.nodies.app" + "url": "https://fantom-rpc.publicnode.com", + "ws_url": "wss://fantom-rpc.publicnode.com" + }, + { + "url": "https://fantom.drpc.org", + "ws_url": "wss://fantom.drpc.org" } ], "explorer_block_url": "block/" @@ -34014,17 +40470,17 @@ "contract_address": "0xdfa3Ef49d357c6b0B2DfBB88701af2b7A053fD0A" } }, - "derivation_path": "m/44'/641'", + "derivation_path": "m/44'/60'", "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" }, { - "url": "https://kcc-rpc.com" + "url": "https://rpc-mainnet.kcc.network" } ], "explorer_block_url": "block/" @@ -34058,20 +40514,35 @@ "contract_address": "0xDA537104D6A5edd53c6fBba9A898708E465260b6" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 55000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xDA537104D6A5edd53c6fBba9A898708E465260b6", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" + }, + { + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -34104,20 +40575,27 @@ "contract_address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -34164,22 +40642,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -34210,8 +40696,8 @@ "txversion": 4, "overwintered": 1, "version_group_id": "0x892f2085", - "consensus_branch_id": "0xc2d6d0b4", - "txfee": 10000, + "consensus_branch_id": "0xc8e71055", + "txfee": 100000, "mm2": 1, "required_confirmations": 3, "avg_blocktime": 75, @@ -34367,20 +40853,27 @@ "contract_address": "0x530e9346870E632A63E8d461bb3c3622e00782DE" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x530e9346870E632A63E8d461bb3c3622e00782DE", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -34417,6 +40910,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/719'", + "links": { + "github": "https://github.com/WikiMin3R/ZetacoinE", + "homepage": "https://zetacoin.io" + }, "electrum": [ { "url": "zet-ex-three.ewmci.online:50012", @@ -34428,17 +40926,12 @@ ] }, { - "url": "207.180.252.200:50011", - "protocol": "TCP" + "url": "zeta-seed-d.zetacoin.network:50012", + "protocol": "SSL" }, { - "url": "zet-ex-three.ewmci.online:50011", - "protocol": "TCP", - "contact": [ - { - "discord": "475820011634819072" - } - ] + "url": "207.180.252.200:50011", + "protocol": "TCP" } ], "explorer_block_url": "block.dws?" @@ -34471,20 +40964,35 @@ "contract_address": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -34519,7 +41027,7 @@ "contract_address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2" } }, - "derivation_path": "m/44'/9000'", + "derivation_path": "m/44'/60'", "contract_address": "0x596fA47043f99A4e0F122243B841E55375cdE0d2", "parent_coin": "AVAX", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", @@ -34529,7 +41037,12 @@ "url": "https://api.avax.network/ext/bc/C/rpc" }, { - "url": "https://avalanche.blockpi.network/v1/rpc/public" + "url": "https://avalanche-c-chain-rpc.publicnode.com", + "ws_url": "wss://avalanche-c-chain-rpc.publicnode.com" + }, + { + "url": "https://block-proxy.komodo.earth/rpc/avax", + "ws_url": "wss://block-proxy.komodo.earth/rpc/avax/websocket" } ], "explorer_block_url": "block/" @@ -34575,22 +41088,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -34624,20 +41145,27 @@ "contract_address": "0x5559Edb74751A0edE9DeA4DC23aeE72cCA6bE3D5" } }, - "derivation_path": "m/44'/966'", + "derivation_path": "m/44'/60'", "contract_address": "0x5559Edb74751A0edE9DeA4DC23aeE72cCA6bE3D5", "parent_coin": "MATIC", "swap_contract_address": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://polygon-rpc.com" + "url": "https://block-proxy.komodo.earth/rpc/matic", + "ws_url": "wss://block-proxy.komodo.earth/rpc/matic/websocket" + }, + { + "url": "https://electrum3.cipig.net:18755", + "ws_url": "wss://electrum3.cipig.net:38755" }, { - "url": "https://polygon.blockpi.network/v1/rpc/public" + "url": "https://polygon-bor-rpc.publicnode.com", + "ws_url": "wss://polygon-bor-rpc.publicnode.com" }, { - "url": "https://electrum3.cipig.net:18755" + "url": "https://polygon.drpc.org", + "ws_url": "wss://polygon.drpc.org" } ], "explorer_block_url": "block/" @@ -34649,7 +41177,7 @@ "coinpaprika_id": "ink-ink", "coingecko_id": "ink", "livecoinwatch_id": "INK", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -34663,7 +41191,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -34804,22 +41332,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/", @@ -34854,20 +41390,35 @@ "contract_address": "0xaFF9084f2374585879e8B434C399E29E80ccE635" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", + "use_access_list": true, + "max_eth_tx_type": 2, + "gas_limit": { + "eth_send_erc20": 60000, + "erc20_payment": 110000, + "erc20_receiver_spend": 85000, + "erc20_sender_refund": 85000 + }, "contract_address": "0xaFF9084f2374585879e8B434C399E29E80ccE635", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -34881,7 +41432,7 @@ "coinpaprika_id": "hpy-hyper-pay", "coingecko_id": "hyper-pay", "livecoinwatch_id": "HPY", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -34895,7 +41446,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -34961,7 +41512,7 @@ "coinpaprika_id": "hlc-halalchain", "coingecko_id": "halalchain", "livecoinwatch_id": "HLC", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -34975,7 +41526,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35041,7 +41592,7 @@ "coinpaprika_id": "med-medibloc-qrc20", "coingecko_id": "medibloc", "livecoinwatch_id": "MED", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -35055,7 +41606,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35121,7 +41672,7 @@ "coinpaprika_id": "lstr-luna-stars", "coingecko_id": "meetluna", "livecoinwatch_id": "", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -35135,7 +41686,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35201,7 +41752,7 @@ "coinpaprika_id": "qbt-qbao", "coingecko_id": "qbao", "livecoinwatch_id": "QBT", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -35215,7 +41766,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35281,7 +41832,7 @@ "coinpaprika_id": "tsl-energo", "coingecko_id": "energo", "livecoinwatch_id": "TSL", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -35295,7 +41846,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35361,7 +41912,7 @@ "coinpaprika_id": "oc-oceanchain", "coingecko_id": "oceanchain", "livecoinwatch_id": "OC", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -35375,7 +41926,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35441,7 +41992,7 @@ "coinpaprika_id": "put-profile-utility-token", "coingecko_id": "profile-utility-token", "livecoinwatch_id": "", - "explorer_url": "https://explorer.qtum.org/", + "explorer_url": "https://qtum.info/", "explorer_tx_url": "", "explorer_address_url": "", "supported": [], @@ -35455,7 +42006,7 @@ "required_confirmations": 3, "mature_confirmations": 2000, "avg_blocktime": 32, - "txfee": 0, + "txfee": 400000, "dust": 72800, "protocol": { "type": "QRC20", @@ -35555,22 +42106,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35615,22 +42174,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35676,22 +42243,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35737,22 +42312,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35793,22 +42376,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35849,22 +42440,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35909,22 +42508,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -35965,22 +42572,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36026,22 +42641,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36086,22 +42709,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36130,7 +42761,7 @@ "protocol": { "type": "ETH" }, - "derivation_path": "m/44'/108'", + "derivation_path": "m/44'/60'", "trezor_coin": "Ubiq", "links": { "homepage": "https://ubiqsmart.com" @@ -36139,7 +42770,10 @@ "fallback_swap_contract": "0x9130b257D37A52E52F21054c4DA3450c72f595CE", "nodes": [ { - "url": "https://rpc.octano.dev/" + "url": "https://pyrus2.ubiqscan.io" + }, + { + "url": "https://rpc.octano.dev" } ], "explorer_block_url": "block/" @@ -36185,22 +42819,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36241,22 +42883,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36301,22 +42951,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36362,22 +43020,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36418,22 +43084,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36474,22 +43148,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36534,22 +43216,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36590,22 +43280,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36646,22 +43344,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36695,20 +43401,27 @@ "contract_address": "0x5fb4968fC85868DF3aD2d6e59883a10570f01D18" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x5fb4968fC85868DF3aD2d6e59883a10570f01D18", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -36750,22 +43463,30 @@ "fallback_swap_contract": "0x8500AFc0bc5214728082163326C2FF0C73f4a871", "nodes": [ { - "url": "https://eth1.cipig.net:18555", + "url": "https://block-proxy.komodo.earth/rpc/eth", + "ws_url": "wss://block-proxy.komodo.earth/rpc/eth/websocket", "contact": { - "email": "cipi@komodoplatform.com" + "email": "smk@komodoplatform.com" } }, { - "url": "https://eth2.cipig.net:18555", - "contact": { - "email": "cipi@komodoplatform.com" - } + "url": "https://eth.drpc.org", + "ws_url": "wss://eth.drpc.org" }, { "url": "https://eth3.cipig.net:18555", + "ws_url": "wss://eth3.cipig.net:38555", "contact": { "email": "cipi@komodoplatform.com" } + }, + { + "url": "https://ethereum-rpc.publicnode.com", + "ws_url": "wss://ethereum-rpc.publicnode.com" + }, + { + "url": "https://mainnet.gateway.tenderly.co", + "ws_url": "wss://mainnet.gateway.tenderly.co" } ], "explorer_block_url": "block/" @@ -36799,20 +43520,27 @@ "contract_address": "0x788D2780992222360f674cc12C36478870b8E6ED" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x788D2780992222360f674cc12C36478870b8E6ED", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -36863,15 +43591,6 @@ "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", @@ -36941,6 +43660,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Bitcoin Signed Message:\n", "fname": "Whive", "rpcport": 1867, "pubtype": 73, @@ -36957,6 +43677,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/658'", + "links": { + "github": "https://github.com/whiveio/whive", + "homepage": "https://www.whive.io" + }, "electrum": [ { "url": "electrumx1.cointest.com:50002", @@ -36987,21 +43712,6 @@ "twitter": "whiveio" } ] - }, - { - "url": "electrumx1.cointest.com:50001", - "contact": [ - { - "email": "protocol@whive.io" - }, - { - "discord": "whiveio#9340" - }, - { - "twitter": "whiveio" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -37021,6 +43731,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Bitcoin Signed Message:\n", "fname": "Whive", "rpcport": 1867, "pubtype": 73, @@ -37041,6 +43752,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/84'/658'", + "links": { + "github": "https://github.com/whiveio/whive", + "homepage": "https://www.whive.io" + }, "electrum": [ { "url": "electrumx1.cointest.com:50002", @@ -37071,21 +43787,6 @@ "twitter": "whiveio" } ] - }, - { - "url": "electrumx1.cointest.com:50001", - "contact": [ - { - "email": "protocol@whive.io" - }, - { - "discord": "whiveio#9340" - }, - { - "twitter": "whiveio" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -37105,6 +43806,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "eCash Signed Message:\n", "fname": "eCash", "rpcport": 8332, "pubtype": 0, @@ -37126,24 +43828,15 @@ "type": "UTXO" }, "derivation_path": "m/44'/1899'", + "links": { + "github": "https://github.com/Bitcoin-ABC/bitcoin-abc", + "homepage": "https://e.cash" + }, "electrum": [ { "url": "ecash.stackwallet.com:59002", "protocol": "SSL" }, - { - "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", @@ -37189,183 +43882,30 @@ "contract_address": "0xee8EE60503fd0a735cC972A08E3a5B2026DDCe47" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xee8EE60503fd0a735cC972A08E3a5B2026DDCe47", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "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:20002", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "electrum2.cipig.net:20002", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - }, - { - "url": "electrum3.cipig.net:20002", - "protocol": "SSL", - "contact": [ - { - "email": "cipi@komodoplatform.com" - }, - { - "discord": "cipi#4502" - } - ] - } - ], - "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": true, - "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:20033", - "protocol": "SSL", - "contact": [ - { - "email": "smk@komodoplatform.com" - }, - { - "discord": "smk#7640" - } - ] + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "zombie.dragonhound.info:20133", - "protocol": "SSL", - "contact": [ - { - "email": "smk@komodoplatform.com" - }, - { - "discord": "smk#7640" - } - ] + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "zombie.dragonhound.info:10033", - "contact": [ - { - "email": "smk@komodoplatform.com" - }, - { - "discord": "smk#7640" - } - ], - "protocol": "TCP" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], + "token_address_url": "tokentxns?a=", "explorer_block_url": "block/" }, "ZINU-BEP20": { @@ -37396,20 +43936,27 @@ "contract_address": "0x21F9B5b2626603e3F40bfc13d01AfB8c431D382F" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x21F9B5b2626603e3F40bfc13d01AfB8c431D382F", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -37430,6 +43977,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, + "sign_message_prefix": "Runebase Signed Message:\n", "fname": "Runebase", "rpcport": 9432, "pubtype": 61, @@ -37446,6 +43994,11 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/88'", + "links": { + "github": "https://github.com/runebase/runebase", + "homepage": "https://www.runebase.io" + }, "electrum": [ { "url": "electrum2.runebase.io:50002", @@ -37470,18 +44023,6 @@ "discord": "Bago#7842" } ] - }, - { - "url": "electrum4.runebase.io:50002", - "protocol": "SSL", - "contact": [ - { - "email": "support@runebase.io" - }, - { - "discord": "Bago#7842" - } - ] } ], "explorer_block_url": "block/" @@ -37526,15 +44067,6 @@ "email": "support@actioncoin.com" } ] - }, - { - "url": "electrumx2.actioncoin.com:10001", - "contact": [ - { - "email": "support@actioncoin.com" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -37567,20 +44099,27 @@ "contract_address": "0xD7380b10bF3886B34Ab3422DEa42E408850375CA" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0xD7380b10bF3886B34Ab3422DEa42E408850375CA", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -37610,13 +44149,20 @@ "decimals": 6, "denom": "uatom", "account_prefix": "cosmos", + "chain_registry_name": "cosmoshub", "chain_id": "cosmoshub-4" } }, "derivation_path": "m/44'/118'", "rpc_urls": [ { - "url": "https://cosmos.komodo.earth/" + "url": "https://cosmos-rpc.alpha.komodo.earth/", + "api_url": "https://cosmos-api.alpha.komodo.earth/", + "grpc_url": "https://cosmos-grpc.alpha.komodo.earth/", + "ws_url": "wss://cosmos-rpc.alpha.komodo.earth/websocket" + }, + { + "url": "https://cosmoshub.rpc.stakin-nodes.com/" } ], "explorer_block_url": "block/", @@ -37625,7 +44171,7 @@ "IRIS": { "coin": "IRIS", "type": "TENDERMINT", - "name": "Iris", + "name": "IRISnet", "coinpaprika_id": "iris-irisnet", "coingecko_id": "iris-network", "livecoinwatch_id": "IRIS", @@ -37638,7 +44184,8 @@ "currently_enabled": false, "wallet_only": false, "avg_blocktime": 7, - "fname": "Iris", + "fname": "IRISnet", + "chain_id": 6688, "mm2": 1, "protocol": { "type": "TENDERMINT", @@ -37647,20 +44194,78 @@ "denom": "uiris", "account_prefix": "iaa", "chain_id": "irishub-1", + "chain_registry_name": "irishub", "gas_price": 0.5 } }, - "derivation_path": "m/44'/566'", + "derivation_path": "m/44'/118'", "rpc_urls": [ { - "url": "https://iris.komodo.earth/" + "url": "https://iris-rpc.alpha.komodo.earth/", + "api_url": "https://iris-api.alpha.komodo.earth/", + "grpc_url": "https://iris-grpc.alpha.komodo.earth/", + "ws_url": "wss://iris-rpc.alpha.komodo.earth/websocket" }, { "url": "https://rpc.irishub-1.irisnet.org" } ], - "explorer_block_url": "block/", - "binance_id": "IRIS" + "explorer_block_url": "block/" + }, + "IRIS-BEP20": { + "coin": "IRIS-BEP20", + "type": "BEP-20", + "name": "IRISnet", + "coinpaprika_id": "iris-irisnet", + "coingecko_id": "iris-network", + "livecoinwatch_id": "IRIS", + "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": "IRISnet", + "rpcport": 80, + "mm2": 1, + "chain_id": 56, + "decimals": 18, + "avg_blocktime": 3, + "required_confirmations": 3, + "protocol": { + "type": "ERC20", + "protocol_data": { + "platform": "BNB", + "contract_address": "0x05C50a62b0b87bE1fFB1Cf3b77d9eDBa834ef6f7" + } + }, + "derivation_path": "m/44'/60'", + "contract_address": "0x05C50a62b0b87bE1fFB1Cf3b77d9eDBa834ef6f7", + "parent_coin": "BNB", + "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", + "nodes": [ + { + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" + }, + { + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" + }, + { + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" + } + ], + "token_address_url": "tokentxns?a=", + "explorer_block_url": "block/" }, "OSMO": { "coin": "OSMO", @@ -37686,16 +44291,27 @@ "decimals": 6, "denom": "uosmo", "account_prefix": "osmo", + "chain_registry_name": "osmosis", "chain_id": "osmosis-1", "gas_price": 0.5 } }, + "derivation_path": "m/44'/118'", "rpc_urls": [ { - "url": "https://rpc.osmosis.zone/" + "url": "https://osmosis-rpc.alpha.komodo.earth/", + "api_url": "https://osmosis-api.alpha.komodo.earth/", + "grpc_url": "https://osmosis-grpc.alpha.komodo.earth/", + "ws_url": "wss://osmosis-rpc.alpha.komodo.earth/websocket" + }, + { + "url": "https://osmosis.rpc.stakin-nodes.com" }, { - "url": "https://osmosis-mainnet-rpc.allthatnode.com:26657/" + "url": "https://rpc-osmosis-ia.cosmosia.notional.ventures/" + }, + { + "url": "https://rpc.osmosis.zone/" } ], "explorer_block_url": "block/", @@ -37704,9 +44320,9 @@ "ATOM-IBC_IRIS": { "coin": "ATOM-IBC_IRIS", "type": "TENDERMINTTOKEN", - "name": "Cosmos IBC-IRIS", + "name": "Cosmos", "coinpaprika_id": "atom-cosmos", - "coingecko_id": "cosmos-hub", + "coingecko_id": "cosmos", "livecoinwatch_id": "ATOM", "explorer_url": "https://irishub.iobscan.io/", "explorer_tx_url": "#/txs/", @@ -37716,7 +44332,7 @@ "is_testnet": false, "currently_enabled": false, "wallet_only": false, - "fname": "Cosmos IBC-IRIS", + "fname": "Cosmos", "avg_blocktime": 7, "mm2": 1, "protocol": { @@ -37728,11 +44344,14 @@ "gas_price": 0.5 } }, - "derivation_path": "m/44'/566'", + "derivation_path": "m/44'/118'", "parent_coin": "IRIS", "rpc_urls": [ { - "url": "https://iris.komodo.earth/" + "url": "https://iris-rpc.alpha.komodo.earth/", + "api_url": "https://iris-api.alpha.komodo.earth/", + "grpc_url": "https://iris-grpc.alpha.komodo.earth/", + "ws_url": "wss://iris-rpc.alpha.komodo.earth/websocket" }, { "url": "https://rpc.irishub-1.irisnet.org" @@ -37850,18 +44469,6 @@ "homepage": "https://coin.crionic.org" }, "electrum": [ - { - "url": "coin.crionic.org:50002", - "protocol": "SSL", - "contact": [ - { - "email": "diabatiis@gmail.com" - }, - { - "discord": "Diabaths#1919" - } - ] - }, { "url": "explorer.crionic.org:50002", "protocol": "SSL", @@ -37873,18 +44480,6 @@ "discord": "Diabaths#1919" } ] - }, - { - "url": "coin.crionic.org:50001", - "contact": [ - { - "email": "diabatiis@gmail.com" - }, - { - "discord": "Diabaths#1919" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -37894,7 +44489,7 @@ "type": "UTXO", "name": "Evrmore Coin", "coinpaprika_id": "evr-evrmore", - "coingecko_id": "", + "coingecko_id": "evrmore", "livecoinwatch_id": "_EVR", "explorer_url": "https://evr.cryptoscope.io/", "explorer_tx_url": "tx/?txid=", @@ -37947,18 +44542,6 @@ "discord": "Hans_Schmidt#0745" } ] - }, - { - "url": "electrum1-mainnet.evrmorecoin.org:50001", - "contact": [ - { - "email": "hans_schm1dt@protonmail.com" - }, - { - "discord": "Hans_Schmidt#0745" - } - ], - "protocol": "TCP" } ], "explorer_block_url": "block/" @@ -37991,13 +44574,14 @@ "protocol": { "type": "UTXO" }, + "derivation_path": "m/44'/136'", "links": { "github": "https://github.com/kiirocoin/kiiro", "homepage": "https://kiirocoin.org" }, "electrum": [ { - "url": "electrum1.kiirocoin.org:50002", + "url": "electrum2.kiirocoin.org:50002", "protocol": "SSL", "contact": [ { @@ -38006,11 +44590,11 @@ ] }, { - "url": "electrum1.kiirocoin.org:50001", - "protocol": "TCP", + "url": "electrum3.kiirocoin.org:50002", + "protocol": "SSL", "contact": [ { - "discord": "1155906841625239684" + "github": "https://github.com/kiirocoin/electrum-kiiro/issues" } ] } @@ -38045,20 +44629,27 @@ "contract_address": "0x347862372f7C8f83D69025234367Ac11c5241Db3" } }, - "derivation_path": "m/44'/714'", + "derivation_path": "m/44'/60'", "contract_address": "0x347862372f7C8f83D69025234367Ac11c5241Db3", "parent_coin": "BNB", "swap_contract_address": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "fallback_swap_contract": "0xeDc5b89Fe1f0382F9E4316069971D90a0951DB31", "nodes": [ { - "url": "https://bsc1.cipig.net:18655" + "url": "https://block-proxy.komodo.earth/rpc/bnb", + "ws_url": "wss://block-proxy.komodo.earth/rpc/bnb/websocket" + }, + { + "url": "https://bsc1.cipig.net:18655", + "ws_url": "wss://bsc1.cipig.net:38655" }, { - "url": "https://bsc2.cipig.net:18655" + "url": "https://bsc2.cipig.net:18655", + "ws_url": "wss://bsc2.cipig.net:38655" }, { - "url": "https://bsc3.cipig.net:18655" + "url": "https://bsc3.cipig.net:18655", + "ws_url": "wss://bsc3.cipig.net:38655" } ], "token_address_url": "tokentxns?a=", @@ -38120,5 +44711,353 @@ } ], "explorer_block_url": "block/" + }, + "IRISTEST": { + "coin": "IRISTEST", + "type": "TENDERMINT", + "name": "Iris Test", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://nyancat.iobscan.io/", + "explorer_tx_url": "#/txs/", + "explorer_address_url": "#/address/", + "supported": [], + "active": false, + "is_testnet": true, + "currently_enabled": false, + "wallet_only": false, + "avg_blocktime": 7, + "fname": "Iris Test", + "mm2": 1, + "protocol": { + "type": "TENDERMINT", + "protocol_data": { + "decimals": 6, + "denom": "unyan", + "account_prefix": "iaa", + "chain_id": "nyancat-9", + "gas_price": 0.5 + } + }, + "derivation_path": "m/44'/118'", + "rpc_urls": [ + { + "url": "https://iristest-rpc.bravo.komodo.earth/" + } + ], + "explorer_block_url": "#/blocks/" + }, + "NUCLEUSTEST": { + "coin": "NUCLEUSTEST", + "type": "TENDERMINT", + "name": "Nucleus Test", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://nucleus.explorer.komodo.earth/", + "explorer_tx_url": "nucleus/transactions/", + "explorer_address_url": "nucleus/accounts/", + "supported": [], + "active": false, + "is_testnet": true, + "currently_enabled": false, + "wallet_only": false, + "avg_blocktime": 5, + "fname": "Nucleus Test", + "mm2": 1, + "protocol": { + "type": "TENDERMINT", + "protocol_data": { + "decimals": 6, + "denom": "unucl", + "account_prefix": "nuc", + "chain_registry_name": "nucleus", + "chain_id": "nucleus-3" + } + }, + "derivation_path": "m/44'/118'", + "rpc_urls": [ + { + "url": "https://nucleus-rpc.alpha.komodo.earth/", + "api_url": "https://nucleus-api.alpha.komodo.earth/", + "grpc_url": "https://nucleus-grpc.alpha.komodo.earth/", + "ws_url": "wss://nucleus-rpc.alpha.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.bravo.komodo.earth/", + "api_url": "https://nucleus-api.bravo.komodo.earth/", + "grpc_url": "https://nucleus-grpc.bravo.komodo.earth/", + "ws_url": "wss://nucleus-rpc.bravo.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.charlie.komodo.earth/", + "api_url": "https://nucleus-api.charlie.komodo.earth/", + "grpc_url": "https://nucleus-grpc.charlie.komodo.earth/", + "ws_url": "wss://nucleus-rpc.charlie.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.delta.komodo.earth/", + "api_url": "https://nucleus-api.delta.komodo.earth/", + "grpc_url": "https://nucleus-grpc.delta.komodo.earth/", + "ws_url": "wss://nucleus-rpc.delta.komodo.earth/websocket" + } + ], + "explorer_block_url": "nucleus/blocks/" + }, + "IRISTEST-IBC_NUCLEUSTEST": { + "coin": "IRISTEST-IBC_NUCLEUSTEST", + "type": "TENDERMINTTOKEN", + "name": "Iris Test", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://nyancat.iobscan.io/", + "explorer_tx_url": "#/txs/", + "explorer_address_url": "#/address/", + "supported": [], + "active": false, + "is_testnet": true, + "currently_enabled": false, + "wallet_only": false, + "avg_blocktime": 5, + "fname": "Iris Test", + "mm2": 1, + "protocol": { + "type": "TENDERMINTTOKEN", + "protocol_data": { + "platform": "NUCLEUSTEST", + "decimals": 6, + "denom": "ibc/F7F28FF3C09024A0225EDBBDB207E5872D2B4EF2FB874FE47B05EF9C9A7D211C" + } + }, + "derivation_path": "m/44'/118'", + "parent_coin": "IRISTEST", + "rpc_urls": [ + { + "url": "https://iristest-rpc.bravo.komodo.earth/" + } + ], + "explorer_block_url": "#/blocks/" + }, + "ATOM-IBC_NUCLEUSTEST": { + "coin": "ATOM-IBC_NUCLEUSTEST", + "type": "TENDERMINTTOKEN", + "name": "Cosmos", + "coinpaprika_id": "atom-cosmos", + "coingecko_id": "cosmos", + "livecoinwatch_id": "ATOM", + "explorer_url": "https://nucleus.explorer.komodo.earth/", + "explorer_tx_url": "nucleus/transactions/", + "explorer_address_url": "nucleus/accounts/", + "supported": [], + "active": false, + "is_testnet": true, + "currently_enabled": false, + "wallet_only": false, + "avg_blocktime": 5, + "fname": "Cosmos", + "mm2": 1, + "protocol": { + "type": "TENDERMINTTOKEN", + "protocol_data": { + "platform": "NUCLEUSTEST", + "decimals": 6, + "denom": "ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E" + } + }, + "derivation_path": "m/44'/118'", + "parent_coin": "NUCLEUSTEST", + "rpc_urls": [ + { + "url": "https://nucleus-rpc.alpha.komodo.earth/", + "api_url": "https://nucleus-api.alpha.komodo.earth/", + "grpc_url": "https://nucleus-grpc.alpha.komodo.earth/", + "ws_url": "wss://nucleus-rpc.alpha.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.bravo.komodo.earth/", + "api_url": "https://nucleus-api.bravo.komodo.earth/", + "grpc_url": "https://nucleus-grpc.bravo.komodo.earth/", + "ws_url": "wss://nucleus-rpc.bravo.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.charlie.komodo.earth/", + "api_url": "https://nucleus-api.charlie.komodo.earth/", + "grpc_url": "https://nucleus-grpc.charlie.komodo.earth/", + "ws_url": "wss://nucleus-rpc.charlie.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.delta.komodo.earth/", + "api_url": "https://nucleus-api.delta.komodo.earth/", + "grpc_url": "https://nucleus-grpc.delta.komodo.earth/", + "ws_url": "wss://nucleus-rpc.delta.komodo.earth/websocket" + } + ], + "explorer_block_url": "nucleus/blocks/", + "binance_id": "ATOM" + }, + "OSMO-IBC_NUCLEUSTEST": { + "coin": "OSMO-IBC_NUCLEUSTEST", + "type": "TENDERMINTTOKEN", + "name": "Osmosis", + "coinpaprika_id": "osmo-osmosis", + "coingecko_id": "osmosis", + "livecoinwatch_id": "OSMO", + "explorer_url": "https://nucleus.explorer.komodo.earth/", + "explorer_tx_url": "nucleus/transactions/", + "explorer_address_url": "nucleus/accounts/", + "supported": [], + "active": false, + "is_testnet": true, + "currently_enabled": false, + "wallet_only": false, + "avg_blocktime": 5, + "fname": "Osmosis", + "mm2": 1, + "protocol": { + "type": "TENDERMINTTOKEN", + "protocol_data": { + "platform": "NUCLEUSTEST", + "decimals": 6, + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23" + } + }, + "derivation_path": "m/44'/118'", + "parent_coin": "NUCLEUSTEST", + "rpc_urls": [ + { + "url": "https://nucleus-rpc.alpha.komodo.earth/", + "api_url": "https://nucleus-api.alpha.komodo.earth/", + "grpc_url": "https://nucleus-grpc.alpha.komodo.earth/", + "ws_url": "wss://nucleus-rpc.alpha.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.bravo.komodo.earth/", + "api_url": "https://nucleus-api.bravo.komodo.earth/", + "grpc_url": "https://nucleus-grpc.bravo.komodo.earth/", + "ws_url": "wss://nucleus-rpc.bravo.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.charlie.komodo.earth/", + "api_url": "https://nucleus-api.charlie.komodo.earth/", + "grpc_url": "https://nucleus-grpc.charlie.komodo.earth/", + "ws_url": "wss://nucleus-rpc.charlie.komodo.earth/websocket" + }, + { + "url": "https://nucleus-rpc.delta.komodo.earth/", + "api_url": "https://nucleus-api.delta.komodo.earth/", + "grpc_url": "https://nucleus-grpc.delta.komodo.earth/", + "ws_url": "wss://nucleus-rpc.delta.komodo.earth/websocket" + } + ], + "explorer_block_url": "nucleus/blocks/", + "binance_id": "OSMO" + }, + "LUPA": { + "coin": "LUPA", + "type": "Smart Chain", + "name": "Lupaza", + "coinpaprika_id": "", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "https://explorer.lupacoin.biz/", + "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": "LUPA", + "fname": "Lupaza", + "rpcport": 64151, + "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": "electrum.lupacoin.biz:50005", + "protocol": "SSL", + "contact": [ + { + "email": "contact@lupacoin.biz" + }, + { + "github": "LUPAZA-coin" + } + ] + }, + { + "url": "electrum1.lupacoin.biz:50005", + "protocol": "SSL", + "contact": [ + { + "email": "contact@lupacoin.biz" + }, + { + "github": "LUPAZA-coin" + } + ] + } + ], + "explorer_block_url": "block/" + }, + "ZOIN": { + "coin": "ZOIN", + "type": "UTXO", + "name": "ZoinCommunity", + "coinpaprika_id": "zoin-zoin", + "coingecko_id": "", + "livecoinwatch_id": "", + "explorer_url": "http://zoincommunity.com:3001/", + "explorer_tx_url": "", + "explorer_address_url": "", + "supported": [], + "active": false, + "is_testnet": false, + "currently_enabled": false, + "wallet_only": false, + "sign_message_prefix": "Zoincoin Signed Message:\n", + "fname": "ZoinCommunity", + "rpcport": 8256, + "pubtype": 80, + "p2shtype": 53, + "wiftype": 208, + "segwit": false, + "txfee": 1000000, + "dust": 1000000, + "mm2": 1, + "required_confirmations": 3, + "avg_blocktime": 150, + "protocol": { + "type": "UTXO" + }, + "derivation_path": "m/44'/60'", + "links": { + "github": "https://github.com/seopub/zoincomumity", + "homepage": "http://zoincommunity.com/" + }, + "electrum": [ + { + "url": "electrum.zoincommunity.com:50002", + "protocol": "SSL", + "disable_cert_verification": true, + "contact": [ + { + "github": "https://github.com/seopub/electrumx_zoin/issues" + } + ] + } + ], + "explorer_block_url": "block/" } } \ No newline at end of file diff --git a/coins_ci.json b/coins_ci.json index b6e9dea00..92fdf6d6f 100644 --- a/coins_ci.json +++ b/coins_ci.json @@ -1,3 +1,3 @@ { - "coins_repo_commit": "3c638c0b29db625b7b785500943580b48ab73d99" + "coins_repo_commit": "8a37a6cdb8f4f334f305899006b31415e3a49bf1" } \ No newline at end of file diff --git a/fetch_coins.ps1 b/fetch_coins.ps1 index aa30463b7..b90fbad8d 100644 --- a/fetch_coins.ps1 +++ b/fetch_coins.ps1 @@ -1,4 +1,5 @@ $config_init_mm2 = "assets\coins.json" +$config_mm2 = "assets\coins_config_tcp.json" # back compatibility if ( ( Test-Path -Path $config_init_mm2 -PathType Leaf ) -and -not ( Test-Path -Path "coins_ci.json" -PathType Leaf ) ) { @@ -8,13 +9,14 @@ if ( ( Test-Path -Path $config_init_mm2 -PathType Leaf ) -and -not ( Test-Path - # 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 +curl.exe -l "https://raw.githubusercontent.com/KomodoPlatform/coins/${coins_repo_commit}/utils/coins_config_tcp.json" --output $config_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 'keys | .[]' $config_mm2 > app_assets jq.exe -r '.[].coin' $config_init_mm2 > coins_assets # check if all assets from coins_config are present in coins.json diff --git a/fetch_coins.sh b/fetch_coins.sh index 0061015f3..b250268c7 100755 --- a/fetch_coins.sh +++ b/fetch_coins.sh @@ -10,9 +10,10 @@ 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" +curl -l "https://raw.githubusercontent.com/KomodoPlatform/coins/${coins_repo_commit}/utils/coins_config_tcp.json" --output "assets/coins_config_tcp.json" # get assets lists -jq -r 'keys | .[]' assets/coins_config.json > app_assets +jq -r 'keys | .[]' assets/coins_config_tcp.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 diff --git a/ios/Podfile b/ios/Podfile index 7822d7af5..d8ba24953 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -40,6 +40,13 @@ target 'Runner' do end post_install do |installer| + installer.generated_projects.each do |project| + project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0' + end + end + end installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 8361e1424..d18d5fdd0 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -248,6 +248,6 @@ SPEC CHECKSUMS: SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f url_launcher_ios: 839c58cdb4279282219f5e248c3321761ff3c4de -PODFILE CHECKSUM: 06ac96a3a1292619ed9b320967fe8c449e23cc74 +PODFILE CHECKSUM: cd5143052d138a0b4199ab28b7fa221823da3c4d -COCOAPODS: 1.13.0 +COCOAPODS: 1.15.2 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 1621e9abf..03e5af15e 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -472,7 +472,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 19; DEVELOPMENT_TEAM = 3AU3KU35KZ; - ENABLE_BITCODE = NO; + ENABLE_BITCODE = YES; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/Flutter", @@ -621,7 +621,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 19; DEVELOPMENT_TEAM = 3AU3KU35KZ; - ENABLE_BITCODE = NO; + ENABLE_BITCODE = YES; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/Flutter", @@ -659,7 +659,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 19; DEVELOPMENT_TEAM = 3AU3KU35KZ; - ENABLE_BITCODE = NO; + ENABLE_BITCODE = YES; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/Flutter", diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..0c67376eb --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,5 @@ + + + + + diff --git a/lib/app_config/app_config.dart b/lib/app_config/app_config.dart index dda394293..0e2d2f7af 100644 --- a/lib/app_config/app_config.dart +++ b/lib/app_config/app_config.dart @@ -1,5 +1,6 @@ import 'dart:io'; +import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import '../model/feed_provider.dart'; @@ -48,31 +49,74 @@ class AppConfig { String get appCompanyLong => 'Komodo Platform'; String get appCompanyShort => 'Komodo'; + final bool kIsWalletOnly = !kDebugMode; + List get defaultCoins => ['KMD', 'BTC-segwit']; List get coinsFiat => ['BTC-segwit', 'KMD']; List get walletOnlyCoins => [ + 'AAVE-FTM20', + 'AGIX-ERC20', + 'AGIX-PLG20', + 'APE-FTM20', 'ARRR-BEP20', - 'ATOM', + 'AVA-BEP20', + 'BAND-FTM20', 'BBK', - 'CELR-ARB20', + 'BIDR-BEP20', + 'RBTC', + 'BRZ-ERC20_OLD', + 'BRZ-PLG20_OLD', + 'BTT-BEP20', + 'BUSD-AVX20', + 'BUSD-MVR20', + 'BUSD-ERC20', + 'BUSD-BEP20', + 'BUSD-PLG20', + 'CHSB-ERC20', + 'CHSB-PLG20', + 'CRV-FTM20', + 'DAI-FTM20', + 'DAI-MVR20', + 'DFX-PLG20_OLD', + 'ETH-FTM20', 'GALA-BEP20', - 'KIP0002', - 'KIP0003', - 'KIP0004', + 'HUSD-ERC20', + 'HUSD-HCO20', + 'HUSD-KRC20', + 'HUSD-PLG20', + 'LINK-FTM20', + 'MC-ERC20', + 'MC-BEP20', 'MINU-BEP20', + 'MM-MVR20', 'NVC', - 'OSMO', + 'OCEAN-BEP20', + 'OCEAN-ERC20', + 'OCEAN-PLG20', 'PAXG-ERC20', 'PINK', 'POT', - 'RBTC', 'RDD', + 'SNX-FTM20', + 'SUSHI-FTM20', + 'SUSHI-MVR20', 'SXP-BEP20', 'SXP-ERC20', - 'USDT-ARB20', + 'TRX-BEP20_OLD', + 'TUSD-BEP20_OLD', + 'TUSD-FTM20', + 'USDC-AVX20_OLD', + 'USDC-FTM20', + 'USDC-MVR20', + 'USDT-MVR20', + 'USDT-FTM20', + 'USDT-AVX20_OLD', 'USDT-ERC20', - 'VOTE2023', + 'WOO-FTM20', 'XPM', + 'YFI-FTM20', + 'ATOM', + 'OSMO' ]; List get protocolSuffixes => [ @@ -89,6 +133,7 @@ class AppConfig { 'SLP', 'OLD', 'IBC_IRIS', + 'IBC_NUCLEUSTEST', 'segwit', 'ZHTLC', ]; diff --git a/lib/localizations.dart b/lib/localizations.dart index 04161b788..93d7ae964 100644 --- a/lib/localizations.dart +++ b/lib/localizations.dart @@ -279,13 +279,10 @@ class AppLocalizations { '. The team and the community are always happy to help!', name: 'answer_6', args: [name, link, appName, appCompanyShort]); - String get question_7 => - Intl.message('Do you have country restrictions?', name: 'question_7'); - String answer_7(String appName) => Intl.message( - 'No! $appName is fully decentralized.' - ' It is not possible to limit user access by any third party.', - name: 'answer_7', - args: [appName]); + // TODO: update contents when KYC framework is public + // String get question_7 => + // Intl.message('Do you have country restrictions?', name: 'question_7'); + // String answer_7(String appName) => Intl.message(); String question_8(String appName) => Intl.message('Who is behind $appName?', name: 'question_8', args: [appName]); String answer_8(String appName, String appCompanyShort) => Intl.message( diff --git a/lib/main.dart b/lib/main.dart index 45990b375..c5306120c 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,6 +1,7 @@ import 'dart:async'; import 'package:connectivity_plus/connectivity_plus.dart'; +import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_bloc/flutter_bloc.dart' as real_bloc; @@ -308,7 +309,7 @@ class _MyHomePageState extends State with WidgetsBindingObserver { final List _children = [ CoinsPage(), - DexPage(), + if (!appConfig.kIsWalletOnly) DexPage(), MarketsPage(), if (appConfig.isFeedEnabled) FeedPage() ]; @@ -544,9 +545,11 @@ class _MyHomePageState extends State with WidgetsBindingObserver { key: Key('main-nav-portfolio'), ), label: AppLocalizations.of(context).portfolio), - BottomNavigationBarItem( - icon: const Icon(Icons.swap_vert, key: Key('main-nav-dex')), - label: AppLocalizations.of(context).dex), + if (!appConfig.kIsWalletOnly) + BottomNavigationBarItem( + icon: + const Icon(Icons.swap_vert, key: Key('main-nav-dex')), + label: AppLocalizations.of(context).dex), BottomNavigationBarItem( icon: const Icon( Icons.show_chart, diff --git a/lib/model/orderbook.dart b/lib/model/orderbook.dart index 5be8565a8..64a7514a8 100644 --- a/lib/model/orderbook.dart +++ b/lib/model/orderbook.dart @@ -89,8 +89,10 @@ class Ask { this.price, this.priceFract, this.maxvolume, + this.maxRelVolume, this.maxvolumeFract, this.minVolume, + this.minRelVolume, this.pubkey, this.age, this.zcredits, @@ -107,21 +109,41 @@ class Ask { priceFract: json['price']['fraction'], maxvolume: deci(json['base_max_volume']['decimal']), maxvolumeFract: json['base_max_volume']['fraction'], + maxRelVolume: deci(json['rel_max_volume']['decimal']), minVolume: fract2rat(json['base_min_volume']['fraction']) ?? Rational.parse(json['base_min_volume']['decimal']), + minRelVolume: fract2rat(json['rel_min_volume']['fraction']) ?? + Rational.parse(json['rel_min_volume']['decimal']), pubkey: json['pubkey'] ?? '', age: json['age'] ?? 0, zcredits: json['zcredits'] ?? 0, ); } + /// The coin being bought (rel coin in the request). String coin; String address; + + /// The price of 1 rel coin (coin being bought) in terms of the base coin + /// (coin being sold). E.g. If asking for WBTC, the price is the amount of + /// KMD needed to buy 1 WBTC. String price; Map priceFract; + + /// The maximum amount of the base coin that can be sold Map maxvolumeFract; + + /// The maximum amount of the base coin that can be sold Decimal maxvolume; + + /// The maximum amount of [coin] that can be bought + Decimal maxRelVolume; + + /// The minimum amount of the base coin that can be sold Rational minVolume; + + /// The minimum amount of [coin] that can be bought + Rational minRelVolume; String pubkey; int age; int zcredits; @@ -140,9 +162,13 @@ class Ask { 'decimal': maxvolume.toString(), 'fraction': maxvolumeFract, }, + 'rel_max_volume': {'decimal': maxRelVolume.toString()}, 'base_min_volume': { 'fraction': rat2fract(minVolume), }, + 'rel_min_volume': { + 'fraction': rat2fract(minRelVolume), + }, 'pubkey': pubkey ?? '', 'age': age ?? 0, 'zcredits': zcredits ?? 0, diff --git a/lib/screens/authentification/create_password_page.dart b/lib/screens/authentification/create_password_page.dart index 48d608ad8..893b56730 100644 --- a/lib/screens/authentification/create_password_page.dart +++ b/lib/screens/authentification/create_password_page.dart @@ -37,7 +37,9 @@ class _CreatePasswordPageState extends State { if (text.isEmpty || text2.isEmpty || !_formKey.currentState.validate() || - controller1.text != controller2.text) { + controller1.text != controller2.text || + controller1.text.length < 12 || + controller2.text.length < 12) { setState(() { isValidPassword = false; }); @@ -49,12 +51,16 @@ class _CreatePasswordPageState extends State { } bool _validateInputs() { + // Only validate if the user has entered atleast 3 characters. + if (controller1.text.length < 3) { + return false; + } if (_formKey.currentState.validate()) { -// If all data are correct then save data to out variables + // If all data are correct then save data to out variables _formKey.currentState.save(); return true; } else { -// If all data are not valid then start auto validation. + // If all data are not valid then start auto validation. setState(() { _autoValidate = true; }); @@ -90,6 +96,9 @@ class _CreatePasswordPageState extends State { _fieldFocusChange(context, _focus1, _focus2); _validateInputs(); }, + onChanged: (value) { + _validateInputs(); + }, textInputAction: TextInputAction.next, autocorrect: false, enableInteractiveSelection: true, diff --git a/lib/screens/authentification/welcome_page.dart b/lib/screens/authentification/welcome_page.dart index 676104901..7bdf97432 100644 --- a/lib/screens/authentification/welcome_page.dart +++ b/lib/screens/authentification/welcome_page.dart @@ -36,17 +36,25 @@ class _WelcomePageState extends State { SvgPicture.asset(Theme.of(context).brightness == Brightness.light ? 'assets/svg_light/welcome_wallet.svg' : 'assets/svg/welcome_wallet.svg'), + SizedBox(height: 4), Text( AppLocalizations.of(context).welcomeTitle, key: const Key('titleCreateWallet'), style: Theme.of(context).textTheme.headline5, textAlign: TextAlign.center, ), + SizedBox(height: 4), Row( mainAxisAlignment: MainAxisAlignment.center, - children: [ + children: [ Text(AppLocalizations.of(context).to + ' ', style: Theme.of(context).textTheme.subtitle1), + ], + ), + SizedBox(height: 4), + Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ Text( toInitialUpper(appConfig.appName) + ' ', style: Theme.of(context) @@ -54,8 +62,6 @@ class _WelcomePageState extends State { .subtitle1 .copyWith(color: Theme.of(context).colorScheme.secondary), ), - Text(AppLocalizations.of(context).welcomeWallet, - style: Theme.of(context).textTheme.subtitle1), ], ), SizedBox(height: 24), diff --git a/lib/screens/dex/trade/pro/create/receive/matching_bids_table.dart b/lib/screens/dex/trade/pro/create/receive/matching_bids_table.dart index dd458391c..3a747a1f2 100644 --- a/lib/screens/dex/trade/pro/create/receive/matching_bids_table.dart +++ b/lib/screens/dex/trade/pro/create/receive/matching_bids_table.dart @@ -1,15 +1,16 @@ -import 'package:rational/rational.dart'; import 'package:flutter/material.dart'; -import '../../../../../../blocs/swap_bloc.dart'; -import '../../../../../../model/order_book_provider.dart'; -import '../../../../../dex/trade/pro/create/receive/bid_details_dialog.dart'; -import '../../../../../dex/trade/pro/create/receive/not_enough_volume_dialog.dart'; import 'package:provider/provider.dart'; +import 'package:rational/rational.dart'; import 'package:shared_preferences/shared_preferences.dart'; + +import '../../../../../../blocs/swap_bloc.dart'; import '../../../../../../localizations.dart'; import '../../../../../../model/addressbook_provider.dart'; +import '../../../../../../model/order_book_provider.dart'; import '../../../../../../model/orderbook.dart'; import '../../../../../../utils/utils.dart'; +import '../../../../../dex/trade/pro/create/receive/bid_details_dialog.dart'; +import '../../../../../dex/trade/pro/create/receive/not_enough_volume_dialog.dart'; class MatchingBidsTable extends StatefulWidget { const MatchingBidsTable({ @@ -285,7 +286,7 @@ class _MatchingBidsTableState extends State { final Rational maxSellAmt = swapBloc.maxTakerVolume ?? Rational.parse(swapBloc.sellCoinBalance.balance.balance.toString()); final bool isEnoughVolume = - !(bid.minVolume != null && maxSellAmt < (bid.minVolume * bid.priceRat)); + !(bid.minVolume != null && maxSellAmt < bid.minVolume); if (isEnoughVolume) { Navigator.of(context).pop(); diff --git a/lib/screens/dex/trade/pro/create/receive/not_enough_volume_dialog.dart b/lib/screens/dex/trade/pro/create/receive/not_enough_volume_dialog.dart index 73360369e..07dfc63ff 100644 --- a/lib/screens/dex/trade/pro/create/receive/not_enough_volume_dialog.dart +++ b/lib/screens/dex/trade/pro/create/receive/not_enough_volume_dialog.dart @@ -1,4 +1,5 @@ import 'package:flutter/material.dart'; + import '../../../../../../blocs/dialog_bloc.dart'; import '../../../../../../blocs/swap_bloc.dart'; import '../../../../../../localizations.dart'; @@ -38,7 +39,7 @@ void openNotEnoughVolumeDialog(BuildContext context, Ask ask) { SizedBox(width: 4), Text( '${ask.coin} ' + - cutTrailingZeros(formatPrice(ask.minVolume)), + cutTrailingZeros(formatPrice(ask.minRelVolume)), style: TextStyle( color: Theme.of(context).primaryColorDark, fontWeight: FontWeight.w400, @@ -64,7 +65,7 @@ void openNotEnoughVolumeDialog(BuildContext context, Ask ask) { SizedBox(width: 2), Text( cutTrailingZeros(formatPrice( - ask.minVolume.toDouble() * double.parse(ask.price))), + ask.minRelVolume.toDouble() * double.parse(ask.price))), style: TextStyle( fontSize: 12, color: Theme.of(context).disabledColor, diff --git a/lib/screens/dex/trade/pro/create/trade_form_validator.dart b/lib/screens/dex/trade/pro/create/trade_form_validator.dart index 2caa7b4d9..bdcd6e4da 100644 --- a/lib/screens/dex/trade/pro/create/trade_form_validator.dart +++ b/lib/screens/dex/trade/pro/create/trade_form_validator.dart @@ -1,5 +1,5 @@ -import '../../../../dex/trade/pro/create/trade_form.dart'; import 'package:rational/rational.dart'; + import '../../../../../blocs/coins_bloc.dart'; import '../../../../../blocs/main_bloc.dart'; import '../../../../../blocs/swap_bloc.dart'; @@ -8,6 +8,7 @@ import '../../../../../model/coin_balance.dart'; import '../../../../../model/orderbook.dart'; import '../../../../../model/trade_preimage.dart'; import '../../../../../utils/utils.dart'; +import '../../../../dex/trade/pro/create/trade_form.dart'; class TradeFormValidator { final CoinBalance sellBalance = swapBloc.sellCoinBalance; @@ -57,7 +58,7 @@ class TradeFormValidator { return appLocalizations.minValueBuy( swapBloc.receiveCoinBalance.coin.abbr, '$minVolumeReceive'); } else if (matchingBid != null && matchingBid.minVolume != null) { - if (amountReceive != null && amountReceive < matchingBid.minVolume) { + if (amountReceive != null && amountReceive < matchingBid.minRelVolume) { return appLocalizations.minValueOrder( swapBloc.receiveCoinBalance.coin.abbr, cutTrailingZeros(formatPrice(matchingBid.minVolume)), diff --git a/lib/screens/help-feedback/help_page.dart b/lib/screens/help-feedback/help_page.dart index ea5153739..2e942025a 100644 --- a/lib/screens/help-feedback/help_page.dart +++ b/lib/screens/help-feedback/help_page.dart @@ -30,73 +30,78 @@ class _HelpPageState extends State { ), 'isExpanded': false, }, - { - 'q': local.question_2(appConfig.appName), - 'a': Text( - local.answer_2(appConfig.appName), - style: const TextStyle( - height: 1.3, - fontSize: 15, + if (!appConfig.kIsWalletOnly) + { + 'q': local.question_2(appConfig.appName), + 'a': Text( + local.answer_2(appConfig.appName), + style: const TextStyle( + height: 1.3, + fontSize: 15, + ), ), - ), - 'isExpanded': false, - }, - { - 'q': local.question_3, - 'a': HtmlParser( - local.answer_3(appConfig.appName), - textStyle: Theme.of(context).textTheme.subtitle1.copyWith( - fontWeight: FontWeight.w400, - height: 1.3, - fontSize: 15, - ), - linkStyle: Theme.of(context).textTheme.subtitle1.copyWith( - fontWeight: FontWeight.w400, - height: 1.3, - fontSize: 15, - color: Color.fromRGBO(57, 161, 238, 1), - ), - ), - 'isExpanded': false, - }, - { - 'q': local.question_4, - 'a': Text( - local.answer_4, - style: const TextStyle( - height: 1.3, - fontSize: 15, + 'isExpanded': false, + }, + if (!appConfig.kIsWalletOnly) + { + 'q': local.question_3, + 'a': HtmlParser( + local.answer_3(appConfig.appName), + textStyle: Theme.of(context).textTheme.subtitle1.copyWith( + fontWeight: FontWeight.w400, + height: 1.3, + fontSize: 15, + ), + linkStyle: Theme.of(context).textTheme.subtitle1.copyWith( + fontWeight: FontWeight.w400, + height: 1.3, + fontSize: 15, + color: Color.fromRGBO(57, 161, 238, 1), + ), ), - ), - 'isExpanded': false, - }, - { - 'q': local.question_5(appConfig.appName), - 'a': Text( - local.answer_5(appConfig.appName), - style: const TextStyle( - height: 1.3, - fontSize: 15, + 'isExpanded': false, + }, + if (!appConfig.kIsWalletOnly) + { + 'q': local.question_4, + 'a': Text( + local.answer_4, + style: const TextStyle( + height: 1.3, + fontSize: 15, + ), ), - ), - 'isExpanded': false, - }, + 'isExpanded': false, + }, + if (!appConfig.kIsWalletOnly) + { + 'q': local.question_5(appConfig.appName), + 'a': Text( + local.answer_5(appConfig.appName), + style: const TextStyle( + height: 1.3, + fontSize: 15, + ), + ), + 'isExpanded': false, + }, { 'q': local.question_6, 'a': _getSupportAnswer(), 'isExpanded': false, }, - { - 'q': local.question_7, - 'a': Text( - local.answer_7(appConfig.appName), - style: const TextStyle( - height: 1.3, - fontSize: 15, - ), - ), - 'isExpanded': false, - }, + // TODO: update contents when KYC framework is ready + // { + // 'q': local.question_7, + // 'a': Text( + // local.answer_7(appConfig.appName), + // style: const TextStyle( + // height: 1.3, + // fontSize: 15, + // ), + // ), + // 'isExpanded': false, + // }, { 'q': local.question_8(appConfig.appName), 'a': Text( diff --git a/lib/screens/markets/build_order_details.dart b/lib/screens/markets/build_order_details.dart index 0247f0b79..85b724f21 100644 --- a/lib/screens/markets/build_order_details.dart +++ b/lib/screens/markets/build_order_details.dart @@ -1,17 +1,18 @@ import 'package:flutter/material.dart'; -import '../../app_config/app_config.dart'; +import 'package:provider/provider.dart'; import 'package:rational/rational.dart'; + +import '../../app_config/app_config.dart'; +import '../../app_config/theme_data.dart'; import '../../blocs/coins_bloc.dart'; import '../../localizations.dart'; import '../../model/addressbook_provider.dart'; import '../../model/cex_provider.dart'; import '../../model/order_book_provider.dart'; import '../../model/orderbook.dart'; -import '../addressbook/addressbook_page.dart'; import '../../utils/utils.dart'; import '../../widgets/cex_data_marker.dart'; -import '../../app_config/theme_data.dart'; -import 'package:provider/provider.dart'; +import '../addressbook/addressbook_page.dart'; class BuildOrderDetails extends StatefulWidget { const BuildOrderDetails(this.order, {this.sellAmount}); @@ -315,8 +316,9 @@ class _BuildOrderDetailsState extends State { } Widget _buildMinVolume() { - if (widget.order.minVolume == null) return SizedBox(); - if (widget.order.minVolume <= Rational.parse('0.00777')) return SizedBox(); + if (widget.order.minRelVolume == null) return SizedBox(); + if (widget.order.minRelVolume <= Rational.parse('0.00777')) + return SizedBox(); return Row( children: [ @@ -332,7 +334,7 @@ class _BuildOrderDetailsState extends State { Text( '${AppLocalizations.of(context).orderDetailsMin} ' '${widget.order.coin} ' - '${cutTrailingZeros(formatPrice(widget.order.minVolume))}', + '${cutTrailingZeros(formatPrice(widget.order.minRelVolume))}', style: TextStyle( fontSize: 12, fontWeight: FontWeight.w400, diff --git a/lib/screens/markets/markets_page.dart b/lib/screens/markets/markets_page.dart index 8e5d9637b..d7f99f601 100644 --- a/lib/screens/markets/markets_page.dart +++ b/lib/screens/markets/markets_page.dart @@ -1,11 +1,13 @@ import 'package:flutter/material.dart'; +import 'package:komodo_dex/app_config/app_config.dart'; +import 'package:provider/provider.dart'; + import '../../localizations.dart'; import '../../model/coin.dart'; import '../../model/order_book_provider.dart'; +import '../../utils/custom_tab_indicator.dart'; import '../markets/coins_price_list.dart'; import '../markets/order_book_page.dart'; -import '../../utils/custom_tab_indicator.dart'; -import 'package:provider/provider.dart'; class MarketsPage extends StatefulWidget { @override @@ -21,7 +23,8 @@ class _MarketsPageState extends State void initState() { super.initState(); - tabController = TabController(length: 2, vsync: this); + final tabControllerLength = appConfig.kIsWalletOnly ? 1 : 2; + tabController = TabController(length: tabControllerLength, vsync: this); } @override @@ -53,9 +56,10 @@ class _MarketsPageState extends State Tab( text: AppLocalizations.of(context).marketsPrice, ), - Tab( - text: AppLocalizations.of(context).marketsOrderbook, - ) + if (!appConfig.kIsWalletOnly) + Tab( + text: AppLocalizations.of(context).marketsOrderbook, + ) ], ), ), @@ -104,7 +108,7 @@ class _MarketsPageState extends State _orderBookProvider.activePair = CoinsPair(sell: coin, buy: null); tabController.index = 1; }), - const OrderBookPage(), + if (!appConfig.kIsWalletOnly) const OrderBookPage(), ], ); }), diff --git a/lib/screens/portfolio/coins_page.dart b/lib/screens/portfolio/coins_page.dart index 52bcb1f2e..b1cd60cba 100644 --- a/lib/screens/portfolio/coins_page.dart +++ b/lib/screens/portfolio/coins_page.dart @@ -1,6 +1,7 @@ import 'dart:async'; import 'package:auto_size_text/auto_size_text.dart'; +import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_slidable/flutter_slidable.dart'; @@ -14,6 +15,7 @@ import 'package:komodo_dex/packages/z_coin_activation/widgets/z_coin_status_list import 'package:komodo_dex/screens/portfolio/animated_asset_proportions_graph.dart'; import 'package:komodo_dex/widgets/animated_collapse.dart'; import 'package:provider/provider.dart'; +import 'package:shared_preferences/shared_preferences.dart'; import '../../../../blocs/coins_bloc.dart'; import '../../../../blocs/settings_bloc.dart'; @@ -75,6 +77,12 @@ class _CoinsPageState extends State { if (rebrandingNotifier.shouldShowRebrandingDialog) { showRebrandingDialog(context).ignore(); } + + WidgetsBinding.instance.addPostFrameCallback((_) async { + if (kDebugMode && !await _hasAgreedNoTrading()) { + _showDebugModeDialog().ignore(); + } + }); } }); @@ -263,6 +271,44 @@ class _CoinsPageState extends State { colors: colors, ); } + + // Method to show an alert dialog with an option to agree if the app is in + // debug mode stating that trading features may not be used for actual trading + // and that only test assets/networks may be used. + Future _showDebugModeDialog() async { + await showDialog( + context: context, + barrierDismissible: false, + builder: (context) { + return AlertDialog( + title: const Text('Debug mode'), + content: const Text( + 'This app is in debug mode. Trading features may not be used for ' + 'actual trading. Only test assets/networks may be used.', + ), + actions: [ + TextButton( + onPressed: () { + Navigator.of(context).pop(); + _saveAgreedState().ignore(); + }, + child: const Text('I agree'), + ), + ], + ); + }, + ); + } + + Future _saveAgreedState() async { + SharedPreferences prefs = await SharedPreferences.getInstance(); + prefs.setBool('wallet_only_agreed', true); + } + + Future _hasAgreedNoTrading() async { + SharedPreferences prefs = await SharedPreferences.getInstance(); + return prefs.getBool('wallet_only_agreed') ?? false; + } } class LoadAsset extends StatefulWidget { diff --git a/lib/screens/portfolio/item_coin.dart b/lib/screens/portfolio/item_coin.dart index 9b718c1ae..891718bf2 100644 --- a/lib/screens/portfolio/item_coin.dart +++ b/lib/screens/portfolio/item_coin.dart @@ -18,6 +18,7 @@ import '../../../../utils/log.dart'; import '../../utils/utils.dart'; import 'coin_detail/coin_detail.dart'; import 'copy_dialog.dart'; +import '../../app_config/app_config.dart'; class ItemCoin extends StatefulWidget { const ItemCoin({ @@ -86,7 +87,11 @@ class _ItemCoinState extends State }, ), ); - if (!coin.walletOnly && double.parse(balance.getBalance()) > 0) { + final showSwapAction = !coin.walletOnly && + // Hide swap action for wallet only mode (i.e. trading disabled mode) + !appConfig.kIsWalletOnly && + double.parse(balance.getBalance()) > 0; + if (showSwapAction) { actions.add( SlidableAction( label: AppLocalizations.of(context).swap.toUpperCase(), diff --git a/lib/screens/portfolio/transaction_detail.dart b/lib/screens/portfolio/transaction_detail.dart index cba184c41..bc28034e3 100644 --- a/lib/screens/portfolio/transaction_detail.dart +++ b/lib/screens/portfolio/transaction_detail.dart @@ -115,11 +115,14 @@ class _TransactionDetailState extends State { amountString = (amount < deci(0) ? '-' : '') + '**.**'; } - return AutoSizeText( - '$amountString ${tx.coin}', - style: Theme.of(context).textTheme.headline5, - maxLines: 1, - textAlign: TextAlign.center, + return InkWell( + onTap: () => copyToClipBoard(context, amountString), + child: AutoSizeText( + '$amountString ${tx.coin}', + style: Theme.of(context).textTheme.headline5, + maxLines: 1, + textAlign: TextAlign.center, + ), ); }), ), @@ -280,6 +283,7 @@ class _TransactionDetailState extends State { } } + class ItemTransationDetail extends StatelessWidget { const ItemTransationDetail({this.title, this.data}); diff --git a/lib/services/mm.dart b/lib/services/mm.dart index dfc21b70d..488040870 100644 --- a/lib/services/mm.dart +++ b/lib/services/mm.dart @@ -227,6 +227,9 @@ class ApiProvider { 'userpass': mmSe.userpass, 'coin': coin.abbr, 'servers': Coin.getServerList(coin.serverList), + // limit the number of active connections to electrum servers to 1 to + // reduce device load & request spamming + 'max_connected': 1, 'mm2': coin.mm2, 'tx_history': true, 'required_confirmations': coin.requiredConfirmations, diff --git a/pubspec.yaml b/pubspec.yaml index a4298030e..0f77d814c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ description: Multicoin Wallet with DEX gateway # Both the version and the builder number may be overridden in flutter # build by specifying --build-name and --build-number, respectively. # Read more about versioning at semver.org. -version: 0.9.1+1 +version: 0.9.2+0 publish_to: none