iost-node-client


License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

io.github.qyvlik
ArtifactId

ArtifactId

iost-node-client
Last Version

Last Version

1.0.4
Release Date

Release Date

Type

Type

jar
Description

Description

iost-node-client
iost-node-client
Project URL

Project URL

https://github.com/qyvlik/iost-node-client
Source Code Management

Source Code Management

https://github.com/qyvlik/iost-node-client

Download iost-node-client

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.qyvlik/iost-node-client/ -->
<dependency>
    <groupId>io.github.qyvlik</groupId>
    <artifactId>iost-node-client</artifactId>
    <version>1.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.qyvlik/iost-node-client/
implementation 'io.github.qyvlik:iost-node-client:1.0.4'
// https://jarcasting.com/artifacts/io.github.qyvlik/iost-node-client/
implementation ("io.github.qyvlik:iost-node-client:1.0.4")
'io.github.qyvlik:iost-node-client:jar:1.0.4'
<dependency org="io.github.qyvlik" name="iost-node-client" rev="1.0.4">
  <artifact name="iost-node-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.qyvlik', module='iost-node-client', version='1.0.4')
)
libraryDependencies += "io.github.qyvlik" % "iost-node-client" % "1.0.4"
[io.github.qyvlik/iost-node-client "1.0.4"]

Dependencies

compile (5)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter jar 2.1.3.RELEASE
org.springframework.boot : spring-boot-starter-web jar 2.1.3.RELEASE
com.alibaba : fastjson jar 1.2.45
org.apache.commons : commons-lang3 jar 3.3.2
com.google.guava : guava jar 23.3-jre

test (1)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-test jar 2.1.3.RELEASE

Project Modules

There are no modules declared in this project.

iost-node-client

iost-node-client

maven

<dependency>
    <groupId>io.github.qyvlik</groupId>
    <artifactId>iost-node-client</artifactId>
    <version>1.0.4</version>
</dependency>

example

more examples in the io.github.qyvlik.iostnode.IOSTNodeClientTest

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

export GPG_TTY=$(tty)
mvn clean deploy -Prelease -Dmaven.test.skip=true

Versions

Version
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0