cardano-serialization-lib icon indicating copy to clipboard operation
cardano-serialization-lib copied to clipboard

This is a library, written in Rust, for serialization & deserialization of data structures used in Cardano's Haskell implementation of Alonzo along with useful utility functions.

Results 179 cardano-serialization-lib issues
Sort by recently updated
recently updated
newest added

Functions like `generate_ed25519_bip32` are broken in the same way they were broken in Jormungandr https://github.com/input-output-hk/js-chain-libs/issues/59 I think the curve25519-dalek package was updated maybe 1-2 months ago and it may have...

bug

Currently when you call `build` on the TransactionBuilder, you get back a `TransactionBody`. This isn't great because you lose 1) Information about which witnesses are needed 2) Information about the...

enhancement

First output from `deserializeTx(cbor).to_js_value()` looks like ``` "outputs": [ { "address": "addr_test1xpyga27u94rsgnzdgu4df3w8mes538dymt5dhqlszgmfxeyke8x9mpjf7aerjt3n3nfd5tnzkfhlprp09mpf4sdy8dzqcrqkuk", "amount": { "coin": "20515600", "multiasset": {} }, ``` while from `deserializeTx(cbor).to_json()` looks like ``` "outputs": [ { "address":...

How can we estimate the fee changes on adding an output to a transaction? Previously, I used the `TransactionBuilder.fee_for_output` function, but seems it's not working after v13? You can find...

hi, I have a private key that is generated via `elliptic` npm package, I can sign and broadcast transfer and stake transactions using the rosetta api before the hardfork, currently...

Hi Team, It will very helpful if there can be full examples added for various operations that needs to be performed. This would include but not limited to - -...

why is StakeCredential removed from '@emurgo/cardano-serialization-lib-nodejs' ? Is there any substitute. It was used to derive address from mnemonics and now that is broken. Any help appreciated.

Hi, I've faced with the issue that Generating Transactions example is outdated. https://github.com/Emurgo/cardano-serialization-lib/blob/master/doc/getting-started/generating-transactions.md Some logic was changed and method have been renamed. - coins_per_utxo_word -> coins_per_utxo_bytes - CardanoWasm.hash_transaction is remove...