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

Official BigchainDB Java driver

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

Hi, Am I wrong in assuming that the current driver has not been changed to work with BighainDB 2.0? If I am correct, could someone let me know when you...

Hi, I sincerely hope that Authenteq is still working on, and supporting the BigchainDB java driver. However, I have not seen much action in a few months. I would appreciate...

Hi, Your README is outdated - Examples how to use transactions, method addAsset is not longer available. Also weird is that gradlew install is working (creates 0.1 RELEASE jar) fine...

I try to build with maven. There are 2 fails for test. The maven console log: Tests in error: StatusesApiTest.failWhenTransactionStatusNotFound » Unexpected exception, exp... StatusesApiTest.failWhenBlockStatusNotFound » Unexpected exception, expected

I tried to execute this Transaction transaction = BigchainDbTransactionBuilder.init() .addAsset("firstname", "Dominic") .addAsset("lastname", "Smith") .operation(Operations.CREATE) .buildAndSign((EdDSAPublicKey)keyPair.getPublic(), (EdDSAPrivateKey)keyPair.getPrivate()) .sendTransaction(); it worked fine I got the transaction id but when searching the asset...

Hi, I have not been able to figure out how to create/sign a set of seaprate transactions and then send them at a later time. The only way to send...

Can user set asset id while adding asset for CREATE transaction? I can see [Asset.java](https://github.com/authenteq/java-bigchaindb-driver/blob/3eff471d715e6f2d4c65beb1762a24479b298d99/src/main/java/com/authenteq/model/Asset.java) with a setter for Id. But `addAssets( Object assets, Class assetsDataClass )` of `BigchainDbTransactionBuilder.Builder()` takes...

In the Java example I can't find how to query data from BigChainDB, chould you give me a help? Thank you!

Hi, If I am not mistaken, the code in the examples, e.g. Transaction transaction = BigchainDbTransactionBuilder.init() .addAsset("firstname", "John") .addAsset("lastname", "Smith") .addMetaData("what", "My first BigchainDB transaction") .addMetaData("this", "My 1st metadata BigchainDB...