以太坊开发Dapp中spring boot +web3j

其中pom.xml中需要添加的web3j的依赖如下:

 <dependency>
            <groupId>org.web3j</groupId>
            <artifactId>core</artifactId>
            <version>4.6.0</version>
        </dependency>

        <dependency>
            <groupId>org.web3j</groupId>
            <artifactId>geth</artifactId>
            <version>4.6.0</version>
        </dependency>

这两个依赖涵盖了基本上能用到的大部分的方法。

附上web3j版本下载链接:
https://github.com/web3j/web3j/releases

猜你喜欢

转载自blog.csdn.net/weixin_43520099/article/details/106718928