Skip to content

Commit

Permalink
更新README
Browse files Browse the repository at this point in the history
  • Loading branch information
prettyCoders committed Sep 25, 2020
1 parent ff64911 commit eebe410
Showing 1 changed file with 41 additions and 37 deletions.
78 changes: 41 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,53 +1,57 @@
# tron-sdk
提供波场地址创建、TRX、TRC10、TRC20交易本地签名、广播、解析等功能

测试用例参见tron-sdk\src\test


打包:gradlew jar

使用mvn
额外依赖:
<dependency>
<groupId>com.github.ki5fpl.tronj</groupId>
<artifactId>abi</artifactId>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>com.github.ki5fpl.tronj</groupId>
<artifactId>client</artifactId>
<version>0.4.0</version>
</dependency>

<dependency>
<groupId>com.github.ki5fpl.tronj</groupId>
<artifactId>abi</artifactId>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>com.github.ki5fpl.tronj</groupId>
<artifactId>client</artifactId>
<version>0.4.0</version>
</dependency>
mvn仓库配置:
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-ki5fpl-tronj</id>
<name>bintray</name>
<url>https://dl.bintray.com/ki5fpl/tronj</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-ki5fpl-tronj</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/ki5fpl/tronj</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>

<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-ki5fpl-tronj</id>
<name>bintray</name>
<url>https://dl.bintray.com/ki5fpl/tronj</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-ki5fpl-tronj</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/ki5fpl/tronj</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>

<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>

Gradle:

compile group: 'com.github.ki5fpl.tronj', name: 'abi', version: '0.4.0'

compile group: 'com.github.ki5fpl.tronj', name: 'client', version: '0.4.0'

0 comments on commit eebe410

Please sign in to comment.