java-stellar-sdk icon indicating copy to clipboard operation
java-stellar-sdk copied to clipboard

The Java Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC Server.

Results 71 java-stellar-sdk issues
Sort by recently updated
recently updated
newest added

Here the table shows column Error and column Code: https://www.stellar.org/developers/guides/concepts/transactions.html Column Code is number here. But Java SDK returns code as string: ```response.getExtras().getResultCodes().getTransactionResultCode()``` So if it is String, then it's...

Problem is here: https://github.com/stellar/java-stellar-sdk/blob/master/src/main/java/org/stellar/sdk/responses/TransactionResponse.java Problem is: ``` @SerializedName("source_account") private final KeyPair sourceAccount; ``` When it want to serialize KeyPair, it scream with exception about secretSeed cannot be serialized and converted...

I am using TransactionRequestBuilder to get a stream of transaction created for a Stellar account. This works for sometime , then after sometime I don't get any events for the...

https://github.com/stellar/stellar-protocol/issues/28 Steps that need to happen when you handle an incoming message: 1. you receive a tx 2. Do you already have a preimage of the memo? 3. no ->...

Transmitting balances as strings is not intuitive and makes programming harder than it needs to be. Also this circumvents they otherwise strong java type system.

recommit #108 use org.stellar.sdk.Price instead of String both in org.stellar.sdk.ManageOfferOperation and org.stellar.sdk.CreatePassiveOfferOperation And I keep the getPrice method and add a new method getPriceObject. Maybe I should rename it to...

Obtaining a Transaction instance from a base64-encoded XDR envelope is useful for a program that (1) somehow obtains a string representing a signed but not yet submitted transaction, (2) lets...

Hi all. I was reading over the tests in order to get a better idea of where to start, and while this test was written in as few lines of...

in progress