Skip to content

Commit d2348f5

Browse files
committed
Release v0.1.0
1 parent 0b5d903 commit d2348f5

File tree

8 files changed

+10
-98
lines changed

8 files changed

+10
-98
lines changed

.idea/gradle.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# 🍴 LocalNode: get Hardhat and Foundry Anvil integrated in your Java/Kotlin app
22

3-
[![build status](https://github.com/ruXlab/pokefork/actions/workflows/tests.yml/badge.svg)](https://github.com/ruXlab/pokefork/actions)
3+
[![build status](https://github.com/ruXlab/localnode/actions/workflows/tests.yml/badge.svg)](https://github.com/ruXlab/localnode/actions)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5-
[![Maven Central](https://img.shields.io/maven-central/v/vc.rux.pokefork/ktx-module.svg)](https://search.maven.org/artifact/vc.rux.pokefork/web3j)
5+
[![Maven Central](https://img.shields.io/maven-central/v/vc.rux.pokefork/ktx-module.svg)](https://search.maven.org/artifact/vc.rux.localnode/localnode)
66

77

88
LocalNode allows to run a local development or forked node of the Ethereum-like network

examples/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ version = "0.0-SNAPSHOT"
77

88
repositories {
99
mavenCentral()
10-
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") // optional for snapshots
10+
// maven(url = "https://s01.oss.sonatype.org/content/repositories/releases/") // optional for releases
11+
// maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") // optional for snapshots
12+
// maven(url = "https://s01.oss.sonatype.org/content/groups/staging/") // optional for staging
1113
}
1214

1315
dependencies {
14-
implementation("vc.rux.localnode:web3j:0.1.0")
16+
implementation("vc.rux.localnode:localnode:0.1.0")
1517
implementation("org.web3j:core:4.10.3")
1618
}
1719

examples/src/main/kotlin/QueryBalanceApp.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import misc.archiveNodeUrl
33
import org.web3j.protocol.core.DefaultBlockParameter
44
import org.web3j.utils.Convert.Unit
55
import org.web3j.utils.Convert.fromWei
6-
import vc.rux.pokefork.anvil.AnvilNode
7-
import vc.rux.pokefork.anvil.AnvilNodeConfig
8-
import vc.rux.pokefork.web3j.LocalWeb3jNode
6+
import vc.rux.localnode.anvil.AnvilNode
7+
import vc.rux.localnode.anvil.AnvilNodeConfig
8+
import vc.rux.localnode.web3j.LocalWeb3jNode
99

1010
object QueryBalanceApp {
1111
@JvmStatic

plugins/src/main/kotlin/publication.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ publishing {
108108
}
109109

110110
signing {
111-
val signingKey = project.ext["signing.key"] as? String
111+
val signingKey = project.ext["signing.keyId"] as? String
112112
val signingPassword = project.ext["signing.password"] as? String
113113
val keyFilePath = project.ext["signing.secretKeyRingFile"] as? String
114114

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,5 @@ dependencyResolutionManagement {
4141
}
4242
}
4343

44-
include("web3j")
4544
include("localnode")
4645
include("examples")

web3j/build.gradle.kts

Lines changed: 0 additions & 71 deletions
This file was deleted.

web3j/src/test/resources/logback.xml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)