cardano-client-lib
cardano-client-lib copied to clipboard
Cardano client library in Java
When I try to serialize a transaction with metadata, a exception throwed. Here is the sample code: ```java public class JsonTest { public static void main(String[] args) throws CborDeserializationException, JsonProcessingException...
Min Ada calculation spec in Alonzo https://github.com/input-output-hk/cardano-ledger-specs/blob/master/doc/explanations/min-utxo-alonzo.rst
hello My balance is 3.328735 ADA Same input parameter: 3 ADA Yoroi Wallet costs 0.328735 ADA Val fee = feeCalculationService. CalculateFee (paymentTransaction detailsParams, null) to calculate the charge is: 0.176017...
Hey, Is there a way to keep/set the order of the fields (keys) of the `CBORMetadataMap` object fixed? Theoretically, nested datastructures, should all maintain the order, but for some reason,...
This is due to the wrong logic in UtxoTransctionBuilderImpl's buildMintTokenTransaction method. TransactionOutput for sender is created inside the loop. It should be outside the loop. Because of this multiple txn...
According to Cardano doc: B = [(policyID1, myAssetNameSBS, 10), (policyID1, yourAssetNameSBS, 5), (policyID2, someAssetNameSBS, 250), (policyID3, someAssetNameSBS, 43)] then numAssets B = 4 "sumAssetNameLengths: the sum of the length of...
I am getting an error when submitting a transaction build with the client lib. I am particularly confused by the statement: ```The third data argument, does not decode to a...
The current version of high level apis are simple and good for beginners or simple use cases. These apis have their own implementation for transaction build logic. As composable functions...
**Current State** Most of the constructors in Account class take Network object as argument. And Network class has two fields NetworkId and protocol magic. But only NetworkId is used during...