eos-java-rpc-wrapper
eos-java-rpc-wrapper copied to clipboard
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Caused by: java.io.EOFException: \n not found: limit=0 content=… at okio.RealBufferedSource.readUtf8LineStrict(RealBufferedSource.java:237) at okhttp3.internal.http1.Http1Codec.readHeaderLine(Http1Codec.java:215) at okhttp3.internal.http1.Http1Codec.readResponseHeaders(Http1Codec.java:189) The code: ` import client.EosApiClientFactory; import client.EosApiRestClient; import client.domain.response.chain.AbiJsonToBin; import java.util.HashMap; import java.util.Map; public class Main...
I am using following of Java code while creating account: Using Java library > eos-java-rpc-wrapper > adyliu/jeos Using > Jungle2 testnet > Chain Id of jungle2 testnet: > 038f4b0fc8ff18a4f0842a8f0564611f6e96e8535901dd45e43ac8691a1c4dca **The...
```kotlin val client = EosApiClientFactory.newInstance("https://jungle2.cryptolions.io/").newRestClient() val params = mapOf( "from" to from.name, "to" to to.name, "quantity" to "0.1000 EOS", "memo" to "test transaction" ) val data = client.abiJsonToBin(from.name, "transfer", params)...
I think that for this library to be more than a wrapper, it needs to implement native signing (ecc) in Java using openssl or some solution. The current implementation does...
Two transaction how to achieve ref-block by rpc
Hi I am trying to run example you have mentioned in your documentation. My Transaction is perfect and have keys in it. I am still getting: `Response{protocol=http/1.1, code=500, message=Internal Server...
If I create a new account in eos use eos-java-rpc-wrapeer,what should I do ,Can you give me an example?
https://github.com/EOSEssentials/eos-java-rpc-wrapper/blob/97d4839c8978e1465defa518af7235ddf9387ac1/src/main/java/client/domain/common/transaction/TransactionAction.java#L20 Runing example from README.md causes **Invalid packed transaction** on stage *Push the transaction*. Reverting `hex_data` to `data` resolves problem.
Exception in thread "main" client.exception.EosApiException: com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "context_free" (class client.domain.common.ActionTrace), not marked as ignorable (8 known properties: "trx_id", "act", "inline_traces", "console", "receipt", "cpu_usage", "elapsed", "total_cpu_usage"]) at [Source: (okhttp3.ResponseBody$BomAwareReader); line:...