Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.01 KB

File metadata and controls

31 lines (25 loc) · 1.01 KB
am logo

Simple Ethereum Plugin

pull requests welcome badge

Build

  1. Run the following command to generate contracts abi code:
mvn web3j:generate-sources
  1. Before compiling the plugin, you can modify the type and id of the plugin by modifying the products and pluginId attribute values in EthereumBBCService.java . In the current code, the product is simple-ethereum , and the pluginId is plugin-simple-ethereum.
@BBCService(products = "simple-ethereum", pluginId = "plugin-simple-ethereum")
  1. Then execute the compile command in the plugin project directory to get the jar for use as a plugin
mvn clean package -Dmaven.test.skip=true