Satya
Satya
@the-vj This PR is going to merge all payments towards the same address together https://github.com/bloxbean/cardano-client-lib/pull/59 . Thanks to @nemo83 For future release, we can also explore the option to support...
@ofekron33 ExUnits is used to calculate script running cost which gets added to the transaction fee. ExUnits consists of steps (cpu time) and mem (RAM space). You can check this...
Thanks. I will check. jfyi, if you just want to deserialize already executed txn, you may also want to check serializers in yaci-core project. But it doesn't support serialization. https://github.com/bloxbean/yaci-core/blob/1d588014d78e1a809a821e71a0ece6cd50ce8797/src/main/java/com/bloxbean/cardano/yaci/core/model/serializers/TransactionOutputSerializer.java#L26
@stake1edge It seems the utxos for all three transactions are from Byron era. But in case of tx-2 & tx-3, those utxos are used in Shelley era transaction. Cardano Client...
@stake1edge, closing this issue as the lib only supports Shelley and post shelley era transactions.
@stake1edge It seems Minswap code is using indefinite-length array during serialization where the last item is BREAK. To handle this scenario, cardano-client code has to ignore BREAK during parsing. I...
The current parsing code is https://github.com/bloxbean/cardano-client-lib/blob/06a48ea352a9cc3c52253cc9a190c198a0180058/src/main/java/com/bloxbean/cardano/client/transaction/spec/TransactionWitnessSet.java#L210 ``` for(DataItem plutusDataDI: plutusDataDIList) { plutusDataList.add(PlutusData.deserialize(plutusDataDI)); } ``` After fix, it should look like ``` for(DataItem plutusDataDI: plutusDataDIList) { if (plutusDataDI == SimpleValue.BREAK) continue;...
Thanks @stake1edge It would be great if you can add txbody in a text file and attach here. Otherwise, let me know if there is an easy way to get...
Fixed in 0.3.0. @stake1edge, feel free to re-open this if you still see this issue.
@iTanChi Parameterized contracts are already supported through aiken-java-binding library (0.0.8). You can check these tests https://github.com/bloxbean/cardano-client-lib/blob/76496f51f458e0caa8f57758af738ec5bc740f6a/quicktx/src/it/java/com/bloxbean/cardano/client/quicktx/ParameterizedScriptIT.java#L116