From c2db32000c2e6ee4c97c7d7a84c837853ff30142 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 14 Sep 2021 13:38:05 +0200 Subject: [PATCH 01/99] Use gradle 7.2 --- gradle/wrapper/gradle-wrapper.properties | 2 +- gradlew | 269 ++++++++++++++--------- 2 files changed, 160 insertions(+), 111 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index af7be50b..a0f7639f 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 744e882e..1b6c7873 100755 --- a/gradlew +++ b/gradlew @@ -1,7 +1,7 @@ -#!/usr/bin/env sh +#!/bin/sh # -# Copyright 2015 the original author or authors. +# Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,67 +17,101 @@ # ############################################################################## -## -## Gradle start up script for UN*X -## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# ############################################################################## # Attempt to set APP_HOME + # Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` +APP_BASE_NAME=${0##*/} # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" +MAX_FD=maximum warn () { echo "$*" -} +} >&2 die () { echo echo "$*" echo exit 1 -} +} >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MSYS* | MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar @@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACMD=$JAVA_HOME/jre/sh/java else - JAVACMD="$JAVA_HOME/bin/java" + JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else - JAVACMD="java" + JAVACMD=java which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the @@ -106,80 +140,95 @@ location of your Java installation." fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" esac fi -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' exec "$JAVACMD" "$@" From 46f91a72752afb78f8d5be15808afc7bd389b331 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 14 Sep 2021 13:38:22 +0200 Subject: [PATCH 02/99] Use Kotlin 1.5.30 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 0fd2fb47..cacd2e28 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - KOTLIN_VERSION = "1.5.20" + KOTLIN_VERSION = "1.5.30" KETHEREUM_VERSION = "0.84.4" } From 59a2e092dd7754bf9423a33be6c623f968df9c24 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 14 Sep 2021 13:39:04 +0200 Subject: [PATCH 03/99] Use Kethereum 0.85.3 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index cacd2e28..acd4b419 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { KOTLIN_VERSION = "1.5.30" - KETHEREUM_VERSION = "0.84.4" + KETHEREUM_VERSION = "0.85.3" } repositories { From 0b77f10fe4e413b7760d375158d47f5d38a29f31 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 15 Sep 2021 01:23:13 +0200 Subject: [PATCH 04/99] Support parent bridges field - closes #349 --- .../kotlin/org/ethereum/lists/chains/Main.kt | 22 +++++++++- .../ethereum/lists/chains/model/Exceptions.kt | 4 ++ .../ethereum/lists/chains/TheChainChecker.kt | 41 +++++++++++++++++++ .../eip155-2.json | 24 +++++++++++ .../withparentextrabridgesfield/eip155-2.json | 24 +++++++++++ .../eip155-2.json | 24 +++++++++++ .../withparentextrafield/eip155-2.json | 24 +++++++++++ .../valid/withparentbridge/eip155-1.json | 19 +++++++++ .../valid/withparentbridge/eip155-2.json | 26 ++++++++++++ 9 files changed, 206 insertions(+), 2 deletions(-) create mode 100644 src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json create mode 100644 src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json create mode 100644 src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json create mode 100644 src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json create mode 100644 src/test/resources/test_chains/valid/withparentbridge/eip155-1.json create mode 100644 src/test/resources/test_chains/valid/withparentbridge/eip155-2.json diff --git a/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/src/main/kotlin/org/ethereum/lists/chains/Main.kt index e78b6153..8fb02d59 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -34,7 +34,7 @@ private fun createOutputFiles() { allChainFiles .map { Klaxon().parseJsonObject(it.reader()) } - .sortedBy { (it["chainId"] as Number).toLong() } + .sortedBy { (it["chainId"] as Number).toLong() } .forEach { jsonObject -> chainJSONArray.add(jsonObject) @@ -215,10 +215,28 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw ParentMustBeObject() } - if (it.keys != mutableSetOf("chain", "type")) { + if (!it.keys.containsAll(setOf("chain", "type"))) { throw ParentMustHaveChainAndType() } + val extraFields = it.keys - setOf("chain", "type", "bridges") + if (extraFields.isNotEmpty()) { + throw ParentHasExtraFields(extraFields) + } + + val bridges = it["bridges"] + if (bridges != null && bridges !is List<*>) { + throw ParentBridgeNoArray() + } + (bridges as? JsonArray<*>)?.forEach { bridge -> + if (bridge !is JsonObject) { + throw BridgeNoObject() + } + if (bridge.keys.size != 1 || bridge.keys.first() != "url") { + throw BridgeOnlyURL() + } + } + if (!setOf("L2", "shard").contains(it["type"])) { throw ParentHasInvalidType(it["type"] as? String) } diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt b/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt index ac92779d..e4af9a9b 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt @@ -19,4 +19,8 @@ class ExplorerStandardMustBeEIP3091: Exception("explorer standard must be EIP309 class ParentHasInvalidType(type: String?): Exception("Parent has invalid type $type - only L2 or shard allowed") class ParentMustBeObject: Exception("parent must be an object") class ParentMustHaveChainAndType: Exception("parent must have fields 'chain' and 'type'") +class ParentHasExtraFields(fields: Set): Exception("parent has extra field: $fields") +class ParentBridgeNoArray: Exception("parent bridge must be array") +class BridgeNoObject: Exception("parent bridges must be array consisting of json objects") +class BridgeOnlyURL: Exception("parent bridge only contain an URL") class ParentChainDoesNotExist(chain: String): Exception("Referenced parent chain ($chain) does not exist") \ No newline at end of file diff --git a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt b/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt index d34f090e..ef74c284 100644 --- a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt +++ b/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt @@ -35,6 +35,20 @@ class TheChainChecker { checkChain(file, false) } + @Test + fun shouldPassForValidChainWithParentBridge() { + val file = getFile("valid/withparentbridge/eip155-2.json") + + checkChain(file, false) + } + + @Test(expected = BridgeNoObject::class) + fun shouldFailForParentBridgeElementNoObject() { + val file = getFile("invalid/withparentextrabridgeelementnoobject/eip155-2.json") + + checkChain(file, false) + } + @Test(expected = ParentMustBeObject::class) fun shouldFailForParentNoObject() { val file = getFile("invalid/withparentnobject/eip155-2.json") @@ -49,6 +63,33 @@ class TheChainChecker { checkChain(file, false) } + @Test(expected = ParentHasExtraFields::class) + fun shouldFailForParentWithExtraParentField() { + val file = getFile("invalid/withparentextrafield/eip155-2.json") + + checkChain(file, false) + } + + @Test(expected = ParentHasExtraFields::class) + fun shouldFailForParentWithExtraField() { + val file = getFile("invalid/withparentextrafield/eip155-2.json") + + checkChain(file, false) + } + + @Test(expected = BridgeOnlyURL::class) + fun shouldFailForParentWithExtraBridgesField() { + val file = getFile("invalid/withparentextrabridgesfield/eip155-2.json") + + checkChain(file, false) + } + + @Test(expected = ParentBridgeNoArray::class) + fun shouldFailForParentWithExtraBridgeNoArray() { + val file = getFile("invalid/withparentextrabridgesnoarray/eip155-2.json") + + checkChain(file, false) + } @Test(expected = ParentChainDoesNotExist::class) fun shouldFailIfParentChainDoesNotExist() { diff --git a/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json b/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json new file mode 100644 index 00000000..7cc1fd47 --- /dev/null +++ b/src/test/resources/test_chains/invalid/withparentextrabridgeelementnoobject/eip155-2.json @@ -0,0 +1,24 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": ["yolo"] + } +} diff --git a/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json b/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json new file mode 100644 index 00000000..e4007b5e --- /dev/null +++ b/src/test/resources/test_chains/invalid/withparentextrabridgesfield/eip155-2.json @@ -0,0 +1,24 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": [{"yolo":"yoooo"}] + } +} diff --git a/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json b/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json new file mode 100644 index 00000000..8fa85245 --- /dev/null +++ b/src/test/resources/test_chains/invalid/withparentextrabridgesnoarray/eip155-2.json @@ -0,0 +1,24 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": "yolo" + } +} diff --git a/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json b/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json new file mode 100644 index 00000000..0be4e23e --- /dev/null +++ b/src/test/resources/test_chains/invalid/withparentextrafield/eip155-2.json @@ -0,0 +1,24 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "parent": { + "chain": "eip155-1", + "type": "L2", + "yolo": "yooooo" + } +} diff --git a/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json b/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json new file mode 100644 index 00000000..457f8964 --- /dev/null +++ b/src/test/resources/test_chains/valid/withparentbridge/eip155-1.json @@ -0,0 +1,19 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 1, + "networkId": 1, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + } +} diff --git a/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json b/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json new file mode 100644 index 00000000..e6aef8e4 --- /dev/null +++ b/src/test/resources/test_chains/valid/withparentbridge/eip155-2.json @@ -0,0 +1,26 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": [ + {"url": "https://bridge.foo.org"} + ] + } +} From f618b20fda75c079bad748f33e85c778d3b46e89 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 15 Sep 2021 02:07:03 +0200 Subject: [PATCH 05/99] Add information about parent field in README (#417) closes #391 --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 795a775a..5ba37e5c 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,22 @@ where: * width and height are optional - but when one is there then the other must be there also * format is either "png", "jpg" or "svg" +If the chain is an L2 you can link it to the parent chain like this: + + +```json +{ + ... + "parent": { + "type" : "L2", + "parent": "eip155-1", + "bridges": [ {"url":"https://bridge.arbitrum.io"} ] + } +} +``` + +where you need to specify type 2 and the reference to an existing parent. The field about bridges is optional. + ## Aggregation There are also aggregated json files with all chains automatically assembled: From 8b967885838e3a4fca0c095fe97708a2476d1659 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 15 Sep 2021 02:12:28 +0200 Subject: [PATCH 06/99] Add parent field to arbitrum (#418) * Add parent field to arbitrum * Update _data/chains/eip155-42161.json --- _data/chains/eip155-42161.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-42161.json b/_data/chains/eip155-42161.json index 0415deac..3dcec95f 100644 --- a/_data/chains/eip155-42161.json +++ b/_data/chains/eip155-42161.json @@ -29,5 +29,10 @@ "standard": "EIP3091" } ], - "infoURL": "https://arbitrum.io" + "infoURL": "https://arbitrum.io", + "parent": { + "type" : "L2", + "chain": "eip155-1", + "bridges": [ {"url":"https://bridge.arbitrum.io"} ] + } } From 931404eefb43e38e691896293470ddfd6711452a Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 15 Sep 2021 02:13:49 +0200 Subject: [PATCH 07/99] Fix parent chain field and add shard note (#419) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ba37e5c..584db353 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ where: * width and height are optional - but when one is there then the other must be there also * format is either "png", "jpg" or "svg" -If the chain is an L2 you can link it to the parent chain like this: +If the chain is an L2 or a shard of another chain you can link it to the parent chain like this: ```json @@ -61,7 +61,7 @@ If the chain is an L2 you can link it to the parent chain like this: ... "parent": { "type" : "L2", - "parent": "eip155-1", + "chain": "eip155-1", "bridges": [ {"url":"https://bridge.arbitrum.io"} ] } } From fc6deefb59c5971d9bfcaef6d621771fed6f0805 Mon Sep 17 00:00:00 2001 From: ligi Date: Wed, 15 Sep 2021 02:17:29 +0200 Subject: [PATCH 08/99] Add parent field to rinkeby Arbitrum (#420) --- _data/chains/eip155-421611.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-421611.json b/_data/chains/eip155-421611.json index 70a93c42..77b2d9c0 100644 --- a/_data/chains/eip155-421611.json +++ b/_data/chains/eip155-421611.json @@ -22,5 +22,10 @@ "url": "https://rinkeby-explorer.arbitrum.io", "standard": "EIP3091" } - ] + ], + "parent": { + "type" : "L2", + "chain": "eip155-4", + "bridges": [ {"url":"https://bridge.arbitrum.io"} ] + } } From 560bb6ea6b05d93d722e20271cd1e0a099c0e473 Mon Sep 17 00:00:00 2001 From: loglos <31063492+loglos@users.noreply.github.com> Date: Wed, 15 Sep 2021 12:35:59 +0800 Subject: [PATCH 09/99] Update HPB Mainnet information (#422) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update eip155-269.json Hello! I'd like to request to update High Performance Blockchain information。 At present, the RPC node information is updated to https://hpbnode.com Please approve. Tks * Update eip155-269.json Fixed Explorer attribute information. * Update eip155-269.json Updata info * Update _data/chains/eip155-269.json Co-authored-by: ligi --- _data/chains/eip155-269.json | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-269.json b/_data/chains/eip155-269.json index a6e7142e..bb386d9b 100644 --- a/_data/chains/eip155-269.json +++ b/_data/chains/eip155-269.json @@ -3,17 +3,26 @@ "chain": "HPB", "network": "mainnet", "rpc": [ - "https://hpb.app" + "https://hpbnode.com", + "wss://ws.hpbnode.com" + ], + "faucets": [ + "https://myhpbwallet.com/" ], - "faucets": [], "nativeCurrency": { "name": "High Performance Blockchain Ether", "symbol": "HPB", "decimals": 18 }, - "infoURL": "https://hpbscan.org/", + "infoURL": "https://hpb.io", "shortName": "hpb", "chainId": 269, - "networkId": 100, - "slip44": 269 + "networkId": 269, + "slip44": 269, + "explorers": [{ + "name": "hpbscan", + "url": "https://hpbscan.org/", + "standard": "EIP3091" + }] + } From 1f61080ebfdf03611fa22fc6fb466b4236462aac Mon Sep 17 00:00:00 2001 From: tomatoskittles Date: Sat, 18 Sep 2021 15:29:41 -0400 Subject: [PATCH 10/99] Updating the rpc urls for the syscoin mainnet and testnet. (#425) * Updating the rpc urls for the syscoin mainnet and testnet. * Another update, for consistency. And, removing the ws protocol. Co-authored-by: bboileau --- _data/chains/eip155-57.json | 5 ++--- _data/chains/eip155-5700.json | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json index 88f9a788..5716cf7c 100644 --- a/_data/chains/eip155-57.json +++ b/_data/chains/eip155-57.json @@ -3,9 +3,8 @@ "chain": "SYS", "network": "mainnet", "rpc": [ - "https://nevm.syscoin.org/api/eth-rpc", - "https://web3.syscoin.org", - "wss://web3.syscoin.org" + "https://rpc.syscoin.org", + "wss://rpc.syscoin.org/wss" ], "faucets": ["https://faucet.syscoin.org"], "nativeCurrency": { diff --git a/_data/chains/eip155-5700.json b/_data/chains/eip155-5700.json index 260daf1a..f842d3a4 100644 --- a/_data/chains/eip155-5700.json +++ b/_data/chains/eip155-5700.json @@ -3,7 +3,8 @@ "chain": "SYS", "network": "testnet", "rpc": [ - "https://tanenbaum.io/api/eth-rpc" + "https://rpc.tanenbaum.io", + "wss://rpc.tanenbaum.io/wss" ], "faucets": ["https://faucet.tanenbaum.io"], "nativeCurrency": { From 1c29cecb2916582fdd4ad7cf77acd7649fe5a0f6 Mon Sep 17 00:00:00 2001 From: ping-ke Date: Thu, 23 Sep 2021 14:45:14 +0800 Subject: [PATCH 11/99] update quarkchain eth rpc and add explorers (#431) * add quarkchain chain id for metamask * add parent field for shard * add explorers * fix format error * update eth rpc API * update rpc port --- _data/chains/eip155-100001.json | 9 +++++++-- _data/chains/eip155-100002.json | 9 +++++++-- _data/chains/eip155-100003.json | 9 +++++++-- _data/chains/eip155-100004.json | 9 +++++++-- _data/chains/eip155-100005.json | 9 +++++++-- _data/chains/eip155-100006.json | 9 +++++++-- _data/chains/eip155-100007.json | 9 +++++++-- _data/chains/eip155-100008.json | 9 +++++++-- _data/chains/eip155-110001.json | 9 +++++++-- _data/chains/eip155-110002.json | 9 +++++++-- _data/chains/eip155-110003.json | 9 +++++++-- _data/chains/eip155-110004.json | 9 +++++++-- _data/chains/eip155-110005.json | 9 +++++++-- _data/chains/eip155-110006.json | 9 +++++++-- _data/chains/eip155-110007.json | 9 +++++++-- _data/chains/eip155-110008.json | 9 +++++++-- 16 files changed, 112 insertions(+), 32 deletions(-) diff --git a/_data/chains/eip155-100001.json b/_data/chains/eip155-100001.json index aa3c3684..82595bc4 100644 --- a/_data/chains/eip155-100001.json +++ b/_data/chains/eip155-100001.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39000/" + "http://eth-jrpc.mainnet.quarkchain.io:39000/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100002.json b/_data/chains/eip155-100002.json index f7a30475..7bc05ab8 100644 --- a/_data/chains/eip155-100002.json +++ b/_data/chains/eip155-100002.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39001/" + "http://eth-jrpc.mainnet.quarkchain.io:39001/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100003.json b/_data/chains/eip155-100003.json index 6dd08d83..5f49588a 100644 --- a/_data/chains/eip155-100003.json +++ b/_data/chains/eip155-100003.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39002/" + "http://eth-jrpc.mainnet.quarkchain.io:39002/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100004.json b/_data/chains/eip155-100004.json index 6da5d4f0..eb343d61 100644 --- a/_data/chains/eip155-100004.json +++ b/_data/chains/eip155-100004.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39003/" + "http://eth-jrpc.mainnet.quarkchain.io:39003/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100005.json b/_data/chains/eip155-100005.json index 51a99cc4..336e01fe 100644 --- a/_data/chains/eip155-100005.json +++ b/_data/chains/eip155-100005.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39004/" + "http://eth-jrpc.mainnet.quarkchain.io:39004/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100006.json b/_data/chains/eip155-100006.json index 3b59fccd..8fe4ea63 100644 --- a/_data/chains/eip155-100006.json +++ b/_data/chains/eip155-100006.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39005/" + "http://eth-jrpc.mainnet.quarkchain.io:39005/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100007.json b/_data/chains/eip155-100007.json index ad839418..5e640378 100644 --- a/_data/chains/eip155-100007.json +++ b/_data/chains/eip155-100007.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39006/" + "http://eth-jrpc.mainnet.quarkchain.io:39006/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-100008.json b/_data/chains/eip155-100008.json index 95adcd34..67419f39 100644 --- a/_data/chains/eip155-100008.json +++ b/_data/chains/eip155-100008.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "mainnet", "rpc": [ - "http://jrpc.mainnet.quarkchain.io:39007/" + "http://eth-jrpc.mainnet.quarkchain.io:39007/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-100000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110001.json b/_data/chains/eip155-110001.json index 9020d5bf..02344f16 100644 --- a/_data/chains/eip155-110001.json +++ b/_data/chains/eip155-110001.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39000/" + "http://eth-jrpc.devnet.quarkchain.io:39900/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110002.json b/_data/chains/eip155-110002.json index ff6f0564..08d61d4c 100644 --- a/_data/chains/eip155-110002.json +++ b/_data/chains/eip155-110002.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39001/" + "http://eth-jrpc.devnet.quarkchain.io:39901/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110003.json b/_data/chains/eip155-110003.json index e316efb9..75f81eba 100644 --- a/_data/chains/eip155-110003.json +++ b/_data/chains/eip155-110003.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39002/" + "http://eth-jrpc.devnet.quarkchain.io:39902/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110004.json b/_data/chains/eip155-110004.json index a1c228c6..bd5f2c6e 100644 --- a/_data/chains/eip155-110004.json +++ b/_data/chains/eip155-110004.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39003/" + "http://eth-jrpc.devnet.quarkchain.io:39903/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110005.json b/_data/chains/eip155-110005.json index 52f6564d..1d72f76a 100644 --- a/_data/chains/eip155-110005.json +++ b/_data/chains/eip155-110005.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39004/" + "http://eth-jrpc.devnet.quarkchain.io:39904/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110006.json b/_data/chains/eip155-110006.json index 123c9a11..5fafec4a 100644 --- a/_data/chains/eip155-110006.json +++ b/_data/chains/eip155-110006.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39005/" + "http://eth-jrpc.devnet.quarkchain.io:39905/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110007.json b/_data/chains/eip155-110007.json index 46c66797..fcc3a3b1 100644 --- a/_data/chains/eip155-110007.json +++ b/_data/chains/eip155-110007.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39006/" + "http://eth-jrpc.devnet.quarkchain.io:39906/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-110008.json b/_data/chains/eip155-110008.json index 486b77c7..daee5b92 100644 --- a/_data/chains/eip155-110008.json +++ b/_data/chains/eip155-110008.json @@ -3,7 +3,7 @@ "chain": "QuarkChain", "network": "devnet", "rpc": [ - "http://jrpc.devnet.quarkchain.io:39007/" + "http://eth-jrpc.devnet.quarkchain.io:39907/" ], "faucets": [ ], @@ -19,5 +19,10 @@ "parent": { "chain": "eip155-110000", "type": "shard" - } + }, + "explorers": [{ + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/7", + "standard": "EIP3091" + }] } From db0d11f44c8aa27a153d3d51731aed065167c70c Mon Sep 17 00:00:00 2001 From: Pierre/Long Date: Sun, 26 Sep 2021 21:31:41 +0700 Subject: [PATCH 12/99] add Fantom testnet (#432) * add Fantom testnet * fix: change shortName of FTM Testnet --- _data/chains/eip155-4002.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-4002.json diff --git a/_data/chains/eip155-4002.json b/_data/chains/eip155-4002.json new file mode 100644 index 00000000..746af304 --- /dev/null +++ b/_data/chains/eip155-4002.json @@ -0,0 +1,26 @@ +{ + "name": "Fantom Testnet", + "chain": "FTM", + "network": "testnet", + "rpc": ["https://rpc.testnet.fantom.network"], + "faucets": ["https://faucet.fantom.network"], + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + + "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", + "shortName": "tftm", + "chainId": 4002, + "networkId": 4002, + "icon": "fantom", + "explorers": [ + { + "name": "ftmscan", + "url": "https://testnet.ftmscan.com/", + "icon": "ftmscan", + "standard": "EIP3091" + } + ] +} From a6e1bf1ab5f34f9e95581159485f6fe73091e015 Mon Sep 17 00:00:00 2001 From: 3commascapital <90629478+3commascapital@users.noreply.github.com> Date: Wed, 29 Sep 2021 02:52:08 -0500 Subject: [PATCH 13/99] add chain configs for pulsechain main and test net (#410) * add chain configs for pulsechain main and test net * added rpc prefix * moved 5555 -> 940 and updated shortname --- _data/chains/eip155-369.json | 19 +++++++++++++++++++ _data/chains/eip155-940.json | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 _data/chains/eip155-369.json create mode 100644 _data/chains/eip155-940.json diff --git a/_data/chains/eip155-369.json b/_data/chains/eip155-369.json new file mode 100644 index 00000000..51888fe8 --- /dev/null +++ b/_data/chains/eip155-369.json @@ -0,0 +1,19 @@ +{ + "name": "PulseChain Mainnet", + "shortName": "pls", + "chain": "PLS", + "network": "mainnet", + "chainId": 369, + "networkId": 369, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.mainnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}", + "wss://rpc.mainnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pulse", + "symbol": "PLS", + "decimals": 18 + } +} \ No newline at end of file diff --git a/_data/chains/eip155-940.json b/_data/chains/eip155-940.json new file mode 100644 index 00000000..368bec81 --- /dev/null +++ b/_data/chains/eip155-940.json @@ -0,0 +1,19 @@ +{ + "name": "PulseChain Testnet", + "shortName": "tpls", + "chain": "tPLS", + "network": "testnet", + "chainId": 940, + "networkId": 940, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}", + "wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + } +} \ No newline at end of file From 6f47cb48bddf472da674120785dd996f74574d02 Mon Sep 17 00:00:00 2001 From: Hwee-Boon Yar Date: Wed, 29 Sep 2021 19:11:55 +0800 Subject: [PATCH 14/99] Fix: Arbitrum One Infura RPC URL was wrong (#440) --- _data/chains/eip155-42161.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-42161.json b/_data/chains/eip155-42161.json index 3dcec95f..a0fb8cdc 100644 --- a/_data/chains/eip155-42161.json +++ b/_data/chains/eip155-42161.json @@ -11,7 +11,7 @@ "decimals": 18 }, "rpc": [ - "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", "https://arb1.arbitrum.io/rpc", "wss://arb1.arbitrum.io/ws" From 949971bd3f41e4e9fa78a0e67402e5180a24e178 Mon Sep 17 00:00:00 2001 From: Hging Date: Wed, 29 Sep 2021 19:22:57 +0800 Subject: [PATCH 15/99] Update MathChain rpc (#439) --- _data/chains/eip155-1139.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-1139.json b/_data/chains/eip155-1139.json index 2dcea8e9..acbe34fb 100644 --- a/_data/chains/eip155-1139.json +++ b/_data/chains/eip155-1139.json @@ -2,7 +2,10 @@ "name": "MathChain", "chain": "MATH", "network": "mainnet", - "rpc": [], + "rpc": [ + "https://mathchain-asia.maiziqianbao.net/rpc", + "https://mathchain-us.maiziqianbao.net/rpc" + ], "faucets": [], "nativeCurrency": { "name": "MathChain", @@ -13,4 +16,4 @@ "shortName": "MATH", "chainId": 1139, "networkId": 1139 - } \ No newline at end of file + } From a2240f5d960a091f6a8e6a54f037f0c1cf218333 Mon Sep 17 00:00:00 2001 From: Alireza Zojaji <38731072+Alireza-Zojaji@users.noreply.github.com> Date: Tue, 5 Oct 2021 12:16:21 +0330 Subject: [PATCH 16/99] Create SUR.json (#456) Add SUR Blockchain Network --- _data/icons/SUR.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _data/icons/SUR.json diff --git a/_data/icons/SUR.json b/_data/icons/SUR.json new file mode 100644 index 00000000..01403a6c --- /dev/null +++ b/_data/icons/SUR.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmbUcDQHCvheYQrWk9WFJRMW5fTJQmtZqkoGUed4bhCM7T", + "width":3000, + "height":3000, + "format":"png" + } +] From e90bf45367de7789c21f55bb306541ba1ec65a54 Mon Sep 17 00:00:00 2001 From: Btachain Protocol <80339142+bitcoinassets@users.noreply.github.com> Date: Wed, 6 Oct 2021 17:14:15 +0700 Subject: [PATCH 17/99] add eip155-1657.json (#461) --- _data/chains/eip155-1657.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-1657.json diff --git a/_data/chains/eip155-1657.json b/_data/chains/eip155-1657.json new file mode 100644 index 00000000..e2faded1 --- /dev/null +++ b/_data/chains/eip155-1657.json @@ -0,0 +1,18 @@ +{ + "name": "Btachain", + "chain": "btachain", + "network": "mainnet", + "rpc": [ + "https://dataseed1.btachain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin Asset", + "symbol": "BTA", + "decimals": 18 + }, + "infoURL": "https://bitcoinasset.io/", + "shortName": "bta", + "chainId": 1657, + "networkId": 1657 +} From 019a12c0aef36400b2fdc14f944825766d70b20a Mon Sep 17 00:00:00 2001 From: Alireza Zojaji <38731072+Alireza-Zojaji@users.noreply.github.com> Date: Wed, 6 Oct 2021 13:46:14 +0330 Subject: [PATCH 18/99] Create eip155-262.json (#457) Add SUR Blockchain Network --- _data/chains/eip155-262.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _data/chains/eip155-262.json diff --git a/_data/chains/eip155-262.json b/_data/chains/eip155-262.json new file mode 100644 index 00000000..09e9ca1d --- /dev/null +++ b/_data/chains/eip155-262.json @@ -0,0 +1,25 @@ +{ + "name": "SUR Blockchain Network", + "chain": "SUR", + "network": "mainnet", + "rpc": [ + "https://sur.nilin.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Suren", + "symbol": "SRN", + "decimals": 18 + }, + "infoURL": "https://surnet.org", + "shortName": "SUR", + "chainId": 262, + "networkId": 1, + "icon": "SUR", + "explorers": [{ + "name": "Surnet Explorer", + "url": "https://explorer.surnet.org/", + "icon": "SUR", + "standard": "EIP3091" + }] +} From 2ace218b9fdc7b35bf5802175871c4bb2d9c2f0b Mon Sep 17 00:00:00 2001 From: Andrew Falaleev Date: Fri, 8 Oct 2021 22:47:13 +0700 Subject: [PATCH 19/99] Add eip155 for Neon EVM networks (#1) (#465) Add eip155 for Neon EVM networks --- _data/chains/eip155-245022926.json | 20 ++++++++++++++++++++ _data/chains/eip155-245022934.json | 18 ++++++++++++++++++ _data/chains/eip155-245022940.json | 18 ++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 _data/chains/eip155-245022926.json create mode 100644 _data/chains/eip155-245022934.json create mode 100644 _data/chains/eip155-245022940.json diff --git a/_data/chains/eip155-245022926.json b/_data/chains/eip155-245022926.json new file mode 100644 index 00000000..66486491 --- /dev/null +++ b/_data/chains/eip155-245022926.json @@ -0,0 +1,20 @@ +{ + "name": "Neon EVM DevNet", + "chain": "Solana", + "network": "devnet", + "rpc": [ + "https://proxy.devnet.neonlabs.org/solana" + ], + "faucets": [ + "https://neonswap.live/#/get-tokens" + ], + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org/", + "shortName": "neonevm-devnet", + "chainId": 245022926, + "networkId": 245022926 +} diff --git a/_data/chains/eip155-245022934.json b/_data/chains/eip155-245022934.json new file mode 100644 index 00000000..11175af5 --- /dev/null +++ b/_data/chains/eip155-245022934.json @@ -0,0 +1,18 @@ +{ + "name": "Neon EVM MainNet", + "chain": "Solana", + "network": "mainnet", + "rpc": [ + "https://proxy.mainnet.neonlabs.org/solana" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org/", + "shortName": "neonevm-mainnet", + "chainId": 245022934, + "networkId": 245022934 +} diff --git a/_data/chains/eip155-245022940.json b/_data/chains/eip155-245022940.json new file mode 100644 index 00000000..6a8a88a5 --- /dev/null +++ b/_data/chains/eip155-245022940.json @@ -0,0 +1,18 @@ +{ + "name": "Neon EVM TestNet", + "chain": "Solana", + "network": "testnet", + "rpc": [ + "https://proxy.testnet.neonlabs.org/solana" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org/", + "shortName": "neonevm-testnet", + "chainId": 245022940, + "networkId": 245022940 +} From 45ba87554cfe4604131c631309da4352ad3bd4eb Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Sun, 10 Oct 2021 16:40:45 +0200 Subject: [PATCH 20/99] Add AVAX slip44 (#467) --- _data/chains/eip155-43114.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index b446595a..f1b68f92 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -14,5 +14,6 @@ "infoURL": "https://cchain.explorer.avax.network/", "shortName": "Avalanche", "chainId": 43114, - "networkId": 1 + "networkId": 1, + "slip44": 9000 } From 16c8328382dd1e74509ad3679a37cba0f8ca9883 Mon Sep 17 00:00:00 2001 From: ligi Date: Sun, 10 Oct 2021 16:55:57 +0200 Subject: [PATCH 21/99] Create dependabot.yml --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..5c23ee2d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: gradle + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 3 From 8310e3d254b417e2891e22b009112fbbe91fd7d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Oct 2021 17:02:48 +0200 Subject: [PATCH 22/99] Bump okhttp from 4.7.2 to 4.9.2 (#469) Bumps [okhttp](https://github.com/square/okhttp) from 4.7.2 to 4.9.2. - [Release notes](https://github.com/square/okhttp/releases) - [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okhttp/compare/parent-4.7.2...parent-4.9.2) --- updated-dependencies: - dependency-name: com.squareup.okhttp3:okhttp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index acd4b419..746e7e5d 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ dependencies { implementation 'com.beust:klaxon:5.5' implementation 'com.squareup.moshi:moshi-kotlin:1.12.0' - implementation 'com.squareup.okhttp3:okhttp:4.7.2' + implementation 'com.squareup.okhttp3:okhttp:4.9.2' testImplementation "org.jetbrains.kotlin:kotlin-test" testImplementation "org.jetbrains.kotlin:kotlin-test-junit" From b42840d671347d9e3b31b73e30d568b4cd31eccb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Oct 2021 17:03:10 +0200 Subject: [PATCH 23/99] Bump KOTLIN_VERSION from 1.5.30 to 1.5.31 (#468) Bumps `KOTLIN_VERSION` from 1.5.30 to 1.5.31. Updates `kotlin-gradle-plugin` from 1.5.30 to 1.5.31 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.5.31/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.5.30...v1.5.31) Updates `kotlin-stdlib` from 1.5.30 to 1.5.31 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.5.31/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.5.30...v1.5.31) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 746e7e5d..75a6a3dd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - KOTLIN_VERSION = "1.5.30" + KOTLIN_VERSION = "1.5.31" KETHEREUM_VERSION = "0.85.3" } From 67af6867fd019aeaffd4eb71ee74d08065a93782 Mon Sep 17 00:00:00 2001 From: ligi Date: Sun, 10 Oct 2021 17:38:34 +0200 Subject: [PATCH 24/99] Set kotlin version for tests otherwise Idea was freaking out at some point --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 75a6a3dd..f3ce9a79 100644 --- a/build.gradle +++ b/build.gradle @@ -37,7 +37,7 @@ dependencies { implementation 'com.squareup.moshi:moshi-kotlin:1.12.0' implementation 'com.squareup.okhttp3:okhttp:4.9.2' - testImplementation "org.jetbrains.kotlin:kotlin-test" - testImplementation "org.jetbrains.kotlin:kotlin-test-junit" + testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" + testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}" } From 341ae07c036e454b6df9d093e49ed05ef0b8e06d Mon Sep 17 00:00:00 2001 From: ligi Date: Sun, 10 Oct 2021 17:39:21 +0200 Subject: [PATCH 25/99] Allow 'none' as value for explorer standard --- .../kotlin/org/ethereum/lists/chains/Main.kt | 4 +-- .../ethereum/lists/chains/model/Exceptions.kt | 2 +- .../ethereum/lists/chains/TheChainChecker.kt | 10 ++++++- .../valid/withexplorer/eip155-2.json | 26 +++++++++++++++++++ 4 files changed, 38 insertions(+), 4 deletions(-) create mode 100644 src/test/resources/test_chains/valid/withexplorer/eip155-2.json diff --git a/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/src/main/kotlin/org/ethereum/lists/chains/Main.kt index 8fb02d59..73d8a0c5 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -191,8 +191,8 @@ fun checkChain(chainFile: File, connectRPC: Boolean) { throw(ExplorerInvalidUrl()) } - if (explorer["standard"] != "EIP3091") { - throw(ExplorerStandardMustBeEIP3091()) + if (explorer["standard"] != "EIP3091" && explorer["standard"] != "none") { + throw(ExplorerStandardMustBeEIP3091OrNone()) } } } diff --git a/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt b/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt index e4af9a9b..2b88a7d4 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/model/Exceptions.kt @@ -15,7 +15,7 @@ class UnsupportedNamespace(): Exception("So far only the EIP155 namespace is sup class ExplorersMustBeArray: Exception("explorers must be an array") class ExplorerMustHaveName: Exception("Explorer must have name") class ExplorerInvalidUrl: Exception("Explorer have url starting with https://") -class ExplorerStandardMustBeEIP3091: Exception("explorer standard must be EIP3091 - currently the only one supported") +class ExplorerStandardMustBeEIP3091OrNone: Exception("explorer standard must be 'none' or 'EIP3091'") class ParentHasInvalidType(type: String?): Exception("Parent has invalid type $type - only L2 or shard allowed") class ParentMustBeObject: Exception("parent must be an object") class ParentMustHaveChainAndType: Exception("parent must have fields 'chain' and 'type'") diff --git a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt b/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt index ef74c284..bd3c3ad4 100644 --- a/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt +++ b/src/test/kotlin/org/ethereum/lists/chains/TheChainChecker.kt @@ -28,6 +28,14 @@ class TheChainChecker { checkChain(file, false) } + @Test + fun shouldPassForValidChainWithExplorersNoStandard() { + val file = getFile("valid/withexplorer/eip155-2.json") + + checkChain(file, false) + } + + @Test fun shouldPassForValidChainWithParent() { val file = getFile("valid/withparent/eip155-2.json") @@ -186,7 +194,7 @@ class TheChainChecker { checkChain(getFile("invalid/explorersnotarray/eip155-1.json"), false) } - @Test(expected = ExplorerStandardMustBeEIP3091::class) + @Test(expected = ExplorerStandardMustBeEIP3091OrNone::class) fun shouldFailOnWrongExplorerStandard() { checkChain(getFile("invalid/wrongexplorerstandard/eip155-1.json"), false) } diff --git a/src/test/resources/test_chains/valid/withexplorer/eip155-2.json b/src/test/resources/test_chains/valid/withexplorer/eip155-2.json new file mode 100644 index 00000000..fadae45a --- /dev/null +++ b/src/test/resources/test_chains/valid/withexplorer/eip155-2.json @@ -0,0 +1,26 @@ +{ + "name": "Ethereum Mainnet", + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "chainId": 2, + "networkId": 2, + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "infoURL": "https://ethereum.org", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "explorers": [ + { + "name": "some", + "url": "https://etherscan.io", + "standard": "none" + } + ] +} From 2718c1060ddd7c8f0d9177075227d5408a8743f5 Mon Sep 17 00:00:00 2001 From: porkybalboa <91639901+porkybalboa@users.noreply.github.com> Date: Sun, 10 Oct 2021 22:54:42 +0200 Subject: [PATCH 26/99] add missing explorers, faucet and fixed some ids (#463) --- _data/chains/eip155-100.json | 10 ++++++++-- _data/chains/eip155-128.json | 2 +- _data/chains/eip155-1285.json | 12 +++++++++--- _data/chains/eip155-137.json | 2 +- _data/chains/eip155-1666600000.json | 3 +-- _data/chains/eip155-19.json | 11 ++++++++--- _data/chains/eip155-250.json | 2 +- _data/chains/eip155-30.json | 10 ++++++++-- _data/chains/eip155-42220.json | 10 ++++++++-- _data/chains/eip155-43114.json | 13 +++++++++---- _data/chains/eip155-56.json | 2 +- _data/chains/eip155-60.json | 2 +- _data/chains/eip155-61.json | 12 +++++++++--- _data/chains/eip155-66.json | 2 +- 14 files changed, 66 insertions(+), 27 deletions(-) diff --git a/_data/chains/eip155-100.json b/_data/chains/eip155-100.json index c6ce2e40..b8a3a314 100644 --- a/_data/chains/eip155-100.json +++ b/_data/chains/eip155-100.json @@ -11,7 +11,7 @@ "https://dai.poa.network", "ws://xdai.poanetwork.dev:8546" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/","https://xdai-app.herokuapp.com/faucet"], "nativeCurrency": { "name": "xDAI", "symbol": "xDAI", @@ -21,5 +21,11 @@ "shortName": "xdai", "chainId": 100, "networkId": 100, - "slip44": 700 + "slip44": 700, + + "explorers": [{ + "name": "blockscout", + "url": "https://blockscout.com/poa/xdai", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-128.json b/_data/chains/eip155-128.json index 093766e1..1f413194 100644 --- a/_data/chains/eip155-128.json +++ b/_data/chains/eip155-128.json @@ -6,7 +6,7 @@ "https://http-mainnet.hecochain.com", "wss://ws-mainnet.hecochain.com" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Huobi ECO Chain Native Token", "symbol": "HT", diff --git a/_data/chains/eip155-1285.json b/_data/chains/eip155-1285.json index a6b6fa42..3fdd8b29 100644 --- a/_data/chains/eip155-1285.json +++ b/_data/chains/eip155-1285.json @@ -6,7 +6,7 @@ "https://rpc.moonriver.moonbeam.network", "wss://wss.moonriver.moonbeam.network" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Moonriver", "symbol": "MOVR", @@ -15,5 +15,11 @@ "infoURL": "https://moonbeam.network/networks/moonriver/", "shortName": "mriver", "chainId": 1285, - "networkId": 1285 -} \ No newline at end of file + "networkId": 1285, + + "explorers": [{ + "name": "blockscout", + "url": "https://blockscout.moonriver.moonbeam.network", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-137.json b/_data/chains/eip155-137.json index 6538f6ee..1062fce2 100644 --- a/_data/chains/eip155-137.json +++ b/_data/chains/eip155-137.json @@ -8,7 +8,7 @@ "https://rpc-mainnet.matic.quiknode.pro", "https://matic-mainnet.chainstacklabs.com" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Matic", "symbol": "MATIC", diff --git a/_data/chains/eip155-1666600000.json b/_data/chains/eip155-1666600000.json index d4837f59..12ee6617 100644 --- a/_data/chains/eip155-1666600000.json +++ b/_data/chains/eip155-1666600000.json @@ -5,8 +5,7 @@ "rpc": [ "https://api.harmony.one" ], - "faucets": [ - ], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "ONE", "symbol": "ONE", diff --git a/_data/chains/eip155-19.json b/_data/chains/eip155-19.json index 48aed255..b84014af 100644 --- a/_data/chains/eip155-19.json +++ b/_data/chains/eip155-19.json @@ -4,8 +4,7 @@ "network": "songbird", "rpc": [ ], - "faucets": [ - ], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Songbird", "symbol": "SGB", @@ -14,5 +13,11 @@ "infoURL": "https://flare.xyz", "shortName": "sgb", "chainId": 19, - "networkId": 19 + "networkId": 19, + + "explorers": [{ + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "none" + }] } diff --git a/_data/chains/eip155-250.json b/_data/chains/eip155-250.json index bce2c84e..005095e1 100644 --- a/_data/chains/eip155-250.json +++ b/_data/chains/eip155-250.json @@ -3,7 +3,7 @@ "chain": "FTM", "network": "mainnet", "rpc": ["https://rpc.ftm.tools"], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Fantom", "symbol": "FTM", diff --git a/_data/chains/eip155-30.json b/_data/chains/eip155-30.json index 57a8caf5..a1f77051 100644 --- a/_data/chains/eip155-30.json +++ b/_data/chains/eip155-30.json @@ -6,7 +6,7 @@ "https://public-node.rsk.co", "https://mycrypto.rsk.co" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "RSK Mainnet Ether", "symbol": "RBTC", @@ -16,5 +16,11 @@ "shortName": "rsk", "chainId": 30, "networkId": 30, - "slip44": 137 + "slip44": 137, + + "explorers": [{ + "name": "blockscout", + "url": "https://explorer.rsk.co", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-42220.json b/_data/chains/eip155-42220.json index 9e351cbb..600d8224 100644 --- a/_data/chains/eip155-42220.json +++ b/_data/chains/eip155-42220.json @@ -11,6 +11,12 @@ "decimals": 18 }, "rpc": ["https://forno.celo.org", "wss://forno.celo.org/ws"], - "faucets": [], - "infoURL": "https://docs.celo.org/" + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "infoURL": "https://docs.celo.org/", + + "explorers": [{ + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" + }] } diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index f1b68f92..00190f22 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -5,15 +5,20 @@ "rpc": [ "https://api.avax.network/ext/bc/C/rpc" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Avalanche", "symbol": "AVAX", "decimals": 18 }, - "infoURL": "https://cchain.explorer.avax.network/", + "infoURL": "https://www.avax.network/", "shortName": "Avalanche", "chainId": 43114, - "networkId": 1, - "slip44": 9000 + "networkId": 43114, + "slip44": 9000, + "explorers": [{ + "name": "blockscout", + "url": "https://cchain.explorer.avax.network", + "standard": "none" + }] } diff --git a/_data/chains/eip155-56.json b/_data/chains/eip155-56.json index 8b357626..3a71ead0 100644 --- a/_data/chains/eip155-56.json +++ b/_data/chains/eip155-56.json @@ -17,7 +17,7 @@ "https://bsc-dataseed4.ninicoin.io", "wss://bsc-ws-node.nariox.org" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "Binance Chain Native Token", "symbol": "BNB", diff --git a/_data/chains/eip155-60.json b/_data/chains/eip155-60.json index 726d7e55..29c11b13 100644 --- a/_data/chains/eip155-60.json +++ b/_data/chains/eip155-60.json @@ -5,7 +5,7 @@ "rpc": [ "https://rpc.gochain.io" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { "name": "GoChain Ether", "symbol": "GO", diff --git a/_data/chains/eip155-61.json b/_data/chains/eip155-61.json index 88d0a2ba..3e52198f 100644 --- a/_data/chains/eip155-61.json +++ b/_data/chains/eip155-61.json @@ -5,7 +5,7 @@ "rpc": [ "https://ethereumclassic.network" ], - "faucets": [], +"faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/?"], "nativeCurrency": { "name": "Ethereum Classic Ether", "symbol": "ETC", @@ -15,5 +15,11 @@ "shortName": "etc", "chainId": 61, "networkId": 1, - "slip44": 61 -} \ No newline at end of file + "slip44": 61, + + "explorers": [{ + "name": "blockscout", + "url": "https://blockscout.com/etc/mainnet", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-66.json b/_data/chains/eip155-66.json index e2b8d75e..f0bd39db 100644 --- a/_data/chains/eip155-66.json +++ b/_data/chains/eip155-66.json @@ -5,7 +5,7 @@ "rpc": [ "https://exchainrpc.okex.org" ], - "faucets": [], + "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/?"], "nativeCurrency": { "name": "OKExChain Global Utility Token", "symbol": "OKT", From bac98969024fd33d89ec69eaf33c9ae445da23aa Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Mon, 11 Oct 2021 19:53:14 +0200 Subject: [PATCH 27/99] Add some more missing slip44 values (#473) --- _data/chains/eip155-1010.json | 3 ++- _data/chains/eip155-108.json | 3 ++- _data/chains/eip155-128.json | 1 + _data/chains/eip155-137.json | 1 + _data/chains/eip155-24484.json | 3 ++- _data/chains/eip155-56.json | 1 + _data/chains/eip155-88.json | 3 ++- _data/chains/eip155-99.json | 3 ++- 8 files changed, 13 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-1010.json b/_data/chains/eip155-1010.json index ea34268e..9dcf8be7 100644 --- a/_data/chains/eip155-1010.json +++ b/_data/chains/eip155-1010.json @@ -14,5 +14,6 @@ "infoURL": "https://evrice.com", "shortName": "EVC", "chainId": 1010, - "networkId": 1010 + "networkId": 1010, + "slip44": 1020 } diff --git a/_data/chains/eip155-108.json b/_data/chains/eip155-108.json index 738026c9..578bb274 100644 --- a/_data/chains/eip155-108.json +++ b/_data/chains/eip155-108.json @@ -16,5 +16,6 @@ "infoURL": "https://thundercore.com", "shortName": "TT", "chainId": 108, - "networkId": 108 + "networkId": 108, + "slip44": 1001 } \ No newline at end of file diff --git a/_data/chains/eip155-128.json b/_data/chains/eip155-128.json index 1f413194..29eaab82 100644 --- a/_data/chains/eip155-128.json +++ b/_data/chains/eip155-128.json @@ -16,6 +16,7 @@ "shortName": "heco", "chainId": 128, "networkId": 128, + "slip44": 1010, "explorers": [{ "name": "hecoinfo", "url": "https://hecoinfo.com", diff --git a/_data/chains/eip155-137.json b/_data/chains/eip155-137.json index 1062fce2..23f9e39f 100644 --- a/_data/chains/eip155-137.json +++ b/_data/chains/eip155-137.json @@ -18,6 +18,7 @@ "shortName": "matic", "chainId": 137, "networkId": 137, + "slip44": 966, "explorers": [{ "name": "polygonscan", "url": "https://polygonscan.com", diff --git a/_data/chains/eip155-24484.json b/_data/chains/eip155-24484.json index 8cf4a846..20efe647 100644 --- a/_data/chains/eip155-24484.json +++ b/_data/chains/eip155-24484.json @@ -14,5 +14,6 @@ "infoURL": "https://webchain.network", "shortName": "web", "chainId": 24484, - "networkId": 37129 + "networkId": 37129, + "slip44": 227 } \ No newline at end of file diff --git a/_data/chains/eip155-56.json b/_data/chains/eip155-56.json index 3a71ead0..21ef7b0e 100644 --- a/_data/chains/eip155-56.json +++ b/_data/chains/eip155-56.json @@ -27,6 +27,7 @@ "shortName": "bnb", "chainId": 56, "networkId": 56, + "slip44": 714, "explorers": [{ "name": "bscscan", "url": "https://bscscan.com", diff --git a/_data/chains/eip155-88.json b/_data/chains/eip155-88.json index 1b89641f..da6a4172 100644 --- a/_data/chains/eip155-88.json +++ b/_data/chains/eip155-88.json @@ -14,5 +14,6 @@ "infoURL": "https://tomocoin.io", "shortName": "tomo", "chainId": 88, - "networkId": 88 + "networkId": 88, + "slip44": 889 } diff --git a/_data/chains/eip155-99.json b/_data/chains/eip155-99.json index d46855ea..0da81c93 100644 --- a/_data/chains/eip155-99.json +++ b/_data/chains/eip155-99.json @@ -17,5 +17,6 @@ "infoURL": "https://poa.network", "shortName": "skl", "chainId": 99, - "networkId": 99 + "networkId": 99, + "slip44": 178 } \ No newline at end of file From 40364202d24a3f837ac71fbbca97eff0b080bd81 Mon Sep 17 00:00:00 2001 From: stefdelec Date: Mon, 11 Oct 2021 19:53:27 +0200 Subject: [PATCH 28/99] update eip155-77 with blockchain explorers (#474) --- _data/chains/eip155-77.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-77.json b/_data/chains/eip155-77.json index 192bac77..53a87995 100644 --- a/_data/chains/eip155-77.json +++ b/_data/chains/eip155-77.json @@ -18,5 +18,11 @@ "infoURL": "https://poa.network", "shortName": "poa", "chainId": 77, - "networkId": 77 -} \ No newline at end of file + "networkId": 77, + + "explorers": [{ + "name": "blockscout", + "url": "https://blockscout.com/poa/sokol", + "standard": "none" + }] +} From c9f790bb5c1dbb5a1a02d55560fb09501f82d922 Mon Sep 17 00:00:00 2001 From: porkybalboa <91639901+porkybalboa@users.noreply.github.com> Date: Mon, 11 Oct 2021 20:06:42 +0200 Subject: [PATCH 29/99] added rpc (#476) --- _data/chains/eip155-19.json | 1 + 1 file changed, 1 insertion(+) diff --git a/_data/chains/eip155-19.json b/_data/chains/eip155-19.json index b84014af..3062f569 100644 --- a/_data/chains/eip155-19.json +++ b/_data/chains/eip155-19.json @@ -3,6 +3,7 @@ "chain": "SGB", "network": "songbird", "rpc": [ + "https://songbird.towolabs.com/rpc" ], "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], "nativeCurrency": { From 9a27a14a58028b2b0ea1cc00d8773c794529745f Mon Sep 17 00:00:00 2001 From: stefdelec Date: Mon, 11 Oct 2021 20:16:34 +0200 Subject: [PATCH 30/99] update eip155-99.json with explorers (#475) Co-authored-by: ligi --- _data/chains/eip155-99.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-99.json b/_data/chains/eip155-99.json index 0da81c93..f89082d1 100644 --- a/_data/chains/eip155-99.json +++ b/_data/chains/eip155-99.json @@ -18,5 +18,10 @@ "shortName": "skl", "chainId": 99, "networkId": 99, - "slip44": 178 + "slip44": 178, + "explorers": [{ + "name": "blockscout", + "url": "https://blockscout.com/poa/core", + "standard": "none" + }] } \ No newline at end of file From 6dd1ea7545c1aa0f49422f322abab51d4dd26648 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Federico=20Kunze=20K=C3=BCllmer?= <31522760+fedekunze@users.noreply.github.com> Date: Mon, 11 Oct 2021 22:21:00 +0200 Subject: [PATCH 31/99] evmos testnet (#479) * evmos testnet * shortName * rename file --- _data/chains/eip155-9000.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _data/chains/eip155-9000.json diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json new file mode 100644 index 00000000..af8f9094 --- /dev/null +++ b/_data/chains/eip155-9000.json @@ -0,0 +1,28 @@ +{ + "name": "Evmos Testnet", + "chain": "Evmos", + "network": "testnet", + "rpc": [], + "faucets": ["https://faucet.evmos.org"], + "nativeCurrency": { + "name": "Photon", + "symbol": "PHOTON", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos-mons", + "chainId": 9000, + "networkId": 9000, + "explorers": [ + { + "name": "Evmos EVM Explorer (Blockscout)", + "url": "https://evm.evmos.org", + "standard": "none" + }, + { + "name": "Evmos Cosmos Explorer (Big Dipper)", + "url": "https://explorer.evmos.org", + "standard": "none" + } + ] +} From 673f2a745a062bc7b2c0873a07525ebb7e030bb9 Mon Sep 17 00:00:00 2001 From: MITRABINEKA <72639729+mitrabineka1@users.noreply.github.com> Date: Tue, 12 Oct 2021 22:18:59 +0700 Subject: [PATCH 32/99] Create MITRA_ETH (#481) --- MITRA_ETH | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 MITRA_ETH diff --git a/MITRA_ETH b/MITRA_ETH new file mode 100644 index 00000000..70b35cf8 --- /dev/null +++ b/MITRA_ETH @@ -0,0 +1,26 @@ +{ + "name": "MITRA_ETH", + "chain": "ETH", + "network": "mainnet", + "rpc": [ + "https://mainnet.infura.io/v3/b7927146d78c4a61ae49d0604c7f6344", + "https://api.mycryptoapi.com/eth" + ], + "faucets": [], + "nativeCurrency": { + "name": "MITRA", + "symbol": "MITRA", + "decimals": 8 + }, + "infoURL": "https://ethereum.org", + "shortName": "eth", + "chainId": 1, + "networkId": 1, + "icon": "ethereum", + "explorers": [{ + "name": "etherscan", + "url": "https://etherscan.io", + "icon": "etherscan", + "standard": "EIP3091" + }] +} From 1232cf64d642967895da87000521360b2cacc882 Mon Sep 17 00:00:00 2001 From: porkybalboa <91639901+porkybalboa@users.noreply.github.com> Date: Wed, 13 Oct 2021 22:31:42 +0200 Subject: [PATCH 33/99] added explorer (#487) --- _data/chains/eip155-10.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-10.json b/_data/chains/eip155-10.json index 99350723..6b08fb4a 100644 --- a/_data/chains/eip155-10.json +++ b/_data/chains/eip155-10.json @@ -12,5 +12,11 @@ "infoURL": "https://optimism.io", "shortName": "oeth", "chainId": 10, - "networkId": 10 + "networkId": 10, + + "explorers": [{ + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "none" + }] } From e05f57564d714322d5357e397003529ad51b82ef Mon Sep 17 00:00:00 2001 From: porkybalboa <91639901+porkybalboa@users.noreply.github.com> Date: Wed, 13 Oct 2021 22:32:22 +0200 Subject: [PATCH 34/99] added missing explorer and faucet (#486) --- _data/chains/eip155-246.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-246.json b/_data/chains/eip155-246.json index 56fa8b21..61fec517 100644 --- a/_data/chains/eip155-246.json +++ b/_data/chains/eip155-246.json @@ -7,7 +7,7 @@ "wss://rpc.energyweb.org/ws" ], "faucets": [ - "https://faucet.carbonswap.exchange" + "https://faucet.carbonswap.exchange", "https://free-online-app.com/faucet-for-eth-evm-chains/" ], "nativeCurrency": { "name": "Energy Web Token", @@ -18,5 +18,13 @@ "shortName": "ewt", "chainId": 246, "networkId": 246, - "slip44": 246 + "slip44": 246, + + "explorers": [{ + "name": "blockscout", + "url": "https://explorer.energyweb.org", + "standard": "none" + }] + + } From 5376d15d14916377a609c4d125eaf8de97efc927 Mon Sep 17 00:00:00 2001 From: Hyungsuk Kang Date: Thu, 14 Oct 2021 05:33:01 +0900 Subject: [PATCH 35/99] add shiden support (#485) --- _data/chains/eip155-336.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-336.json diff --git a/_data/chains/eip155-336.json b/_data/chains/eip155-336.json new file mode 100644 index 00000000..8b471acc --- /dev/null +++ b/_data/chains/eip155-336.json @@ -0,0 +1,26 @@ +{ + "name": "Shiden", + "chain": "SDN", + "network": "shiden", + "rpc": [ + "https://rpc.shiden.astar.network:8545", + "wss://shiden.api.onfinality.io/public-ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shiden", + "symbol": "SDN", + "decimals": 18 + }, + "infoURL": "https://shiden.astar.network/", + "shortName": "sdn", + "chainId": 336, + "networkId": 336, + "explorers": [ + { + "name": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none" + } + ] +} \ No newline at end of file From d6715e3e2e35137bad33b8ae778b74acc679146b Mon Sep 17 00:00:00 2001 From: tomatoskittles Date: Thu, 14 Oct 2021 02:34:50 -0400 Subject: [PATCH 36/99] Removing Syscoin mainnet faucet, and adding explorers. (#488) * Removing mainnet faucet, and adding explorers. * Removing the explorer, as it is not up yet. * Removing this chain, until the servers are set up. Co-authored-by: bboileau --- _data/chains/eip155-57.json | 19 ------------------- _data/chains/eip155-5700.json | 9 ++++++++- 2 files changed, 8 insertions(+), 20 deletions(-) delete mode 100644 _data/chains/eip155-57.json diff --git a/_data/chains/eip155-57.json b/_data/chains/eip155-57.json deleted file mode 100644 index 5716cf7c..00000000 --- a/_data/chains/eip155-57.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "Syscoin Mainnet", - "chain": "SYS", - "network": "mainnet", - "rpc": [ - "https://rpc.syscoin.org", - "wss://rpc.syscoin.org/wss" - ], - "faucets": ["https://faucet.syscoin.org"], - "nativeCurrency": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 - }, - "infoURL": "https://www.syscoin.org", - "shortName": "sys", - "chainId": 57, - "networkId": 57 -} diff --git a/_data/chains/eip155-5700.json b/_data/chains/eip155-5700.json index f842d3a4..5cc5ae63 100644 --- a/_data/chains/eip155-5700.json +++ b/_data/chains/eip155-5700.json @@ -15,5 +15,12 @@ "infoURL": "https://syscoin.org", "shortName": "tsys", "chainId": 5700, - "networkId": 5700 + "networkId": 5700, + "explorers": [ + { + "name": "Syscoin Testnet Block Explorer", + "url": "https://tanenbaum.io", + "standard": "EIP3091" + } + ] } From 2a40114a6665cfefb8719fac078afe5630d41c30 Mon Sep 17 00:00:00 2001 From: circlehotarux Date: Sat, 16 Oct 2021 00:55:57 +0800 Subject: [PATCH 37/99] update rpc url(eip155-1313161554 & 1313161555 & 1313161556 json) (#492) --- _data/chains/eip155-1313161554.json | 2 +- _data/chains/eip155-1313161555.json | 2 +- _data/chains/eip155-1313161556.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/chains/eip155-1313161554.json b/_data/chains/eip155-1313161554.json index bb25440c..9120e0e0 100644 --- a/_data/chains/eip155-1313161554.json +++ b/_data/chains/eip155-1313161554.json @@ -3,7 +3,7 @@ "chain": "NEAR", "network": "mainnet", "rpc": [ - "https://rpc.mainnet.aurora.dev:8545" + "https://mainnet.aurora.dev" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1313161555.json b/_data/chains/eip155-1313161555.json index e68ca6d2..7ba0cf26 100644 --- a/_data/chains/eip155-1313161555.json +++ b/_data/chains/eip155-1313161555.json @@ -3,7 +3,7 @@ "chain": "NEAR", "network": "testnet", "rpc": [ - "https://rpc.testnet.aurora.dev:8545" + "https://testnet.aurora.dev/" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-1313161556.json b/_data/chains/eip155-1313161556.json index ad39d387..5438dc79 100644 --- a/_data/chains/eip155-1313161556.json +++ b/_data/chains/eip155-1313161556.json @@ -3,7 +3,7 @@ "chain": "NEAR", "network": "betanet", "rpc": [ - "https://rpc.betanet.aurora.dev:8545" + "https://betanet.aurora.dev/" ], "faucets": [], "nativeCurrency": { From 90581a3c8697a6c79136e96ab1e934cd801a457e Mon Sep 17 00:00:00 2001 From: Roman Cherednik Date: Sat, 16 Oct 2021 01:48:03 +0300 Subject: [PATCH 38/99] Add Velas Mainnet (#484) * added velas chain * Update eip155-106.json * added faucets --- _data/chains/eip155-106.json | 25 +++++++++++++++++++++++++ _data/icons/velas.json | 8 ++++++++ 2 files changed, 33 insertions(+) create mode 100644 _data/chains/eip155-106.json create mode 100644 _data/icons/velas.json diff --git a/_data/chains/eip155-106.json b/_data/chains/eip155-106.json new file mode 100644 index 00000000..3b8c05c5 --- /dev/null +++ b/_data/chains/eip155-106.json @@ -0,0 +1,25 @@ +{ + "name": "Velas EVM Mainnet", + "chain": "Velas", + "network": "mainnet", + "icon": "velas", + "rpc": [ + "https://evmexplorer.velas.com/rpc", + "https://explorer.velas.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Velas", + "symbol": "VLX", + "decimals": 18 + }, + "infoURL": "https://velas.com", + "shortName": "vlx", + "chainId": 106, + "networkId": 106, + "explorers": [{ + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + }] +} diff --git a/_data/icons/velas.json b/_data/icons/velas.json new file mode 100644 index 00000000..28212e39 --- /dev/null +++ b/_data/icons/velas.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmNXiCXJxEeBd7ZYGYjPSMTSdbDd2nfodLC677gUfk9ku5", + "width":924, + "height":800, + "format":"png" + } +] From 31e9ae28b9f6d8861799170de938ef6f312dc782 Mon Sep 17 00:00:00 2001 From: Serban Simu <29080995+elv-serban@users.noreply.github.com> Date: Sun, 17 Oct 2021 09:41:25 -0700 Subject: [PATCH 39/99] Add Eluvio mainnet (#494) Co-authored-by: elv-serban --- _data/chains/eip155-955305.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 _data/chains/eip155-955305.json diff --git a/_data/chains/eip155-955305.json b/_data/chains/eip155-955305.json new file mode 100644 index 00000000..c89d0cbd --- /dev/null +++ b/_data/chains/eip155-955305.json @@ -0,0 +1,33 @@ +{ + "name": "Eluvio Content Fabric", + "chain": "Eluvio", + "network": "mainnet", + "rpc": [ + "https://host-76-74-28-226.contentfabric.io/eth/", + "https://host-76-74-28-232.contentfabric.io/eth/", + "https://host-76-74-29-2.contentfabric.io/eth/", + "https://host-76-74-29-8.contentfabric.io/eth/", + "https://host-76-74-29-34.contentfabric.io/eth/", + "https://host-76-74-29-35.contentfabric.io/eth/", + "https://host-154-14-211-98.contentfabric.io/eth/", + "https://host-154-14-192-66.contentfabric.io/eth/", + "https://host-60-240-133-202.contentfabric.io/eth/", + "https://host-64-235-250-98.contentfabric.io/eth/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ELV", + "symbol": "ELV", + "decimals": 18 + }, + "infoURL": "https://eluv.io", + "shortName": "elv", + "chainId": 955305, + "networkId": 955305, + "slip44": 1011, + "explorers": [{ + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + }] +} From ae31f33437930242016807ba79369e1664834a1d Mon Sep 17 00:00:00 2001 From: Calvin Lau <38898718+calvinaco@users.noreply.github.com> Date: Tue, 19 Oct 2021 01:55:33 +0800 Subject: [PATCH 40/99] Add Cronos Testnet (#491) * Add Cronos Testnet (ChainId: 338) * Update _data/chains/eip155-338.json Co-authored-by: ligi Co-authored-by: ligi --- _data/chains/eip155-338.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-338.json diff --git a/_data/chains/eip155-338.json b/_data/chains/eip155-338.json new file mode 100644 index 00000000..f9583f60 --- /dev/null +++ b/_data/chains/eip155-338.json @@ -0,0 +1,26 @@ +{ + "name": "Cronos Testnet", + "chain": "CRO", + "network": "testnet", + "rpc": [ + "https://cronos-testnet-3.crypto.org:8545", + "wss://cronos-testnet-3.crypto.org:8546" + ], + "faucets": [ + "https://cronos.crypto.org/faucet" + ], + "nativeCurrency": { + "name": "Crypto.org Test Coin", + "symbol": "TCRO", + "decimals": 18 + }, + "infoURL": "https://cronos.crypto.org", + "shortName": "tcro", + "chainId": 338, + "networkId": 338, + "explorers": [{ + "name": "Cronos Testnet Explorer", + "url": "https://cronos.crypto.org/explorer", + "standard": "none" + }] +} From 99ac4612cec6eb370d05692ce710cf5cd99342a8 Mon Sep 17 00:00:00 2001 From: Joe Schmoe <64335177+jolube@users.noreply.github.com> Date: Wed, 20 Oct 2021 12:58:43 -0700 Subject: [PATCH 41/99] evmos rpc url (#496) --- _data/chains/eip155-9000.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index af8f9094..bd38e168 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -2,7 +2,7 @@ "name": "Evmos Testnet", "chain": "Evmos", "network": "testnet", - "rpc": [], + "rpc": ["http://arsiamons.rpc.evmos.org:8545/"], "faucets": ["https://faucet.evmos.org"], "nativeCurrency": { "name": "Photon", From 382df0fe960ae2a884d12fc8f2dc6a350d9cfe56 Mon Sep 17 00:00:00 2001 From: Exlo <46317321+Exlo84@users.noreply.github.com> Date: Wed, 20 Oct 2021 23:09:46 +0200 Subject: [PATCH 42/99] Updated ETHO (#498) * Added ETHO logo * Changed From Ether-1 to Etho Protocol and added explorer *Changed from Ether-1 to Etho Protocol *Added explorer *Updated website link --- _data/chains/eip155-1313114.json | 44 +++++++++++++++++++------------- _data/icons/etho.json | 8 ++++++ 2 files changed, 34 insertions(+), 18 deletions(-) create mode 100644 _data/icons/etho.json diff --git a/_data/chains/eip155-1313114.json b/_data/chains/eip155-1313114.json index 001999f8..16094838 100644 --- a/_data/chains/eip155-1313114.json +++ b/_data/chains/eip155-1313114.json @@ -1,19 +1,27 @@ { - "name": "Ether-1", - "chain": "ETHO", - "network": "mainnet", - "rpc": [ - "https://rpc.ether1.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether-1 Ether", - "symbol": "ETHO", - "decimals": 18 - }, - "infoURL": "https://ether1.org", - "shortName": "etho", - "chainId": 1313114, - "networkId": 1313114, - "slip44": 1313114 -} \ No newline at end of file + "name": "Etho Protocol", + "chain": "ETHO", + "network": "mainnet", + "rpc": [ + "https://rpc.ether1.org" + ], + + "faucets": [], + "nativeCurrency": { + "name": "Etho Protocol", + "symbol": "ETHO", + "decimals": 18 + }, + + "infoURL": "https://ethoprotocol.com", + "shortName": "etho", + "chainId": 1313114, + "networkId": 1313114, + "slip44": 1313114, + + "explorers": [{ + "name": "blockscout", + "url": "https://explorer.ethoprotocol.com", + "standard": "none" + }] + } diff --git a/_data/icons/etho.json b/_data/icons/etho.json new file mode 100644 index 00000000..35f80e4b --- /dev/null +++ b/_data/icons/etho.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmNSNdgbazhur7fKbTc5YgqP1oPhgSCyrm7QMkxS6itoTw", + "width":688, + "height":688, + "format":"png" + } +] \ No newline at end of file From aa8b0e2632a07c83b0fb312757caa2fa3303a9d4 Mon Sep 17 00:00:00 2001 From: zalam003 <48445346+zalam003@users.noreply.github.com> Date: Thu, 21 Oct 2021 15:20:49 +0600 Subject: [PATCH 43/99] Update Energi mainnet and test RPC URL (#503) * update energi rpc * update energi testnet rpc symbol --- _data/chains/eip155-39797.json | 4 ++-- _data/chains/eip155-49797.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-39797.json b/_data/chains/eip155-39797.json index 2f0d63f3..79bd94d1 100644 --- a/_data/chains/eip155-39797.json +++ b/_data/chains/eip155-39797.json @@ -3,7 +3,7 @@ "chain": "NRG", "network": "mainnet", "rpc": [ - "https://nodeapi.gen3.energi.network" + "https://nodeapi.energi.network" ], "faucets": [], "nativeCurrency": { @@ -16,4 +16,4 @@ "chainId": 39797, "networkId": 39797, "slip44": 39797 -} \ No newline at end of file +} diff --git a/_data/chains/eip155-49797.json b/_data/chains/eip155-49797.json index 902ee8d4..b63cbcf5 100644 --- a/_data/chains/eip155-49797.json +++ b/_data/chains/eip155-49797.json @@ -3,12 +3,12 @@ "chain": "NRG", "network": "testnet", "rpc": [ - "https://nodeapi.test3.energi.network" + "https://nodeapi.test.energi.network" ], "faucets": [], "nativeCurrency": { "name": "Energi", - "symbol": "tNRG", + "symbol": "NRG", "decimals": 18 }, "infoURL": "https://www.energi.world/", @@ -16,4 +16,4 @@ "chainId": 49797, "networkId": 49797, "slip44": 49797 -} \ No newline at end of file +} From b42e9f92df742db17c9207b79ccd5fe989ad5218 Mon Sep 17 00:00:00 2001 From: Atmosfearful <88635679+Atmosfearful@users.noreply.github.com> Date: Thu, 21 Oct 2021 09:12:14 -0700 Subject: [PATCH 44/99] Update Polygon (137) & Polygon Mumbai Testnet (80001) to match official docs. (#501) * Update Polygon Mainnet 137 (formerly Matic) * Update Polygon Mumbai Testnet 80001 (formerly Matic) --- _data/chains/eip155-137.json | 20 +++++++++++--------- _data/chains/eip155-80001.json | 16 +++++++++------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/_data/chains/eip155-137.json b/_data/chains/eip155-137.json index 23f9e39f..86b23448 100644 --- a/_data/chains/eip155-137.json +++ b/_data/chains/eip155-137.json @@ -1,27 +1,29 @@ { - "name": "Matic(Polygon) Mainnet", - "chain": "Matic(Polygon)", + "name": "Polygon Mainnet", + "chain": "Polygon", "network": "mainnet", "rpc": [ + "https://polygon-rpc.com/", "https://rpc-mainnet.matic.network", - "wss://ws-mainnet.matic.network", + "https://matic-mainnet.chainstacklabs.com", + "https://rpc-mainnet.maticvigil.com", "https://rpc-mainnet.matic.quiknode.pro", - "https://matic-mainnet.chainstacklabs.com" + "https://matic-mainnet-full-rpc.bwarelabs.com" ], - "faucets": ["https://free-online-app.com/faucet-for-eth-evm-chains/"], + "faucets": [], "nativeCurrency": { - "name": "Matic", + "name": "MATIC", "symbol": "MATIC", "decimals": 18 }, - "infoURL": "https://matic.network/", - "shortName": "matic", + "infoURL": "https://polygon.technology/", + "shortName": "MATIC", "chainId": 137, "networkId": 137, "slip44": 966, "explorers": [{ "name": "polygonscan", - "url": "https://polygonscan.com", + "url": "https://polygonscan.com/", "standard": "EIP3091" }] } diff --git a/_data/chains/eip155-80001.json b/_data/chains/eip155-80001.json index b72c37a2..3789d8e9 100644 --- a/_data/chains/eip155-80001.json +++ b/_data/chains/eip155-80001.json @@ -1,20 +1,22 @@ { - "name": "Matic(Polygon) Testnet Mumbai", - "chain": "Matic(Polygon)", + "name": "Polygon Testnet Mumbai", + "chain": "Polygon", "network": "testnet", "rpc": [ "https://rpc-mumbai.matic.today", - "wss://ws-mumbai.matic.today" + "https://matic-mumbai.chainstacklabs.com", + "https://rpc-mumbai.maticvigil.com", + "https://matic-testnet-archive-rpc.bwarelabs.com" ], "faucets": [ - "https://faucet.matic.network/" + "https://faucet.polygon.technology/" ], "nativeCurrency": { - "name": "Matic", - "symbol": "tMATIC", + "name": "MATIC", + "symbol": "MATIC", "decimals": 18 }, - "infoURL": "https://matic.network/", + "infoURL": "https://polygon.technology/", "shortName": "maticmum", "chainId": 80001, "networkId": 80001, From 4f62e4e6d0745176d56fd3f044e1f2b245995429 Mon Sep 17 00:00:00 2001 From: Shomari Date: Fri, 22 Oct 2021 08:14:18 -0400 Subject: [PATCH 45/99] Add DevOps to RPC list for SmartBCH nodes. (#504) * Add DevOps to RPC list for SmartBCH nodes. * Fix testnet endpoint for chainid 10001. --- _data/chains/eip155-10000.json | 3 ++- _data/chains/eip155-10001.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/_data/chains/eip155-10000.json b/_data/chains/eip155-10000.json index 8c226a10..472bc1ef 100644 --- a/_data/chains/eip155-10000.json +++ b/_data/chains/eip155-10000.json @@ -5,7 +5,8 @@ "rpc": [ "https://smartbch.greyh.at", "https://rpc-mainnet.smartbch.org", - "https://smartbch.fountainhead.cash/mainnet" + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" ], "faucets": [], "nativeCurrency": { diff --git a/_data/chains/eip155-10001.json b/_data/chains/eip155-10001.json index 507453ca..a04ac598 100644 --- a/_data/chains/eip155-10001.json +++ b/_data/chains/eip155-10001.json @@ -3,7 +3,8 @@ "chain": "smartBCHTest", "network": "testnet", "rpc": [ - "https://rpc-testnet.smartbch.org" + "https://rpc-testnet.smartbch.org", + "https://smartbch.devops.cash/testnet" ], "faucets": [], "nativeCurrency": { From f976d2ef66b265e0f597c05932fac902e970601a Mon Sep 17 00:00:00 2001 From: Frederik Bolding Date: Sat, 23 Oct 2021 10:12:23 +0200 Subject: [PATCH 46/99] Add ASK chain (#507) --- _data/chains/eip155-222.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 _data/chains/eip155-222.json diff --git a/_data/chains/eip155-222.json b/_data/chains/eip155-222.json new file mode 100644 index 00000000..15ed32eb --- /dev/null +++ b/_data/chains/eip155-222.json @@ -0,0 +1,19 @@ +{ + "name": "Permission", + "chain": "ASK", + "network": "ASK", + "rpc": [ + "https://blockchain-api-mainnet.permission.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "ASK", + "symbol": "ASK", + "decimals": 18 + }, + "infoURL": "https://permission.io/", + "shortName": "ASK", + "chainId": 222, + "networkId": 2221, + "slip44": 2221 +} From 308c79c8a0cf02184480d1ad1d93341c01577374 Mon Sep 17 00:00:00 2001 From: MJewzk <73270528+MJewzk@users.noreply.github.com> Date: Sat, 23 Oct 2021 16:16:31 +0800 Subject: [PATCH 47/99] Add Ecoball Mainnet and Testnet (#508) --- _data/chains/eip155-2100.json | 23 +++++++++++++++++++++++ _data/chains/eip155-2101.json | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 _data/chains/eip155-2100.json create mode 100644 _data/chains/eip155-2101.json diff --git a/_data/chains/eip155-2100.json b/_data/chains/eip155-2100.json new file mode 100644 index 00000000..8926900f --- /dev/null +++ b/_data/chains/eip155-2100.json @@ -0,0 +1,23 @@ +{ + "name": "Ecoball Mainnet", + "chain": "ECO", + "network": "mainnet", + "rpc": [ + "https://api.ecoball.org/ecoball/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ecoball Coin", + "symbol": "ECO", + "decimals": 18 + }, + "infoURL": "https://ecoball.org", + "shortName": "eco", + "chainId": 2100, + "networkId": 2100, + "explorers": [{ + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org/", + "standard": "EIP3091" + }] +} diff --git a/_data/chains/eip155-2101.json b/_data/chains/eip155-2101.json new file mode 100644 index 00000000..a9d9cf77 --- /dev/null +++ b/_data/chains/eip155-2101.json @@ -0,0 +1,23 @@ +{ + "name": "Ecoball Testnet Espuma", + "chain": "ECO", + "network": "espuma", + "rpc": [ + "https://api.ecoball.org/espuma/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Espuma Coin", + "symbol": "ECO", + "decimals": 18 + }, + "infoURL": "https://ecoball.org", + "shortName": "esp", + "chainId": 2101, + "networkId": 2101, + "explorers": [{ + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org/", + "standard": "EIP3091" + }] +} From 5371467844aff8435dbcdafc4ba924725d70b19e Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Wed, 27 Oct 2021 12:59:38 +0100 Subject: [PATCH 48/99] Corrected RPC url for slock.it and added etherscan block explorer (#516) * Corrected RPC url for slock.it and added etherscan block explorer * Corrected RPC url for slock.it and added etherscan block explorer * Update _data/chains/eip155-5.json Co-authored-by: ligi --- _data/chains/eip155-5.json | 60 +++++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 26 deletions(-) diff --git a/_data/chains/eip155-5.json b/_data/chains/eip155-5.json index 8546b535..f19ffe39 100644 --- a/_data/chains/eip155-5.json +++ b/_data/chains/eip155-5.json @@ -1,26 +1,34 @@ -{ - "name": "Ethereum Testnet Görli", - "chain": "ETH", - "network": "goerli", - "rpc": [ - "https://rpc.goerli.mudit.blog/", - "https://rpc.slock.it/goerli ", - "https://goerli.prylabs.net/" - ], - "faucets": [ - "https://goerli-faucet.slock.it/?address=${ADDRESS}", - "https://faucet.goerli.mudit.blog" - ], - "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", - "decimals": 18 - }, - "infoURL": "https://goerli.net/#about", - "shortName": "gor", - "chainId": 5, - "networkId": 5, - "ens": { - "registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010" - } -} +{ + "name": "Ethereum Testnet Görli", + "chain": "ETH", + "network": "goerli", + "rpc": [ + "https://rpc.goerli.mudit.blog/", + "https://rpc.slock.it/goerli", + + "https://goerli.prylabs.net/" + ], + "faucets": [ + "https://goerli-faucet.slock.it/?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "nativeCurrency": { + "name": "Görli Ether", + "symbol": "GOR", + "decimals": 18 + }, + "infoURL": "https://goerli.net/#about", + "shortName": "gor", + "chainId": 5, + "networkId": 5, + "ens": { + "registry":"0x112234455c3a32fd11230c42e7bccd4a84e02010" + }, + "explorers": [ + { + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" + } + ] +} From b5cadd62994b9beb128ab78cb31de178e1ee1deb Mon Sep 17 00:00:00 2001 From: Elixir <61958762+elixirevo@users.noreply.github.com> Date: Fri, 29 Oct 2021 18:45:48 +0900 Subject: [PATCH 49/99] Add Popcateum Mainnet (#517) * Add Popcateum Network * Add Popcateum icon --- _data/chains/eip155-1213.json | 25 +++++++++++++++++++++++++ _data/icons/popcateum.json | 8 ++++++++ 2 files changed, 33 insertions(+) create mode 100644 _data/chains/eip155-1213.json create mode 100644 _data/icons/popcateum.json diff --git a/_data/chains/eip155-1213.json b/_data/chains/eip155-1213.json new file mode 100644 index 00000000..027ae172 --- /dev/null +++ b/_data/chains/eip155-1213.json @@ -0,0 +1,25 @@ +{ + "name": "Popcateum Mainnet", + "chain": "POPCATEUM", + "network": "mainnet", + "rpc": [ + "https://dataseed.popcateum.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Popcat", + "symbol": "POP", + "decimals": 18 + }, + "infoURL": "https://popcateum.org", + "shortName": "popcat", + "chainId": 1213, + "networkId": 1213, + "explorers": [ + { + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/icons/popcateum.json b/_data/icons/popcateum.json new file mode 100644 index 00000000..56eb135a --- /dev/null +++ b/_data/icons/popcateum.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmQfFqmCxRU1ZWcBC2A2JX2Ejh5ar6GHAj6mKhTYQgLpjV", + "width": 2600, + "height": 2600, + "format": "png" + } +] \ No newline at end of file From c68782d336dd8febe27435c8b317433fe7cb28a0 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 30 Oct 2021 02:47:15 +0800 Subject: [PATCH 50/99] add bittorrent chain testnet (#520) * add bittorrent chain testnet * add standard * remove icon field and rename short name. * Rename eip155-1028 to eip155-1028.json --- _data/chains/eip155-1028.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-1028.json diff --git a/_data/chains/eip155-1028.json b/_data/chains/eip155-1028.json new file mode 100644 index 00000000..57a3255e --- /dev/null +++ b/_data/chains/eip155-1028.json @@ -0,0 +1,23 @@ +{ + "name": "BitTorrent Chain Testnet", + "chain": "BTTC", + "network": "testnet", + "rpc": [ + "https://testrpc.bittorrentchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "infoURL": "https://bittorrentchain.io/", + "shortName": "tbtt", + "chainId": 1028, + "networkId": 1028, + "explorers": [{ + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io/", + "standard": "none" + }] +} From ef9459afd403196cc9694a5a806146be2c493423 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 30 Oct 2021 02:51:12 +0800 Subject: [PATCH 51/99] add bittorrent chain mainnet (#519) * add bittorrent chain mainnet * add standard field * remove icon field --- _data/chains/eip155-199.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-199.json diff --git a/_data/chains/eip155-199.json b/_data/chains/eip155-199.json new file mode 100644 index 00000000..22d77fce --- /dev/null +++ b/_data/chains/eip155-199.json @@ -0,0 +1,23 @@ +{ + "name": "BitTorrent Chain Mainnet", + "chain": "BTTC", + "network": "mainnet", + "rpc": [ + "https://rpc.bittorrentchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "infoURL": "https://bittorrentchain.io/", + "shortName": "BTT", + "chainId": 199, + "networkId": 199, + "explorers": [{ + "name": "bttcscan", + "url": "https://scan.bittorrentchain.io/", + "standard": "none" + }] +} From b46de65044bb2901547b3e116b39354d3eca97f7 Mon Sep 17 00:00:00 2001 From: ligi Date: Sat, 30 Oct 2021 01:01:27 +0200 Subject: [PATCH 52/99] Revert "Create MITRA_ETH (#481)" (#523) This reverts commit 673f2a745a062bc7b2c0873a07525ebb7e030bb9. --- MITRA_ETH | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 MITRA_ETH diff --git a/MITRA_ETH b/MITRA_ETH deleted file mode 100644 index 70b35cf8..00000000 --- a/MITRA_ETH +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "MITRA_ETH", - "chain": "ETH", - "network": "mainnet", - "rpc": [ - "https://mainnet.infura.io/v3/b7927146d78c4a61ae49d0604c7f6344", - "https://api.mycryptoapi.com/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "MITRA", - "symbol": "MITRA", - "decimals": 8 - }, - "infoURL": "https://ethereum.org", - "shortName": "eth", - "chainId": 1, - "networkId": 1, - "icon": "ethereum", - "explorers": [{ - "name": "etherscan", - "url": "https://etherscan.io", - "icon": "etherscan", - "standard": "EIP3091" - }] -} From c7b49c586764aaf0e0af7fab0e44b7ee6134a904 Mon Sep 17 00:00:00 2001 From: ligi Date: Sat, 30 Oct 2021 01:44:58 +0200 Subject: [PATCH 53/99] Create .nojekyll file to make sure github picks index.html (#524) --- src/main/kotlin/org/ethereum/lists/chains/Main.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/org/ethereum/lists/chains/Main.kt b/src/main/kotlin/org/ethereum/lists/chains/Main.kt index 73d8a0c5..b0caef1b 100644 --- a/src/main/kotlin/org/ethereum/lists/chains/Main.kt +++ b/src/main/kotlin/org/ethereum/lists/chains/Main.kt @@ -77,6 +77,7 @@ private fun createOutputFiles() { """.trimIndent() ) + File(buildPath, ".nojekyll").createNewFile() File(buildPath, "CNAME").writeText("chainid.network") } From 6be5dcbf3eca0da3f30dc5ef659baa9eb2a96647 Mon Sep 17 00:00:00 2001 From: Benjamin Tang <91418037+benjamintangzzz@users.noreply.github.com> Date: Sat, 30 Oct 2021 17:17:38 +0700 Subject: [PATCH 54/99] added: lucky network mainnet (#526) --- _data/chains/eip155-998.json | 33 +++++++++++++++++++++++++++++++++ _data/icons/lucky.json | 8 ++++++++ 2 files changed, 41 insertions(+) create mode 100644 _data/chains/eip155-998.json create mode 100644 _data/icons/lucky.json diff --git a/_data/chains/eip155-998.json b/_data/chains/eip155-998.json new file mode 100644 index 00000000..2d6d0d3e --- /dev/null +++ b/_data/chains/eip155-998.json @@ -0,0 +1,33 @@ +{ + "name": "Lucky Network", + "chain": "LN", + "network": "mainnet", + "rpc": [ + "https://rpc.luckynetwork.org", + "wss://ws.lnscan.org", + "https://rpc.lnscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lucky", + "symbol": "L99", + "decimals": 18 + }, + "infoURL": "https://luckynetwork.org", + "shortName": "ln", + "chainId": 998, + "networkId": 998, + "icon": "lucky", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" + }, + { + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" + } + ] +} diff --git a/_data/icons/lucky.json b/_data/icons/lucky.json new file mode 100644 index 00000000..96f5edff --- /dev/null +++ b/_data/icons/lucky.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://bafkreidmvcd5i7touug55hj45mf2pgabxamy5fziva7mtx5n664s3yap6m", + "width":205, + "height":28, + "format":"png" + } +] From 16b57b89c3c5bb4255e54418377935e4691ff0a2 Mon Sep 17 00:00:00 2001 From: rolik2001 Date: Sat, 30 Oct 2021 12:54:27 +0200 Subject: [PATCH 55/99] Create eip155-55.json (#527) --- _data/chains/eip155-55.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _data/chains/eip155-55.json diff --git a/_data/chains/eip155-55.json b/_data/chains/eip155-55.json new file mode 100644 index 00000000..fce54c1b --- /dev/null +++ b/_data/chains/eip155-55.json @@ -0,0 +1,28 @@ +{ + "name": "Zyx Mainnet", + "chain": "ZYX", + "network": "mainnet", + "rpc": [ + "https://rpc-1.zyx.network/", + "https://rpc-2.zyx.network/", + "https://rpc-3.zyx.network/", + "https://rpc-4.zyx.network/", + "https://rpc-5.zyx.network/", + "https://rpc-6.zyx.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zyx", + "symbol": "ZYX", + "decimals": 18 + }, + "infoURL": "https://zyx.network/", + "shortName": "ZYX", + "chainId": 55, + "networkId": 55, + "explorers": [{ + "name": "zyxscan", + "url": "https://zyxscan.com/", + "standard": "none" + }] +} From e46be47cdcf2ed221b161cd32da3cdc910c5aee3 Mon Sep 17 00:00:00 2001 From: Frank Date: Sat, 30 Oct 2021 21:56:23 +1100 Subject: [PATCH 56/99] Add Ambros Chain Mainnet and Testnet (#518) * Add Ambros Chain * add 8888 * update standard * update shortname --- _data/chains/eip155-880.json | 23 +++++++++++++++++++++++ _data/chains/eip155-8888.json | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 _data/chains/eip155-880.json create mode 100644 _data/chains/eip155-8888.json diff --git a/_data/chains/eip155-880.json b/_data/chains/eip155-880.json new file mode 100644 index 00000000..62154f60 --- /dev/null +++ b/_data/chains/eip155-880.json @@ -0,0 +1,23 @@ +{ + "name": "Ambros Chain Mainnet", + "chain": "ambroschain", + "network": "mainnet", + "rpc": [ + "https://mainnet.ambroschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "AMBROS", + "symbol": "AMBR", + "decimals": 18 + }, + "infoURL": "https://bcmhunt.com/", + "shortName": "ambros", + "chainId": 880, + "networkId": 880, + "explorers": [{ + "name": "Ambros Chain Explorer", + "url": "https://explorer.ambroschain.com", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-8888.json b/_data/chains/eip155-8888.json new file mode 100644 index 00000000..eaf86bdc --- /dev/null +++ b/_data/chains/eip155-8888.json @@ -0,0 +1,23 @@ +{ + "name": "Ambros Chain Testnet", + "chain": "ambroschain", + "network": "testnet", + "rpc": [ + "https://testnet.ambroschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "AMBROS", + "symbol": "AMBR", + "decimals": 18 + }, + "infoURL": "https://bcmhunt.com/", + "shortName": "ambrostestnet", + "chainId": 8888, + "networkId": 8888, + "explorers": [{ + "name": "Ambros Chain Explorer", + "url": "https://testexplorer.ambroschain.com", + "standard": "none" + }] +} From 45635a60f90f52415de1433c89a9675595241866 Mon Sep 17 00:00:00 2001 From: jet86 Date: Tue, 2 Nov 2021 00:15:30 +1100 Subject: [PATCH 57/99] Create Boba Network (#528) * Create Boba Network Mainnet * Create Boba Network Rinkeby --- _data/chains/eip155-28.json | 27 +++++++++++++++++++++++++++ _data/chains/eip155-288.json | 27 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 _data/chains/eip155-28.json create mode 100644 _data/chains/eip155-288.json diff --git a/_data/chains/eip155-28.json b/_data/chains/eip155-28.json new file mode 100644 index 00000000..e41e93fe --- /dev/null +++ b/_data/chains/eip155-28.json @@ -0,0 +1,27 @@ +{ + "name": "Boba Network Rinkeby Testnet", + "chain": "ETH", + "network": "rinkeby", + "rpc": ["https://rinkeby.boba.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba Rinkeby", + "chainId": 28, + "networkId": 28, + + "explorers": [{ + "name": "Blockscout", + "url": "https://blockexplorer.rinkeby.boba.network/", + "standard": "none" + }], + "parent": { + "type" : "L2", + "chain": "eip155-4", + "bridges": [ {"url":"https://gateway.rinkeby.boba.network"} ] + } +} diff --git a/_data/chains/eip155-288.json b/_data/chains/eip155-288.json new file mode 100644 index 00000000..39156bb8 --- /dev/null +++ b/_data/chains/eip155-288.json @@ -0,0 +1,27 @@ +{ + "name": "Boba Network", + "chain": "ETH", + "network": "mainnet", + "rpc": ["https://mainnet.boba.network/"], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba", + "chainId": 288, + "networkId": 288, + + "explorers": [{ + "name": "Blockscout", + "url": "https://blockexplorer.boba.network/", + "standard": "none" + }], + "parent": { + "type" : "L2", + "chain": "eip155-1", + "bridges": [ {"url":"https://gateway.boba.network"} ] + } +} From 85f31ea9e4efb04ab2af114c8aad1076a9d0a4df Mon Sep 17 00:00:00 2001 From: alliswell <45843736+benbaley@users.noreply.github.com> Date: Tue, 2 Nov 2021 10:13:36 +0800 Subject: [PATCH 58/99] added: Alaya&PlatON testnet (#529) * added: Alaya&PlatON testnet * add faucets * update explorer url" --- _data/chains/eip155-201030.json | 29 +++++++++++++++++++++++++++++ _data/chains/eip155-210309.json | 29 +++++++++++++++++++++++++++++ _data/icons/alaya.json | 8 ++++++++ _data/icons/platon.json | 8 ++++++++ 4 files changed, 74 insertions(+) create mode 100644 _data/chains/eip155-201030.json create mode 100644 _data/chains/eip155-210309.json create mode 100644 _data/icons/alaya.json create mode 100644 _data/icons/platon.json diff --git a/_data/chains/eip155-201030.json b/_data/chains/eip155-201030.json new file mode 100644 index 00000000..9892acc3 --- /dev/null +++ b/_data/chains/eip155-201030.json @@ -0,0 +1,29 @@ +{ + "name": "Alaya Dev Testnet", + "chain": "Alaya", + "network": "testnet", + "rpc": [ + "https://devnetopenapi.alaya.network/rpc", + "wss://devnetopenapi.alaya.network/ws" + ], + "faucets": [ + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + ], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alaya", + "chainId": 201030, + "networkId": 1, + "icon": "alaya", + "explorers": [ + { + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/chains/eip155-210309.json b/_data/chains/eip155-210309.json new file mode 100644 index 00000000..83dfb8fb --- /dev/null +++ b/_data/chains/eip155-210309.json @@ -0,0 +1,29 @@ +{ + "name": "PlatON Dev Testnet", + "chain": "PlatON", + "network": "testnet", + "rpc": [ + "https://devnetopenapi.platon.network/rpc", + "wss://devnetopenapi.platon.network/ws" + ], + "faucets": [ + "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" + ], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "PlatON", + "chainId": 210309, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://devnetscan.platon.network/", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/icons/alaya.json b/_data/icons/alaya.json new file mode 100644 index 00000000..d3c953c2 --- /dev/null +++ b/_data/icons/alaya.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://Qmci6vPcWAwmq19j98yuQxjV6UPzHtThMdCAUDbKeb8oYu", + "width":1140, + "height":1140, + "format":"png" + } +] \ No newline at end of file diff --git a/_data/icons/platon.json b/_data/icons/platon.json new file mode 100644 index 00000000..70f478cc --- /dev/null +++ b/_data/icons/platon.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmT7PSXBiVBma6E15hNkivmstqLu3JSnG1jXN5pTmcCGRC", + "width":200, + "height":200, + "format":"png" + } +] \ No newline at end of file From 8ebc4e5859f6e1da838da2e6dbda81986d316897 Mon Sep 17 00:00:00 2001 From: SeeleN <54703084+lkbtboy@users.noreply.github.com> Date: Wed, 3 Nov 2021 21:33:14 +0800 Subject: [PATCH 59/99] Create eip155-186.json (#534) Create eip155-186 for seele network --- _data/chains/eip155-186.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-186.json diff --git a/_data/chains/eip155-186.json b/_data/chains/eip155-186.json new file mode 100644 index 00000000..1957ae72 --- /dev/null +++ b/_data/chains/eip155-186.json @@ -0,0 +1,23 @@ +{ + "name": "Seele Mainnet", + "chain": "Seele", + "network": "mainnet", + "rpc": [ + "https://rpc.seelen.pro/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Seele", + "symbol": "Seele", + "decimals": 18 + }, + "infoURL": "https://seelen.pro/", + "shortName": "Seele", + "chainId": 186, + "networkId": 186, + "explorers": [{ + "name": "seeleview", + "url": "https://seeleview.net/", + "standard": "none" + }] +} From b85fcbf761e9feeb1d5328e1c9b010029c7840e7 Mon Sep 17 00:00:00 2001 From: f4nzkrys31 <87927930+f4nzkrys31@users.noreply.github.com> Date: Wed, 3 Nov 2021 22:49:43 +0800 Subject: [PATCH 60/99] Add HALO Network mainnet (#401) * Add HALO Network mainnet * Add HALO Network Mainnet Hi Thanks. * Add HALO Mainnet * Delete CAIP-2.json * Update eip155-1280.json * Update _data/chains/eip155-1280.json * Update _data/chains/eip155-1280.json * Update eip155-1280.json hi, i had removed the explorer. * Update eip155-1280.json i hope it is correct now * Update eip155-1280.json * Update eip155-1280.json * Update _data/chains/eip155-1280.json * Update _data/chains/eip155-1280.json Co-authored-by: ligi --- _data/chains/eip155-1280.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _data/chains/eip155-1280.json diff --git a/_data/chains/eip155-1280.json b/_data/chains/eip155-1280.json new file mode 100644 index 00000000..dc6de1aa --- /dev/null +++ b/_data/chains/eip155-1280.json @@ -0,0 +1,24 @@ +{ + "name": "HALO Mainnet", + "chain": "HALO", + "network": "mainnet", + "rpc": [ + "https://https://nodes.halo.land" + ], + "faucets": [ + ], + "nativeCurrency": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "infoURL": "https://halo.land/#/", + "shortName": "HO", + "chainId": 1280, + "networkId": 1280, + "explorers": [{ + "name": "HALOexplorer", + "url": "https://browser.halo.land/", + "standard": "none" + }] +} From 7c83beda572e6abef4a0c144207477b8b7d632f2 Mon Sep 17 00:00:00 2001 From: shibachain <93488903+shibachain@users.noreply.github.com> Date: Mon, 8 Nov 2021 00:24:11 +0700 Subject: [PATCH 61/99] add shibachain (#541) * add shibachain * update exploror * fix typo * change standard to None Co-authored-by: Akita Inu --- _data/chains/eip155-27.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-27.json diff --git a/_data/chains/eip155-27.json b/_data/chains/eip155-27.json new file mode 100644 index 00000000..7aa0ff28 --- /dev/null +++ b/_data/chains/eip155-27.json @@ -0,0 +1,23 @@ +{ + "name": "ShibaChain", + "chain": "SHIB", + "network": "mainnet", + "rpc": [ + "https://rpc.shibachain.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "SHIBA INU COIN", + "symbol": "SHIB", + "decimals": 18 + }, + "infoURL": "https://www.shibachain.net", + "shortName": "shib", + "chainId": 27, + "networkId": 27, + "explorers": [{ + "name": "Shiba Explorer", + "url": "https://exp.shibachain.net/", + "standard": "none" + }] +} From 646ff3b612ca03a0ed8355963d52fae793d944e8 Mon Sep 17 00:00:00 2001 From: Calvin Lau <38898718+calvinaco@users.noreply.github.com> Date: Mon, 8 Nov 2021 15:44:23 +0800 Subject: [PATCH 62/99] Add Cronos mainnet beta and Update testnet (#546) --- _data/chains/eip155-25.json | 23 +++++++++++++++++++++++ _data/chains/eip155-338.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 _data/chains/eip155-25.json diff --git a/_data/chains/eip155-25.json b/_data/chains/eip155-25.json new file mode 100644 index 00000000..f2e856b7 --- /dev/null +++ b/_data/chains/eip155-25.json @@ -0,0 +1,23 @@ +{ + "name": "Cronos Mainnet Beta", + "chain": "CRO", + "network": "mainnet", + "rpc": [ + "https://evm-cronos.crypto.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crypto.org Coin", + "symbol": "CRO", + "decimals": 18 + }, + "infoURL": "https://cronos.crypto.org", + "shortName": "cro", + "chainId": 25, + "networkId": 25, + "explorers": [{ + "name": "Cronos Explorer", + "url": "https://cronos.crypto.org/explorer", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-338.json b/_data/chains/eip155-338.json index f9583f60..568eeaed 100644 --- a/_data/chains/eip155-338.json +++ b/_data/chains/eip155-338.json @@ -20,7 +20,7 @@ "networkId": 338, "explorers": [{ "name": "Cronos Testnet Explorer", - "url": "https://cronos.crypto.org/explorer", + "url": "https://cronos.crypto.org/explorer/testnet3", "standard": "none" }] } From d65dc6b3da8422c9b342e3c34baacedf080b955a Mon Sep 17 00:00:00 2001 From: Nan Thanwa Date: Mon, 8 Nov 2021 14:49:23 +0700 Subject: [PATCH 63/99] Update explorer on Avalanche (#539) --- _data/chains/eip155-43113.json | 9 ++++++++- _data/chains/eip155-43114.json | 12 +++++++----- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/_data/chains/eip155-43113.json b/_data/chains/eip155-43113.json index 290c0f68..1169719f 100644 --- a/_data/chains/eip155-43113.json +++ b/_data/chains/eip155-43113.json @@ -16,5 +16,12 @@ "infoURL": "https://cchain.explorer.avax-test.network", "shortName": "Fuji", "chainId": 43113, - "networkId": 1 + "networkId": 1, + "explorers": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io/", + "standard": "EIP3091" + } + ] } diff --git a/_data/chains/eip155-43114.json b/_data/chains/eip155-43114.json index 00190f22..fbfd2614 100644 --- a/_data/chains/eip155-43114.json +++ b/_data/chains/eip155-43114.json @@ -16,9 +16,11 @@ "chainId": 43114, "networkId": 43114, "slip44": 9000, - "explorers": [{ - "name": "blockscout", - "url": "https://cchain.explorer.avax.network", - "standard": "none" - }] + "explorers": [ + { + "name": "snowtrace", + "url": "https://snowtrace.io/", + "standard": "EIP3091" + } + ] } From c87ab28513e98d3662b92d420cbe069a2ffe9990 Mon Sep 17 00:00:00 2001 From: Andy Lou Date: Mon, 8 Nov 2021 22:29:12 +0800 Subject: [PATCH 64/99] Add Singularity ZERO Testnet (#540) * Add Singularity ZERO Testnet * Update Singularity faucets * use https on rpc and explorer --- _data/chains/eip155-12051.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _data/chains/eip155-12051.json diff --git a/_data/chains/eip155-12051.json b/_data/chains/eip155-12051.json new file mode 100644 index 00000000..2931a890 --- /dev/null +++ b/_data/chains/eip155-12051.json @@ -0,0 +1,25 @@ +{ + "name": "Singularity ZERO Testnet", + "chain": "ZERO", + "network": "testnet", + "rpc": [ + "https://betaenv.singularity.gold:18545" + ], + "faucets": [ + "https://nft.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "tZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "tZERO", + "chainId": 12051, + "networkId": 12051, + "explorers": [{ + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + }] +} From 9b36e6c94bced645452be7d1422337101fcef08c Mon Sep 17 00:00:00 2001 From: Simon Zhang Date: Tue, 9 Nov 2021 00:32:03 +0800 Subject: [PATCH 65/99] add Meter Testnet, update Meter Mainnet (#538) * update data for Meter Mainnet, add data for Meter Testnet * update shortName to avoid duplicate --- _data/chains/eip155-82.json | 11 +++++++++-- _data/chains/eip155-83.json | 26 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 _data/chains/eip155-83.json diff --git a/_data/chains/eip155-82.json b/_data/chains/eip155-82.json index 8fdf7d9e..ac5a54a6 100644 --- a/_data/chains/eip155-82.json +++ b/_data/chains/eip155-82.json @@ -5,7 +5,9 @@ "rpc": [ "https://rpc.meter.io" ], - "faucets": [], + "faucets": [ + "https://faucet.meter.io" + ], "nativeCurrency": { "name": "Meter", "symbol": "MTR", @@ -14,6 +16,11 @@ "infoURL": "https://www.meter.io", "shortName": "Meter", "chainId": 82, - "networkId": 82 + "networkId": 82, + "explorers": [{ + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + }] } diff --git a/_data/chains/eip155-83.json b/_data/chains/eip155-83.json new file mode 100644 index 00000000..b112c7b4 --- /dev/null +++ b/_data/chains/eip155-83.json @@ -0,0 +1,26 @@ +{ + "name": "Meter Testnet", + "chain": "METER Testnet", + "network": "testnet", + "rpc": [ + "https://rpctest.meter.io" + ], + "faucets": [ + "https://faucet-warringstakes.meter.io" + ], + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "infoURL": "https://www.meter.io", + "shortName": "MeterTest", + "chainId": 83, + "networkId": 83, + "explorers": [{ + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" + }] +} + From 1e5dde3769762eb6a499508a26327c64a0cfcc71 Mon Sep 17 00:00:00 2001 From: Thinkium <67776241+ThinkiumChain@users.noreply.github.com> Date: Tue, 9 Nov 2021 02:02:24 +0800 Subject: [PATCH 66/99] add Thinkium Network (#532) * add Thinkium Network * update Thinkium Network * update Thinkium Network Co-authored-by: gansheng <562979315@qq.com> --- _data/chains/eip155-60000.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-60001.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-60002.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-60103.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-70000.json | 23 +++++++++++++++++++++++ _data/chains/eip155-70001.json | 23 +++++++++++++++++++++++ _data/chains/eip155-70002.json | 23 +++++++++++++++++++++++ _data/chains/eip155-70103.json | 23 +++++++++++++++++++++++ 8 files changed, 192 insertions(+) create mode 100644 _data/chains/eip155-60000.json create mode 100644 _data/chains/eip155-60001.json create mode 100644 _data/chains/eip155-60002.json create mode 100644 _data/chains/eip155-60103.json create mode 100644 _data/chains/eip155-70000.json create mode 100644 _data/chains/eip155-70001.json create mode 100644 _data/chains/eip155-70002.json create mode 100644 _data/chains/eip155-70103.json diff --git a/_data/chains/eip155-60000.json b/_data/chains/eip155-60000.json new file mode 100644 index 00000000..1d398fbb --- /dev/null +++ b/_data/chains/eip155-60000.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 0", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test0", + "chainId": 60000, + "networkId": 60000, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-60001.json b/_data/chains/eip155-60001.json new file mode 100644 index 00000000..14f4bbcd --- /dev/null +++ b/_data/chains/eip155-60001.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 1", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test1.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test1", + "chainId": 60001, + "networkId": 60001, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-60002.json b/_data/chains/eip155-60002.json new file mode 100644 index 00000000..70dcfdb3 --- /dev/null +++ b/_data/chains/eip155-60002.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 2", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test2.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test2", + "chainId": 60002, + "networkId": 60002, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-60103.json b/_data/chains/eip155-60103.json new file mode 100644 index 00000000..882b532e --- /dev/null +++ b/_data/chains/eip155-60103.json @@ -0,0 +1,25 @@ +{ + "name": "Thinkium Testnet Chain 103", + "chain": "Thinkium", + "network": "testnet", + "rpc": [ + "https://test103.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test103", + "chainId": 60103, + "networkId": 60103, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70000.json b/_data/chains/eip155-70000.json new file mode 100644 index 00000000..d6739e52 --- /dev/null +++ b/_data/chains/eip155-70000.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 0", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM0", + "chainId": 70000, + "networkId": 70000, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70001.json b/_data/chains/eip155-70001.json new file mode 100644 index 00000000..b887132f --- /dev/null +++ b/_data/chains/eip155-70001.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 1", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy1.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM1", + "chainId": 70001, + "networkId": 70001, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70002.json b/_data/chains/eip155-70002.json new file mode 100644 index 00000000..da9569b1 --- /dev/null +++ b/_data/chains/eip155-70002.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 2", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy2.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM2", + "chainId": 70002, + "networkId": 70002, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file diff --git a/_data/chains/eip155-70103.json b/_data/chains/eip155-70103.json new file mode 100644 index 00000000..a63908f7 --- /dev/null +++ b/_data/chains/eip155-70103.json @@ -0,0 +1,23 @@ +{ + "name": "Thinkium Mainnet Chain 103", + "chain": "Thinkium", + "network": "mainnet", + "rpc": [ + "https://proxy103.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM103", + "chainId": 70103, + "networkId": 70103, + "explorers": [{ + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net/", + "standard": "EIP3091" + }] +} \ No newline at end of file From a83d0f40221195de97e36466b17e4d1a3c6b3db8 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 9 Nov 2021 20:30:28 +0100 Subject: [PATCH 67/99] Remove broken RPC endpoint - closes #544 (#549) --- _data/chains/eip155-80001.json | 1 - 1 file changed, 1 deletion(-) diff --git a/_data/chains/eip155-80001.json b/_data/chains/eip155-80001.json index 3789d8e9..7d73f909 100644 --- a/_data/chains/eip155-80001.json +++ b/_data/chains/eip155-80001.json @@ -3,7 +3,6 @@ "chain": "Polygon", "network": "testnet", "rpc": [ - "https://rpc-mumbai.matic.today", "https://matic-mumbai.chainstacklabs.com", "https://rpc-mumbai.maticvigil.com", "https://matic-testnet-archive-rpc.bwarelabs.com" From 5d3d2fc7025aa2c1b3ed393610e273a2ac66f062 Mon Sep 17 00:00:00 2001 From: Reggie <92185630+blockchainreg@users.noreply.github.com> Date: Wed, 10 Nov 2021 04:14:57 -0800 Subject: [PATCH 68/99] Adding Hazlor Smart Chain (#550) * Adding Hazlor Smart Chain * Updated RPC Url --- _data/chains/eip155-7878.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 _data/chains/eip155-7878.json diff --git a/_data/chains/eip155-7878.json b/_data/chains/eip155-7878.json new file mode 100644 index 00000000..087c3942 --- /dev/null +++ b/_data/chains/eip155-7878.json @@ -0,0 +1,23 @@ +{ + "name": "Hazlor Testnet", + "chain": "Hazlor", + "network": "testnet", + "rpc": ["http://hatlas.rpc.hazlor.com:8545/"], + "faucets": ["https://faucet.hazlor.com"], + "nativeCurrency": { + "name": "Planet", + "symbol": "PLANET", + "decimals": 18 + }, + "infoURL": "https://hazlor.com", + "shortName": "hazlor-hatlas", + "chainId": 7878, + "networkId": 7878, + "explorers": [ + { + "name": "Hazlor Explorer ", + "url": "https://explorer.hazlor.com", + "standard": "none" + } + ] +} From c51df25fbf369875062847a916711da485fef354 Mon Sep 17 00:00:00 2001 From: Jesse Schulman Date: Thu, 11 Nov 2021 06:13:56 -0800 Subject: [PATCH 69/99] Add explorer to Telos EVM Mainnet (#556) --- _data/chains/eip155-40.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_data/chains/eip155-40.json b/_data/chains/eip155-40.json index d58e4bb4..a84af434 100644 --- a/_data/chains/eip155-40.json +++ b/_data/chains/eip155-40.json @@ -15,5 +15,10 @@ "infoURL": "https://telos.net", "shortName": "Telos EVM", "chainId": 40, - "networkId": 40 + "networkId": 40, + "explorers": [{ + "name": "teloscan", + "url": "https://teloscan.io", + "standard": "EIP3091" + }] } From bd6d31659cc7ccf38653500d04c66b176d4c9d5c Mon Sep 17 00:00:00 2001 From: Christiaan van Steenbergen Date: Thu, 11 Nov 2021 16:07:40 +0100 Subject: [PATCH 70/99] Adding NEXT Smart Chain (#557) Co-authored-by: Christiaan van Steenbergen --- _data/chains/eip155-96.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _data/chains/eip155-96.json diff --git a/_data/chains/eip155-96.json b/_data/chains/eip155-96.json new file mode 100644 index 00000000..4009b35e --- /dev/null +++ b/_data/chains/eip155-96.json @@ -0,0 +1,25 @@ +{ + "name": "NEXT Smart Chain", + "chain": "NSC", + "network": "mainnet", + "rpc": [ + "https://rpc.nextsmartchain.com" + ], + "faucets": [ + "https://faucet.nextsmartchain.com" + ], + "nativeCurrency": { + "name": "NEXT", + "symbol": "NEXT", + "decimals": 18 + }, + "infoURL": "https://www.nextsmartchain.com/", + "shortName": "nsc", + "chainId": 96, + "networkId": 96, + "explorers": [{ + "name": "Next Smart Chain Explorer", + "url": "https://explorer.nextsmartchain.com", + "standard": "none" + }] +} From 42ed21a3259384006cf5a33de14f0ee23c284e36 Mon Sep 17 00:00:00 2001 From: f4nzkrys31 <87927930+f4nzkrys31@users.noreply.github.com> Date: Fri, 12 Nov 2021 23:34:15 +0800 Subject: [PATCH 71/99] Update eip155-1280.json (#558) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hi, previous RPC was typo with doubled HTTPS, updated with correct RPC. PLease help to merge.Thanks! --- _data/chains/eip155-1280.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-1280.json b/_data/chains/eip155-1280.json index dc6de1aa..abbcba7e 100644 --- a/_data/chains/eip155-1280.json +++ b/_data/chains/eip155-1280.json @@ -3,7 +3,7 @@ "chain": "HALO", "network": "mainnet", "rpc": [ - "https://https://nodes.halo.land" + "https://nodes.halo.land" ], "faucets": [ ], From d99bef534e4ba6acebc77d3e67a23dbcc3708455 Mon Sep 17 00:00:00 2001 From: GimluCom <79271880+GimluCom@users.noreply.github.com> Date: Fri, 12 Nov 2021 22:35:00 +0100 Subject: [PATCH 72/99] Fixed wrong symbols on POA and Sokol (#559) * Fixed Sokol symbol * Fixed POA symbol --- _data/chains/eip155-77.json | 4 ++-- _data/chains/eip155-99.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/chains/eip155-77.json b/_data/chains/eip155-77.json index 53a87995..da0e7f5c 100644 --- a/_data/chains/eip155-77.json +++ b/_data/chains/eip155-77.json @@ -12,11 +12,11 @@ ], "nativeCurrency": { "name": "POA Sokol Ether", - "symbol": "POA", + "symbol": "SKL", "decimals": 18 }, "infoURL": "https://poa.network", - "shortName": "poa", + "shortName": "skl", "chainId": 77, "networkId": 77, diff --git a/_data/chains/eip155-99.json b/_data/chains/eip155-99.json index f89082d1..6608a125 100644 --- a/_data/chains/eip155-99.json +++ b/_data/chains/eip155-99.json @@ -11,11 +11,11 @@ "faucets": [], "nativeCurrency": { "name": "POA Network Core Ether", - "symbol": "SKL", + "symbol": "POA", "decimals": 18 }, "infoURL": "https://poa.network", - "shortName": "skl", + "shortName": "poa", "chainId": 99, "networkId": 99, "slip44": 178, @@ -24,4 +24,4 @@ "url": "https://blockscout.com/poa/core", "standard": "none" }] -} \ No newline at end of file +} From caaeeed48ed791c57dd65acd1ed8d778c9becc64 Mon Sep 17 00:00:00 2001 From: Prajjwol Gautam Date: Mon, 15 Nov 2021 03:42:35 -0800 Subject: [PATCH 73/99] Update evmos testnet rpc url (#561) * evmos rpc url * Update rpc url evmos (#1) * Update evmos testnet rpc url to `*.evmos.dev` Co-authored-by: jolube <64335177+jolube@users.noreply.github.com> --- _data/chains/eip155-9000.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-9000.json b/_data/chains/eip155-9000.json index bd38e168..de7ce6a8 100644 --- a/_data/chains/eip155-9000.json +++ b/_data/chains/eip155-9000.json @@ -2,7 +2,7 @@ "name": "Evmos Testnet", "chain": "Evmos", "network": "testnet", - "rpc": ["http://arsiamons.rpc.evmos.org:8545/"], + "rpc": ["https://ethereum.rpc.evmos.dev"], "faucets": ["https://faucet.evmos.org"], "nativeCurrency": { "name": "Photon", From 0201dba10baf5b8b1434a50b3344c4b447c5cc8c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Nov 2021 10:01:35 +0100 Subject: [PATCH 74/99] Bump KOTLIN_VERSION from 1.5.31 to 1.6.0 (#563) Bumps `KOTLIN_VERSION` from 1.5.31 to 1.6.0. Updates `kotlin-gradle-plugin` from 1.5.31 to 1.6.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/commits) Updates `kotlin-stdlib` from 1.5.31 to 1.6.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/commits) Updates `kotlin-test` from 1.5.31 to 1.6.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/commits) Updates `kotlin-test-junit` from 1.5.31 to 1.6.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/commits) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-test dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-test-junit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index f3ce9a79..cbe4f2a6 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - KOTLIN_VERSION = "1.5.31" + KOTLIN_VERSION = "1.6.0" KETHEREUM_VERSION = "0.85.3" } From b26975768d467d344f5260194f0d1fe222e9bf00 Mon Sep 17 00:00:00 2001 From: Prajjwol Gautam Date: Tue, 16 Nov 2021 01:20:10 -0800 Subject: [PATCH 75/99] docs: add evmos icon to ipfs (#564) --- _data/icons/evmos.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _data/icons/evmos.json diff --git a/_data/icons/evmos.json b/_data/icons/evmos.json new file mode 100644 index 00000000..fb1292e1 --- /dev/null +++ b/_data/icons/evmos.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmU1avSagPdrjV7YuDc4faj5cjezrdNDjDTohLCyw7fPku", + "width": 1600, + "height": 1600, + "format": "png" + } +] From 02fe5abf32ad5bb9401f080a382422a08e50e9c4 Mon Sep 17 00:00:00 2001 From: Henry Hz Date: Tue, 16 Nov 2021 07:44:28 -0500 Subject: [PATCH 76/99] add fuse spark (#565) --- _data/chains/eip155-123.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-123.json diff --git a/_data/chains/eip155-123.json b/_data/chains/eip155-123.json new file mode 100644 index 00000000..64f46eec --- /dev/null +++ b/_data/chains/eip155-123.json @@ -0,0 +1,18 @@ +{ + "name": "Fuse Sparknet", + "chain": "fuse", + "network": "testnet", + "rpc": [ + "https://rpc.fusespark.io" + ], + "faucets": ["https://get.fusespark.io"], + "nativeCurrency": { + "name": "Spark", + "symbol": "SPARK", + "decimals": 18 + }, + "infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet", + "shortName": "spark", + "chainId": 123, + "networkId": 123 +} From 498ad3e788dd07f4bfe7b69f77551baa88160429 Mon Sep 17 00:00:00 2001 From: ZCore Network <35813800+zcore-coin@users.noreply.github.com> Date: Thu, 18 Nov 2021 20:18:42 -0300 Subject: [PATCH 77/99] Add ZCore Testnet (#567) * Add ZCore Testnet * Fix shortName --- _data/chains/eip155-3331.json | 21 +++++++++++++++++++++ _data/icons/zcore.json | 8 ++++++++ 2 files changed, 29 insertions(+) create mode 100644 _data/chains/eip155-3331.json create mode 100644 _data/icons/zcore.json diff --git a/_data/chains/eip155-3331.json b/_data/chains/eip155-3331.json new file mode 100644 index 00000000..afa0c409 --- /dev/null +++ b/_data/chains/eip155-3331.json @@ -0,0 +1,21 @@ +{ + "name": "ZCore Testnet", + "chain": "Beach", + "network": "testnet", + "icon": "zcore", + "rpc": [ + "https://rpc-testnet.zcore.cash" + ], + "faucets": [ + "https://faucet.zcore.cash" + ], + "nativeCurrency": { + "name": "ZCore", + "symbol": "ZCR", + "decimals": 18 + }, + "infoURL": "https://zcore.cash", + "shortName": "zcrbeach", + "chainId": 3331, + "networkId": 3331 +} diff --git a/_data/icons/zcore.json b/_data/icons/zcore.json new file mode 100644 index 00000000..17a21414 --- /dev/null +++ b/_data/icons/zcore.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmQnXu13ym8W1VA3QxocaNVXGAuEPmamSCkS7bBscVk1f4", + "width":1050, + "height":1050, + "format":"png" + } +] From 229f35d5f04abda706ae077147297d404a93eb8c Mon Sep 17 00:00:00 2001 From: Justin Wesley Date: Sat, 20 Nov 2021 18:39:31 -0700 Subject: [PATCH 78/99] Add Molereum network (#573) --- _data/chains/eip155-6022140761023.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-6022140761023.json diff --git a/_data/chains/eip155-6022140761023.json b/_data/chains/eip155-6022140761023.json new file mode 100644 index 00000000..21bce3a0 --- /dev/null +++ b/_data/chains/eip155-6022140761023.json @@ -0,0 +1,18 @@ +{ + "name": "Molereum Network", + "chain": "ETH", + "network": "molereum", + "rpc": [ + "https://molereum.jdubedition.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Molereum Ether", + "symbol": "MOLE", + "decimals": 18 + }, + "infoURL": "https://github.com/Jdubedition/molereum", + "shortName": "mole", + "chainId": 6022140761023, + "networkId": 6022140761023 +} \ No newline at end of file From c03fa4958c49ab77bbe965af5b70dfb711e06319 Mon Sep 17 00:00:00 2001 From: alpha-omega-labs <88520218+alpha-omega-labs@users.noreply.github.com> Date: Sun, 21 Nov 2021 04:30:38 -0500 Subject: [PATCH 79/99] add Genesis L1 mainnet (#569) * add Genesis L1 mainnet Genesis L1 mainnet launch Nov 19, 2021 * Add Genesis L1 testnet Genesis L1 testnet launch: Nov 19, 2021 * Update eip155-26.json * Update eip155-26.json --- _data/chains/eip155-26.json | 23 +++++++++++++++++++++++ _data/chains/eip155-29.json | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 _data/chains/eip155-26.json create mode 100644 _data/chains/eip155-29.json diff --git a/_data/chains/eip155-26.json b/_data/chains/eip155-26.json new file mode 100644 index 00000000..d618a18d --- /dev/null +++ b/_data/chains/eip155-26.json @@ -0,0 +1,23 @@ +{ + "name": "GenesisL1 testnet", + "chain": "genesis", + "network": "testnet", + "rpc": [ + "https://testrpc.genesisl1.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "L1 testcoin", + "symbol": "L1test", + "decimals": 18 + }, + "infoURL": "https://www.genesisl1.com", + "shortName": "L1test", + "chainId": 26, + "networkId": 26, + "explorers": [{ + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org/", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-29.json b/_data/chains/eip155-29.json new file mode 100644 index 00000000..2fad79cc --- /dev/null +++ b/_data/chains/eip155-29.json @@ -0,0 +1,23 @@ +{ + "name": "GenesisL1", + "chain": "genesis", + "network": "mainnet", + "rpc": [ + "https://rpc.genesisl1.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "L1 coin", + "symbol": "L1", + "decimals": 18 + }, + "infoURL": "https://www.genesisl1.com", + "shortName": "L1", + "chainId": 29, + "networkId": 29, + "explorers": [{ + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org/", + "standard": "none" + }] +} From 73c4c8f237ba5aed92019918ed8dd279525904a1 Mon Sep 17 00:00:00 2001 From: ligi Date: Mon, 22 Nov 2021 16:59:14 +0100 Subject: [PATCH 80/99] Use gradle 7.3 --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a0f7639f..fbce071a 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From db317b5678982e5cf21a6f172bbd5b59fa1c1591 Mon Sep 17 00:00:00 2001 From: alpha-omega-labs <88520218+alpha-omega-labs@users.noreply.github.com> Date: Mon, 22 Nov 2021 11:06:03 -0500 Subject: [PATCH 81/99] Update eip155-29.json (#579) --- _data/chains/eip155-29.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-29.json b/_data/chains/eip155-29.json index 2fad79cc..fe967e40 100644 --- a/_data/chains/eip155-29.json +++ b/_data/chains/eip155-29.json @@ -1,5 +1,5 @@ { - "name": "GenesisL1", + "name": "Genesis L1", "chain": "genesis", "network": "mainnet", "rpc": [ From 805c62d75d5497d814c40573bc3d561e2f5fe73e Mon Sep 17 00:00:00 2001 From: Michele Vitiello Bonaventura <37689698+thedarkknight197@users.noreply.github.com> Date: Mon, 22 Nov 2021 18:13:17 +0100 Subject: [PATCH 82/99] Create eip155-281121.json (#585) * Create eip155-281121.json * remove extra komma Co-authored-by: ligi --- _data/chains/eip155-281121.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 _data/chains/eip155-281121.json diff --git a/_data/chains/eip155-281121.json b/_data/chains/eip155-281121.json new file mode 100644 index 00000000..f82204bb --- /dev/null +++ b/_data/chains/eip155-281121.json @@ -0,0 +1,19 @@ +{ + "name": "Social Smart Chain Mainnet", + "chain": "SoChain", + "network": "mainnet", + "rpc": [ + "https://socialsmartchain.digitalnext.business" + ], + "faucets": [], + "nativeCurrency": { + "name": "SoChain", + "symbol": "$OC", + "decimals": 18 + }, + "infoURL": "https://digitalnext.business/SocialSmartChain", + "shortName": "SoChain", + "chainId": 281121, + "networkId": 281121, + "explorers": [] +} From ff07475ed6245052ecd0e10cdbf93268ce46b751 Mon Sep 17 00:00:00 2001 From: alpha-omega-labs <88520218+alpha-omega-labs@users.noreply.github.com> Date: Mon, 22 Nov 2021 12:47:04 -0500 Subject: [PATCH 83/99] Update eip155-26.json (#580) --- _data/chains/eip155-26.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-26.json b/_data/chains/eip155-26.json index d618a18d..ee59059a 100644 --- a/_data/chains/eip155-26.json +++ b/_data/chains/eip155-26.json @@ -1,5 +1,5 @@ { - "name": "GenesisL1 testnet", + "name": "Genesis L1 testnet", "chain": "genesis", "network": "testnet", "rpc": [ From 075fdcf624d09ad64c22bae29c122d883fa01938 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Nov 2021 21:16:21 +0100 Subject: [PATCH 84/99] Bump okhttp from 4.9.2 to 4.9.3 (#586) Bumps [okhttp](https://github.com/square/okhttp) from 4.9.2 to 4.9.3. - [Release notes](https://github.com/square/okhttp/releases) - [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okhttp/compare/parent-4.9.2...parent-4.9.3) --- updated-dependencies: - dependency-name: com.squareup.okhttp3:okhttp dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index cbe4f2a6..096b3e75 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ dependencies { implementation 'com.beust:klaxon:5.5' implementation 'com.squareup.moshi:moshi-kotlin:1.12.0' - implementation 'com.squareup.okhttp3:okhttp:4.9.2' + implementation 'com.squareup.okhttp3:okhttp:4.9.3' testImplementation "org.jetbrains.kotlin:kotlin-test:${KOTLIN_VERSION}" testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN_VERSION}" From 351d0f6f8f42ee322ea42e8ff16908c9e1fdb821 Mon Sep 17 00:00:00 2001 From: Pavel Sinelnikov Date: Tue, 23 Nov 2021 16:46:23 -0500 Subject: [PATCH 85/99] Add Metis Mainnet (#590) --- _data/chains/eip155-1088.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 _data/chains/eip155-1088.json diff --git a/_data/chains/eip155-1088.json b/_data/chains/eip155-1088.json new file mode 100644 index 00000000..f91b4f69 --- /dev/null +++ b/_data/chains/eip155-1088.json @@ -0,0 +1,22 @@ +{ + "name": "Metis", + "chain": "METIS", + "network": "mainnet", + "rpc": ["https://andromeda.metis.io/?owner=1088"], + "faucets": [], + "nativeCurrency": { + "name": "Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis", + "chainId": 1088, + "networkId": 1088, + + "explorers": [{ + "name": "blockscan", + "url": "https://andromeda-explorer.metis.io/", + "standard": "none" + }] +} From 58131d254a2aecb95a75b7a3e09ecee48a0f00f4 Mon Sep 17 00:00:00 2001 From: Pavel Sinelnikov Date: Wed, 24 Nov 2021 01:09:38 -0500 Subject: [PATCH 86/99] Add Metis L2 testnet and parent (#591) * Add Metis Mainnet * Add Metis L2 testnet and parent * Corrected duplicate shortname and incorrect parent --- _data/chains/eip155-1088.json | 12 ++++++++---- _data/chains/eip155-588.json | 26 ++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 _data/chains/eip155-588.json diff --git a/_data/chains/eip155-1088.json b/_data/chains/eip155-1088.json index f91b4f69..8766099e 100644 --- a/_data/chains/eip155-1088.json +++ b/_data/chains/eip155-1088.json @@ -1,6 +1,6 @@ { "name": "Metis", - "chain": "METIS", + "chain": "ETH", "network": "mainnet", "rpc": ["https://andromeda.metis.io/?owner=1088"], "faucets": [], @@ -13,10 +13,14 @@ "shortName": "metis", "chainId": 1088, "networkId": 1088, - "explorers": [{ - "name": "blockscan", + "name": "blockscout", "url": "https://andromeda-explorer.metis.io/", "standard": "none" - }] + }], + "parent": { + "type" : "L2", + "chain": "eip155-1", + "bridges": [ {"url":"https://bridge.metis.io"} ] + } } diff --git a/_data/chains/eip155-588.json b/_data/chains/eip155-588.json new file mode 100644 index 00000000..473f6396 --- /dev/null +++ b/_data/chains/eip155-588.json @@ -0,0 +1,26 @@ +{ + "name": "Metis Testnet Rinkeby", + "chain": "ETH", + "network": "rinkeby", + "rpc": ["https://stardust.metis.io/?owner=588"], + "faucets": [], + "nativeCurrency": { + "name": "tMetis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-rinkeby", + "chainId": 588, + "networkId": 588, + "explorers": [{ + "name": "blockscout", + "url": "https://stardust-explorer.metis.io/", + "standard": "none" + }], + "parent": { + "type" : "L2", + "chain": "eip155-4", + "bridges": [ {"url":"https://bridge.metis.io"} ] + } +} From 4254f80dc6ed736bc7a7e6a38b998057a4823352 Mon Sep 17 00:00:00 2001 From: Andy Lou Date: Fri, 26 Nov 2021 05:44:42 +0800 Subject: [PATCH 87/99] add Singularity ZERO Mainnet (#595) --- _data/chains/eip155-12052.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 _data/chains/eip155-12052.json diff --git a/_data/chains/eip155-12052.json b/_data/chains/eip155-12052.json new file mode 100644 index 00000000..49bafbd5 --- /dev/null +++ b/_data/chains/eip155-12052.json @@ -0,0 +1,26 @@ +{ + "name": "Singularity ZERO Mainnet", + "chain": "ZERO", + "network": "mainnet", + "rpc": [ + "https://zerorpc.singularity.gold" + ], + "faucets": [ + "https://zeroscan.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "ZERO", + "chainId": 12052, + "networkId": 12052, + "slip44": 621, + "explorers": [{ + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + }] +} From 0875bb85b2a320ef61a6a6117c76fc773c534268 Mon Sep 17 00:00:00 2001 From: Pavel Sinelnikov Date: Fri, 26 Nov 2021 12:53:57 -0500 Subject: [PATCH 88/99] Changed Metis chain names for consistency (#599) * Add Metis Mainnet * Add Metis L2 testnet and parent * Corrected duplicate shortname and incorrect parent * Changed Metis chain names for consistency --- _data/chains/eip155-1088.json | 22 ++++++++++++---------- _data/chains/eip155-588.json | 22 ++++++++++++---------- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/_data/chains/eip155-1088.json b/_data/chains/eip155-1088.json index 8766099e..df851a8d 100644 --- a/_data/chains/eip155-1088.json +++ b/_data/chains/eip155-1088.json @@ -1,5 +1,5 @@ { - "name": "Metis", + "name": "Metis Andromeda Mainnet", "chain": "ETH", "network": "mainnet", "rpc": ["https://andromeda.metis.io/?owner=1088"], @@ -10,17 +10,19 @@ "decimals": 18 }, "infoURL": "https://www.metis.io", - "shortName": "metis", + "shortName": "metis-andromeda", "chainId": 1088, "networkId": 1088, - "explorers": [{ - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io/", - "standard": "none" - }], + "explorers": [ + { + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io/", + "standard": "EIP3091" + } + ], "parent": { - "type" : "L2", + "type": "L2", "chain": "eip155-1", - "bridges": [ {"url":"https://bridge.metis.io"} ] - } + "bridges": [{ "url": "https://bridge.metis.io" }] + } } diff --git a/_data/chains/eip155-588.json b/_data/chains/eip155-588.json index 473f6396..1605bbef 100644 --- a/_data/chains/eip155-588.json +++ b/_data/chains/eip155-588.json @@ -1,5 +1,5 @@ { - "name": "Metis Testnet Rinkeby", + "name": "Metis Stardust Testnet", "chain": "ETH", "network": "rinkeby", "rpc": ["https://stardust.metis.io/?owner=588"], @@ -10,17 +10,19 @@ "decimals": 18 }, "infoURL": "https://www.metis.io", - "shortName": "metis-rinkeby", + "shortName": "metis-stardust", "chainId": 588, "networkId": 588, - "explorers": [{ - "name": "blockscout", - "url": "https://stardust-explorer.metis.io/", - "standard": "none" - }], + "explorers": [ + { + "name": "blockscout", + "url": "https://stardust-explorer.metis.io/", + "standard": "EIP3091" + } + ], "parent": { - "type" : "L2", + "type": "L2", "chain": "eip155-4", - "bridges": [ {"url":"https://bridge.metis.io"} ] - } + "bridges": [{ "url": "https://bridge.metis.io" }] + } } From 6a93656ab63b2bf7cffe44f12bfcc019d1266354 Mon Sep 17 00:00:00 2001 From: Reggie <92185630+blockchainreg@users.noreply.github.com> Date: Mon, 29 Nov 2021 03:13:52 -0500 Subject: [PATCH 89/99] Update Coin (#607) --- _data/chains/eip155-7878.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_data/chains/eip155-7878.json b/_data/chains/eip155-7878.json index 087c3942..792f840f 100644 --- a/_data/chains/eip155-7878.json +++ b/_data/chains/eip155-7878.json @@ -1,12 +1,12 @@ { "name": "Hazlor Testnet", - "chain": "Hazlor", + "chain": "SCAS", "network": "testnet", - "rpc": ["http://hatlas.rpc.hazlor.com:8545/"], + "rpc": ["https://hatlas.rpc.hazlor.com:8545/"], "faucets": ["https://faucet.hazlor.com"], "nativeCurrency": { - "name": "Planet", - "symbol": "PLANET", + "name": "Hazlor Test Coin", + "symbol": "TSCAS", "decimals": 18 }, "infoURL": "https://hazlor.com", From 7a4f5cc6ab62c1e57abbad6889d50a5957d08799 Mon Sep 17 00:00:00 2001 From: Pixie <87630272+pixie-chain-team@users.noreply.github.com> Date: Mon, 29 Nov 2021 17:35:12 +0800 Subject: [PATCH 90/99] feat: add Pixie Chain Mainnet and Testnet (#609) * feat: add Pixie Chain Mainnet and Testnet * feat: add Pixie Chain Mainnet and Testnet --- _data/chains/eip155-6626.json | 24 ++++++++++++++++++++++++ _data/chains/eip155-666.json | 21 +++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 _data/chains/eip155-6626.json create mode 100644 _data/chains/eip155-666.json diff --git a/_data/chains/eip155-6626.json b/_data/chains/eip155-6626.json new file mode 100644 index 00000000..f08614ea --- /dev/null +++ b/_data/chains/eip155-6626.json @@ -0,0 +1,24 @@ +{ + "name": "Pixie Chain Mainnet", + "chain": "PixieChain", + "network": "mainnet", + "rpc": [ + "https://http-mainnet.chain.pixie.xyz", + "wss://ws-mainnet.chain.pixie.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pixie Chain Native Token", + "symbol": "PIX", + "decimals": 18 + }, + "infoURL": "https://chain.pixie.xyz", + "shortName": "pixie-chain", + "chainId": 6626, + "networkId": 6626, + "explorers": [{ + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-666.json b/_data/chains/eip155-666.json new file mode 100644 index 00000000..c91fb23c --- /dev/null +++ b/_data/chains/eip155-666.json @@ -0,0 +1,21 @@ +{ + "name": "Pixie Chain Testnet", + "chain": "PixieChain", + "network": "testnet", + "rpc": [ + "https://http-testnet.chain.pixie.xyz", + "wss://ws-testnet.chain.pixie.xyz" + ], + "faucets": [ + "https://chain.pixie.xyz/faucet" + ], + "nativeCurrency": { + "name": "Pixie Chain Testnet Native Token", + "symbol": "PCTT", + "decimals": 18 + }, + "infoURL": "https://scan-testnet.chain.pixie.xyz", + "shortName": "pixie-chain-testnet", + "chainId": 666, + "networkId": 666 +} From 22c85cfa29d8f239aae26b78aadcfdaae7ccfeed Mon Sep 17 00:00:00 2001 From: Slava Date: Mon, 29 Nov 2021 11:43:31 +0200 Subject: [PATCH 91/99] add Gather chains (#598) * add gather chains * change short name --- .gitignore | 3 ++- _data/chains/eip155-192837465.json | 23 +++++++++++++++++++++++ _data/chains/eip155-356256156.json | 23 +++++++++++++++++++++++ _data/chains/eip155-486217935.json | 23 +++++++++++++++++++++++ 4 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 _data/chains/eip155-192837465.json create mode 100644 _data/chains/eip155-356256156.json create mode 100644 _data/chains/eip155-486217935.json diff --git a/.gitignore b/.gitignore index 7099f5c9..a070a95c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ _site .jekyll-metadata .DS_Store .env -node_modules \ No newline at end of file +node_modules +.idea diff --git a/_data/chains/eip155-192837465.json b/_data/chains/eip155-192837465.json new file mode 100644 index 00000000..56c601b8 --- /dev/null +++ b/_data/chains/eip155-192837465.json @@ -0,0 +1,23 @@ +{ + "name": "Gather Mainnet Network", + "chain": "GTH", + "network": "mainnet", + "rpc": [ + "https://mainnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "GTH", + "chainId": 192837465, + "networkId": 192837465, + "explorers": [{ + "name": "Blockscout", + "url": "https://explorer.gather.network/", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-356256156.json b/_data/chains/eip155-356256156.json new file mode 100644 index 00000000..7bcaee40 --- /dev/null +++ b/_data/chains/eip155-356256156.json @@ -0,0 +1,23 @@ +{ + "name": "Gather Tesnet Network", + "chain": "GTH", + "network": "testnet", + "rpc": [ + "https://testnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "tGTH", + "chainId": 356256156, + "networkId": 356256156, + "explorers": [{ + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network/", + "standard": "none" + }] +} diff --git a/_data/chains/eip155-486217935.json b/_data/chains/eip155-486217935.json new file mode 100644 index 00000000..56cb2e5f --- /dev/null +++ b/_data/chains/eip155-486217935.json @@ -0,0 +1,23 @@ +{ + "name": "Gather Devnet Network", + "chain": "GTH", + "network": "devnet", + "rpc": [ + "https://devnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "dGTH", + "chainId": 486217935, + "networkId": 486217935, + "explorers": [{ + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network/", + "standard": "none" + }] +} From 36c3c24bc2e3f1efecef591d1146824aec0c3b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ferreira?= <30725570+andrehrferreira@users.noreply.github.com> Date: Mon, 29 Nov 2021 11:44:55 -0300 Subject: [PATCH 92/99] pr/5315 (#611) --- _data/chains/eip155-5315.json | 18 ++++++++++++++++++ _data/icons/uzmi.json | 8 ++++++++ 2 files changed, 26 insertions(+) create mode 100644 _data/chains/eip155-5315.json create mode 100644 _data/icons/uzmi.json diff --git a/_data/chains/eip155-5315.json b/_data/chains/eip155-5315.json new file mode 100644 index 00000000..4c28d4ad --- /dev/null +++ b/_data/chains/eip155-5315.json @@ -0,0 +1,18 @@ +{ + "name": "Uzmi Network Mainnet", + "chain": "UZMI", + "network": "mainnet", + "rpc": [ + "https://network.uzmigames.com.br/" + ], + "faucets": [], + "nativeCurrency": { + "name": "UZMI", + "symbol": "UZMI", + "decimals": 18 + }, + "infoURL": "https://uzmigames.com.br/", + "shortName": "UZMI", + "chainId": 5315, + "networkId": 5315 +} \ No newline at end of file diff --git a/_data/icons/uzmi.json b/_data/icons/uzmi.json new file mode 100644 index 00000000..6a60e671 --- /dev/null +++ b/_data/icons/uzmi.json @@ -0,0 +1,8 @@ +[ + { + "url":"ipfs://QmRU9tH2mM8P7r12FXL6cqPbZnzw57p9QSuNK2f8ePB4Qi", + "width":310, + "height":310, + "format":"png" + } +] \ No newline at end of file From b274ba73d507ab44b415578d3b16f51934028510 Mon Sep 17 00:00:00 2001 From: tonycurises <89896131+tonycurises@users.noreply.github.com> Date: Wed, 1 Dec 2021 19:52:25 +0800 Subject: [PATCH 93/99] Add myOwn Testnet (#555) * Create eip155-1609610177.json * Rename eip155-1609610177.json to eip155-1337.json * Update eip155-1337.json change Name and Symbol * Update eip155-1337.json change shortname * Update and rename eip155-1337.json to eip155-9999.json Updates are: - rpc address - name - symbol - shortname - chain ID - network ID --- _data/chains/eip155-9999.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _data/chains/eip155-9999.json diff --git a/_data/chains/eip155-9999.json b/_data/chains/eip155-9999.json new file mode 100644 index 00000000..51a0022d --- /dev/null +++ b/_data/chains/eip155-9999.json @@ -0,0 +1,18 @@ +{ + "name": "myOwn Testnet", + "chain": "myOwn", + "network": "testnet", + "rpc": [ + "https://fe693b0f-b1c4-45ec-aac1-5c4b913fc51e.cdegswtfk0ji0uq1ym3r3guz6.ep.stage.bccloud.net:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "MYN", + "symbol": "MYN", + "decimals": 18 + }, + "infoURL": "https://docs.bccloud.net/", + "shortName": "myn", + "chainId": 9999, + "networkId": 9999 +} From b439801f5f54369ef75537a93829656983737c93 Mon Sep 17 00:00:00 2001 From: Alexandre Favre Date: Wed, 1 Dec 2021 15:00:33 +0100 Subject: [PATCH 94/99] Add ntity, ntity haradev network and ntity image (#615) --- _data/chains/eip155-197710212030.json | 25 +++++++++++++++++++++++++ _data/chains/eip155-197710212031.json | 25 +++++++++++++++++++++++++ _data/icons/ntity.json | 8 ++++++++ 3 files changed, 58 insertions(+) create mode 100644 _data/chains/eip155-197710212030.json create mode 100644 _data/chains/eip155-197710212031.json create mode 100644 _data/icons/ntity.json diff --git a/_data/chains/eip155-197710212030.json b/_data/chains/eip155-197710212030.json new file mode 100644 index 00000000..3c8bebe3 --- /dev/null +++ b/_data/chains/eip155-197710212030.json @@ -0,0 +1,25 @@ +{ + "name": "Ntity Mainnet", + "chain": "Ntity", + "network": "mainnet", + "rpc": [ + "https://rpc.ntity.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ntity", + "symbol": "NTT", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt", + "chainId": 197710212030, + "networkId": 197710212030, + "icon": "ntity", + "explorers": [{ + "name": "Ntity Blockscout", + "url": "https://blockscout.ntity.io", + "icon": "ntity", + "standard": "EIP3091" + }] + } \ No newline at end of file diff --git a/_data/chains/eip155-197710212031.json b/_data/chains/eip155-197710212031.json new file mode 100644 index 00000000..f0ca0576 --- /dev/null +++ b/_data/chains/eip155-197710212031.json @@ -0,0 +1,25 @@ +{ + "name": "Haradev Testnet", + "chain": "Ntity", + "network": "testnet", + "rpc": [ + "https://blockchain.haradev.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ntity Haradev", + "symbol": "NTTH", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt-haradev", + "chainId": 197710212031, + "networkId": 197710212031, + "icon": "ntity", + "explorers": [{ + "name": "Ntity Haradev Blockscout", + "url": "https://blockscout.haradev.com", + "icon": "ntity", + "standard": "EIP3091" + }] + } \ No newline at end of file diff --git a/_data/icons/ntity.json b/_data/icons/ntity.json new file mode 100644 index 00000000..4dba513a --- /dev/null +++ b/_data/icons/ntity.json @@ -0,0 +1,8 @@ +[ + { + "url": "ipfs://QmSW2YhCvMpnwtPGTJAuEK2QgyWfFjmnwcrapUg6kqFsPf", + "width": 1000, + "height": 1628, + "format": "svg" + } +] \ No newline at end of file From a0f8e9cb0821e2e610d022b7a9a172e707e22785 Mon Sep 17 00:00:00 2001 From: Henry Liu <50917820+Zombieliu@users.noreply.github.com> Date: Thu, 2 Dec 2021 21:32:53 +0800 Subject: [PATCH 95/99] update chains json (#620) * add id 102 for SGC testnet * update, change project name and information * Update eip155-102.json update rpc url --- _data/chains/eip155-102.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-102.json b/_data/chains/eip155-102.json index cdb9a5e5..7b7561b4 100644 --- a/_data/chains/eip155-102.json +++ b/_data/chains/eip155-102.json @@ -2,7 +2,7 @@ "name": "Web3Games Testnet", "chain": "Web3Games", "network": "testnet", - "rpc": ["https://substrate.org.cn"], + "rpc": ["https://testnet.web3games.org/evm"], "faucets": [], "nativeCurrency": { "name": "Web3Games", From a8817092cac5b520a8b8a1981a91f6cb6969fd85 Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Thu, 2 Dec 2021 17:41:46 +0400 Subject: [PATCH 96/99] Change Sokol chain symbol SKL => SPOA (#621) --- _data/chains/eip155-77.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_data/chains/eip155-77.json b/_data/chains/eip155-77.json index da0e7f5c..66aef5c1 100644 --- a/_data/chains/eip155-77.json +++ b/_data/chains/eip155-77.json @@ -8,15 +8,15 @@ "ws://sokol.poa.network:8546" ], "faucets": [ - "https://faucet-sokol.herokuapp.com" + "https://faucet.poa.network" ], "nativeCurrency": { "name": "POA Sokol Ether", - "symbol": "SKL", + "symbol": "SPOA", "decimals": 18 }, "infoURL": "https://poa.network", - "shortName": "skl", + "shortName": "spoa", "chainId": 77, "networkId": 77, From 6c888d7a7ad07eb0fedfc044b81a18f879ce2692 Mon Sep 17 00:00:00 2001 From: kow <80036600+kow101@users.noreply.github.com> Date: Sat, 4 Dec 2021 00:26:44 +0800 Subject: [PATCH 97/99] Create eip155-1202.json (#622) --- _data/chains/eip155-1202.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _data/chains/eip155-1202.json diff --git a/_data/chains/eip155-1202.json b/_data/chains/eip155-1202.json new file mode 100644 index 00000000..b74bd828 --- /dev/null +++ b/_data/chains/eip155-1202.json @@ -0,0 +1,24 @@ +{ + "name": "World Trade Technical Chain Mainnet", + "chain": "WTT", + "network": "mainnet", + "rpc": [ + "https://rpc.cadaut.com", + "wss://rpc.cadaut.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "World Trade Token", + "symbol": "WTT", + "decimals": 18 + }, + "infoURL": "http://www.cadaut.com", + "shortName": "wtt", + "chainId": 1202, + "networkId": 2048, + "explorers": [{ + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + }] +} From d0d42c030a8572a47573b4489e4cb02a0642df8e Mon Sep 17 00:00:00 2001 From: tonycurises <89896131+tonycurises@users.noreply.github.com> Date: Wed, 8 Dec 2021 03:17:19 +0800 Subject: [PATCH 98/99] Update eip155-9999.json (#629) Update rpc --- _data/chains/eip155-9999.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/chains/eip155-9999.json b/_data/chains/eip155-9999.json index 51a0022d..0adad584 100644 --- a/_data/chains/eip155-9999.json +++ b/_data/chains/eip155-9999.json @@ -3,7 +3,7 @@ "chain": "myOwn", "network": "testnet", "rpc": [ - "https://fe693b0f-b1c4-45ec-aac1-5c4b913fc51e.cdegswtfk0ji0uq1ym3r3guz6.ep.stage.bccloud.net:8545" + "https://geth.dev.bccloud.net" ], "faucets": [], "nativeCurrency": { From 4624419291e8a3034f8ca8e387179d6588620480 Mon Sep 17 00:00:00 2001 From: alliswell <45843736+benbaley@users.noreply.github.com> Date: Wed, 8 Dec 2021 03:58:21 +0800 Subject: [PATCH 99/99] Changed the shortname of Alaya testnet to 'alayadev' and add Alaya mainnet (#631) * added: Alaya&PlatON testnet * add faucets * update explorer url" * add alaya mainnet * Add PlatON mainnet * rm eip155-201017.json * update alaya testnet's shortname to alayadev --- _data/chains/eip155-201018.json | 27 +++++++++++++++++++++++++++ _data/chains/eip155-201030.json | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 _data/chains/eip155-201018.json diff --git a/_data/chains/eip155-201018.json b/_data/chains/eip155-201018.json new file mode 100644 index 00000000..5b27f0d8 --- /dev/null +++ b/_data/chains/eip155-201018.json @@ -0,0 +1,27 @@ +{ + "name": "Alaya Mainnet", + "chain": "Alaya", + "network": "mainnet", + "rpc": [ + "https://openapi.alaya.network/rpc", + "wss://openapi.alaya.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alaya", + "chainId": 201018, + "networkId": 1, + "icon": "alaya", + "explorers": [ + { + "name": "alaya explorer", + "url": "https://scan.alaya.network/", + "standard": "none" + } + ] +} \ No newline at end of file diff --git a/_data/chains/eip155-201030.json b/_data/chains/eip155-201030.json index 9892acc3..6f062540 100644 --- a/_data/chains/eip155-201030.json +++ b/_data/chains/eip155-201030.json @@ -15,7 +15,7 @@ "decimals": 18 }, "infoURL": "https://www.alaya.network/", - "shortName": "alaya", + "shortName": "alayadev", "chainId": 201030, "networkId": 1, "icon": "alaya",