以太坊java库EthereumJ简介
程序员文章站
2022-03-20 09:05:06
...
EthereumJ是以太坊协议的纯Java实现。有关以太坊及其目标的高级信息,请访问ethereum.org,其白皮书提供了一个完整的概念的概述,和黄皮书一起提供了协议的正式定义。
我们尽可能保持EthereumJ简单。对于JSON-RPC支持和其他客户端功能,请看Ethereum Harmony。
运行EthereumJ
作为依赖项添加到Maven项目:
<dependency>
<groupId>org.ethereum</groupId>
<artifactId>ethereumj-core</artifactId>
<version>1.8.1-RELEASE</version>
</dependency>
或者你的Gradle项目:
repositories {
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/ethereum/maven/" }
}
compile "org.ethereum:ethereumj-core:1.8.+"
作为你项目的起点,任何一个项目都可以以下列方式启动:
git clone https://github.com/ether-camp/ethereumj.starter
./gradlew run
检查你的本地区块链如何同步使用:
curl -w "\n" -X GET http://localhost:8080/bestBlock
构建可执行的JAR
git clone https://github.com/ethereum/ethereumj
cd ethereumj
cp ethereumj-core/src/main/resources/ethereumj.conf ethereumj-core/src/main/resources/user.conf
vim ethereumj-core/src/main/resources/user.conf # adjust user.conf to your needs
./gradlew clean fatJar
java -jar ethereumj-core/build/libs/ethereumj-core-*-all.jar
从命令行运行:
> git clone https://github.com/ethereum/ethereumj
> cd ethereumj
> ./gradlew run [-PmainClass=<sample class>]
可以运行任意一个测试示例:
./gradlew run -PmainClass=org.ethereum.samples.BasicSample
./gradlew run -PmainClass=org.ethereum.samples.FollowAccount
./gradlew run -PmainClass=org.ethereum.samples.PendingStateSample
./gradlew run -PmainClass=org.ethereum.samples.PriceFeedSample
./gradlew run -PmainClass=org.ethereum.samples.PrivateMinerSample
./gradlew run -PmainClass=org.ethereum.samples.TestNetSample
./gradlew run -PmainClass=org.ethereum.samples.TransactionBomb
快照构建
请注意,快照不稳定,目前正在开发中!如果你还想尝试一下:
- 将https://oss.jfrog.org/libs-snapshot/添加为构建脚本的存储库。
- 添加依赖项
org.ethereum:ethereumj-core:${VERSION}
,${VERSION}
位置的值是1.9.0-SNAPSHOT
。
示例如下:
<repository>
<id>jfrog-snapshots</id>
<name>oss.jfrog.org</name>
<url>https://oss.jfrog.org/libs-snapshot/</url>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<!-- ... -->
<dependency>
<groupId>org.ethereum</groupId>
<artifactId>ethereumj-core</artifactId>
<version>1.9.0-SNAPSHOT</version>
</dependency>
将项目导入IntelliJ IDEA:
> git clone https://github.com/ethereum/ethereumj
> cd ethereumj
> gradlew build
IDEA:
- File -> New -> Project from existing sources......
- 选择 ethereumj/build.gradle
- 对话框“Import Project from gradle”:点击“ok”
- 在构建之后运行
org.ethereum.Start
,org.ethereum.samples.*
之一或创建自己的主程序。
配置EthereumJ
有关所有现有选项,其描述和默认值的参考,你可以参考默认配置ethereumj.conf
(你可以在jar库或源代码ethereum-core/src/main/resources
目录中找到它),要重新设置所需的选项,你可以使用以下方法之一:
- 把你的选项放到
<working dir>/config/ethereumj.conf
文件中 - 把
user.conf
放到classpath的启动目录中(作为一个资源) - 将你的选项放在任何文件中并通过它提供
-Dethereumj.conf.file=<your config>
- 编程通过
SystemProperties.CONFIG.override*()
使用 - 编程重写Spring
SystemPropertiesbean
来使用
请注意,不需要将所有选项都放在自定义配置中,只需要放置你需要修改的那些选项。
如果你希望尽快的使用java开始以太坊的开发,可以选择web3j类库,它封装实现了绝大部分web3的功能,十分好用:
java以太坊教程,主要是针对java和android程序员进行区块链以太坊开发的web3j详解。
上一篇: Sun开源密钥和归档软件推多款磁带产品
推荐阅读
-
【区块链】以太坊 web3j for java 配置和使用 <1>
-
Java Jwt库的简介及使用详解
-
以太坊中GraphQL简介及使用
-
java类库EthereumJ如何操作以太坊区块链
-
java用web3j和spring boot构建开发以太坊应用
-
以太坊java库EthereumJ简介
-
java开源类库web3j进行以太坊过滤器(filter)和智能合约事件(event)开发 javaweb3j以太坊filterevent
-
java类库web3j开发以太坊智能合约快速入门
-
java类库web3j开发以太坊智能合约快速入门
-
web3j教程:java和android如何使用web3j开发以太坊智能合约并进行交易