java-bigchaindb-driver icon indicating copy to clipboard operation
java-bigchaindb-driver copied to clipboard

Official Java and Android driver for BigchainDB

Results 15 java-bigchaindb-driver issues
Sort by recently updated
recently updated
newest added

i am trying to run sample [https://gist.github.com/innoprenuer/d4c6798fe5c0581c05a7e676e175e515](https://gist.github.com/innoprenuer/d4c6798fe5c0581c05a7e676e175e515) The asset creation working fine, however when i transferred asset, it returns malformed BAD REQUEST Transaction failed I am unable to query (via...

when I use ValidatorsApi to get the validators, I get null. My code is : `Validators validators = ValidatorsApi.getValidators(); System.out.println(validators.getValidators().get(0).getPower());`

If you try to combine assets as described in https://www.bigchaindb.com/developers/guide/tutorial-token-launch/ it will fail. The code only update first input fullfillment. See this.transaction.getInputs().get(0) .setFullFillment(Base64.encodeBase64URLSafeString(fulfillment.getEncoded())); We fixed in upcoming release of C#...

Driver version: 1.1 and master(cae61d81ad021aa8eb29830f87cdac7f2d8f10ab) Response: `{"message":"Not found","status":404} ` Stacktrace: > Exception in thread "main" java.lang.NullPointerException at com.bigchaindb.json.strategy.TransactionDeserializer.deserialize(TransactionDeserializer.java:50) at com.bigchaindb.json.strategy.TransactionDeserializer.deserialize(TransactionDeserializer.java:23) at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) at com.google.gson.Gson.fromJson(Gson.java:888) at com.google.gson.Gson.fromJson(Gson.java:853) at com.google.gson.Gson.fromJson(Gson.java:802) at com.google.gson.Gson.fromJson(Gson.java:774)...

enhancement
help wanted
good first issue

When you create a transaction with Transfer Operation, a hash is generated which is also the transaction id. This hash generated by the driver, and the hash generated by bigchain...

I only have encodedPublicKeyInBase58 in the form of String, for example "CEKT7YF9vEUVPuejb9gHTR9Hi9AgYT5ur6M96o1qhneE". How can I send transaction to "CEKT7YF9vEUVPuejb9gHTR9Hi9AgYT5ur6M96o1qhneE"??? ![2018-10-17 14-58-13](https://user-images.githubusercontent.com/18158738/47067820-20254c80-d21d-11e8-8fe9-27fd922674ca.png)

baseUrl: https://test.bigchaindb.com assertId: c60b5c014c14bb96088f2bc10ba4640255b65b4026c522586acffbf8e8aab3d1 code: `TransactionsApi.getTransactionsByAssetId(assetId, Operations.CREATE).get(0).getId()` return value: ![2018-10-16 11-53-05](https://user-images.githubusercontent.com/18158738/46991823-137bf800-d13a-11e8-875b-ecde46d7a2f4.png) [context] os: ubuntu 18.04 lts

Hi, when I run a getAssets query manually it works. When I run it via the Java driver it fails with the following errors: 09-29 09:02:00.136: W/System.err(4511): com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Not...

Hi Team, I am trying to implement the java-bigchaindb but I am not able to send the transcation as it give error while importing package com.bigchaindb.cryptoconditions.types.Ed25519Sha256Condition; Can you help me...

This PR provides support for generic and custom data types in Asset data and Meta data (e.g.) Map . But, this PR doesn't support complex nested data types (e.g) Map....