Skip to content

Commit

Permalink
0.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
p00temkin committed Jul 22, 2024
1 parent f5f0fca commit 0563bfa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>crypto.forestfish</groupId>
<artifactId>forestfish</artifactId>
<version>0.2.8</version>
<version>0.2.11</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.17.0</version>
<version>1.17.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -68,7 +68,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.2.0-jre</version>
<version>33.2.1-jre</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
Expand All @@ -83,27 +83,27 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.1</version>
<version>1.26.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.17.1</version>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>2.0.50</version>
<version>2.0.52</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.17.2</version>
<version>1.18.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand All @@ -127,7 +127,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
<version>1.2.13</version>
</dependency>

<!-- GRAPHLQL -->
Expand Down Expand Up @@ -161,7 +161,7 @@
<dependency>
<groupId>org.web3j</groupId>
<artifactId>core</artifactId>
<version>4.11.1</version>
<version>4.12.0</version>
</dependency>
<dependency>
<groupId>tech.pegasys</groupId>
Expand All @@ -176,12 +176,12 @@
<dependency>
<groupId>com.esaulpaugh</groupId>
<artifactId>headlong</artifactId>
<version>11.1.0</version>
<version>12.0.0</version>
</dependency>
<dependency>
<groupId>com.klaytn.caver</groupId>
<artifactId>core</artifactId>
<version>1.11.1-android</version>
<version>1.12.2-android</version>
</dependency>

<!-- WEB3 -->
Expand Down Expand Up @@ -209,7 +209,7 @@
<dependency>
<groupId>com.algorand</groupId>
<artifactId>algosdk</artifactId>
<version>2.4.0</version>
<version>2.5.0</version>
</dependency>
<dependency>
<groupId>com.github.ipld</groupId>
Expand Down Expand Up @@ -238,7 +238,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<version>2.11.0</version>
</dependency>

<!-- Test -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6580,7 +6580,7 @@ public static HashMap<EVMChain, EVMChainInfo> getMainnetEVMNetworks() {
EVMChain.REAL.toString(),
"re.al",
111188L,
BlockchainType.BORKED.toString(), // single node highly rate limited xxx
BlockchainType.BORKED.toString(), // single node highly rate limited
new EVMCurrency("re.al Gas Token", "reETH", 18),
EVMPriceMechanism.LEGACY.toString(),30,
"30000000000", //30 gwei
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ public static HashMap<EVMChain, EVMChainInfo> getTestnetEVMNetworks() {
EVMChain.VCITYTEST.toString(),
"Vcity Testnet",
20230825L,
BlockchainType.PUBLIC.toString(),
BlockchainType.BORKED.toString(),
new EVMCurrency("Vcity Testnet Gas Token", "VCITY", 18),
EVMPriceMechanism.LEGACY.toString(),30,
"30000000000", //30 gwei
Expand Down Expand Up @@ -8920,7 +8920,7 @@ public static HashMap<EVMChain, EVMChainInfo> getTestnetEVMNetworks() {
EVMChain.MUMBAITEST.toString(),
"Polygon Test Network",
80001L,
BlockchainType.PUBLIC.toString(),
BlockchainType.BORKED.toString(), // deprecated
new EVMCurrency("Polygon Test Token", "MATIC", 18),
EVMPriceMechanism.LEGACY.toString(),30,
"30000000000", //30 gwei
Expand Down

0 comments on commit 0563bfa

Please sign in to comment.