-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change project name pokefork to localnode
- Loading branch information
Showing
37 changed files
with
99 additions
and
103 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ plugins { | |
id("publication") | ||
} | ||
|
||
group = "vc.rux.pokefork" | ||
group = "vc.rux.localnode" | ||
version = "0.0-SNAPSHOT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
kotlin.code.style=official | ||
|
||
|
||
artifactName=pokefork | ||
artifactName=localnode | ||
artifactDesc=Run local node or fork Ethereum-like blockchains from your Kotlin/Java app using Hardhat or Foundry Anvil | ||
artifactUrl=https://github.com/ruXlab/pokefork | ||
artifactScm[email protected]:ruXlab/pokefork.git | ||
artifactUrl=https://github.com/ruXlab/localnode | ||
artifactScm[email protected]:ruXlab/localnode.git | ||
artifactLicenseName=MIT License | ||
artifactLicenseUrl=http://www.opensource.org/licenses/mit-license.php | ||
artifactPublishVersion=0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
LocalNode library module | ||
========= | ||
|
||
This is a library module, please refer to the | ||
[parent README](../README.md) to learn more about | ||
the project and how to use it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
.../main/kotlin/vc/rux/pokefork/IForkNode.kt → ...main/kotlin/vc/rux/localnode/IForkNode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...main/kotlin/vc/rux/pokefork/ILocalNode.kt → ...ain/kotlin/vc/rux/localnode/ILocalNode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package vc.rux.pokefork | ||
package vc.rux.localnode | ||
|
||
import java.math.BigInteger | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...c/main/kotlin/vc/rux/pokefork/NodeMode.kt → .../main/kotlin/vc/rux/localnode/NodeMode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package vc.rux.pokefork | ||
package vc.rux.localnode | ||
|
||
/** | ||
* NodeMode is a sealed interface with two implementations: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../vc/rux/pokefork/anvil/AnvilNodeConfig.kt → ...vc/rux/localnode/anvil/AnvilNodeConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...okefork/anvil/internal/AnvilDockerfile.kt → ...calnode/anvil/internal/AnvilDockerfile.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../rux/pokefork/common/common-node-utils.kt → ...rux/localnode/common/common-node-utils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...x/pokefork/common/node-startup-awaiter.kt → .../localnode/common/node-startup-awaiter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...c/main/kotlin/vc/rux/pokefork/defaults.kt → .../main/kotlin/vc/rux/localnode/defaults.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package vc.rux.pokefork | ||
package vc.rux.localnode | ||
|
||
import com.github.dockerjava.core.DockerClientBuilder | ||
|
||
|
4 changes: 1 addition & 3 deletions
4
...n/vc/rux/pokefork/errors/PokeForkError.kt → .../vc/rux/localnode/errors/PokeForkError.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...rux/pokefork/hardhat/HardHatNodeConfig.kt → ...ux/localnode/hardhat/HardHatNodeConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rux/pokefork/hardhat/IEthereumLikeNode.kt → ...ux/localnode/hardhat/IEthereumLikeNode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...efork/hardhat/internal/HardHatConfigJs.kt → ...lnode/hardhat/internal/HardHatConfigJs.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ork/hardhat/internal/HardHatDockerfile.kt → ...ode/hardhat/internal/HardHatDockerfile.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
...n/vc/rux/pokefork/web3j/LocalWeb3jNode.kt → .../vc/rux/localnode/web3j/LocalWeb3jNode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ux/pokefork/web3j/PokeForkRpcCallError.kt → ...x/localnode/web3j/PokeForkRpcCallError.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../rux/pokefork/web3j/utils/number-utils.kt → ...rux/localnode/web3j/utils/number-utils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package vc.rux.pokefork.web3j.utils | ||
package vc.rux.localnode.web3j.utils | ||
|
||
import java.math.BigInteger | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...rc/test/kotlin/web3j/AnvilForkWeb3Test.kt → ...rc/test/kotlin/web3j/AnvilForkWeb3Test.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../test/kotlin/web3j/HardhatForkWeb3Test.kt → .../test/kotlin/web3j/HardhatForkWeb3Test.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.