Satya

Results 93 comments of Satya

Thanks @nemo83 for the PR. I will merge it to a separate branch for now. I would prefer to avoid any native lib dependency at this point. We can plan...

>>In order to produce the correct outputs, I needed to invoke the function builders with refunds first followed by the mint output. Does this look correct? It appears you need...

https://github.com/bloxbean/cardano-client-lib/commit/5c10111b162bb4834ee9b3845f818175c99cea4e

Thanks @matiwinnetou Current plan is to keep the followings packages in the main jar. Apart from available automated tests (unit tests/ integration tests), these packages also go through some level...

Thanks for reporting this issue. Really a stupid mistake by me :(

Yes, it seems min ada calculation logic needs to be updated. I found some parameter value change in babbage era. Like coins_per_utxo_size value is changed from 34482 to 4310 in...

In Babbage era, the min ada is calcuated according to following rule ``` (serSize txout + 160) ∗ coinsPerUTxOByte ``` According to https://hydra.iohk.io/build/15339994/download/1/babbage-changes.pdf See on the page 9 getValue txout

@MSchiavi A beta build should be out in a week or two. Alternatively, you can try build from SNAPSHOT repository. You can find the SNAPSHOT build info here https://github.com/bloxbean/cardano-client-lib#for-snapshot-binaries

Currently, there are two options to perform a transaction with multiple receivers. **1. Using PaymentTransaction high level api** You can call TransactionHelperService.transfer() with a list of PaymentTransaction. All these transactions...