https://github.com/qyvlik/iost-node-client
iost-node-client
https://github.com/qyvlik/iost-node-client
client iost iost-node
Last synced: 5 months ago
JSON representation
iost-node-client
- Host: GitHub
- URL: https://github.com/qyvlik/iost-node-client
- Owner: qyvlik
- License: mit
- Created: 2019-03-28T11:53:03.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-17T02:48:53.000Z (about 7 years ago)
- Last Synced: 2025-07-04T12:06:32.738Z (12 months ago)
- Topics: client, iost, iost-node
- Language: Java
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iost-node-client
iost-node-client
## maven
```xml
io.github.qyvlik
iost-node-client
1.0.4
```
## example
more examples in the `io.github.qyvlik.iostnode.IOSTNodeClientTest`
```java
class Tests {
@Test
public void test() {
RestTemplate restTemplate = new RestTemplate();
String iostNodeHost = "http://13.52.105.102:30001"; // 测试链, testnet
IOSTNodeClient iostNodeClient = new IOSTNodeClient();
iostNodeClient.setRestTemplate(restTemplate);
iostNodeClient.setIostNodeHost(iostNodeHost);
NodeInfo response = iostNodeClient.getNodeInfo();
}
}
```
## deploy
```bash
export GPG_TTY=$(tty)
mvn clean deploy -Prelease -Dmaven.test.skip=true
```