-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff64911
commit eebe410
Showing
1 changed file
with
41 additions
and
37 deletions.
There are no files selected for viewing
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,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' |