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

Bumps [num-bigint](https://github.com/rust-num/num-bigint) from 0.4.0 to 0.4.3. Changelog Sourced from num-bigint's changelog. Release 0.4.3 (2021-11-02) GHSA-v935-pqmr-g8v9: Fix unexpected panics in multiplication. Contributors: @​arvidn, @​cuviper, @​guidovranken Release 0.4.2 (2021-09-03) Use explicit Integer::div_ceil...

dependencies
rust

Bumps [js-sys](https://github.com/rustwasm/wasm-bindgen) from 0.3.51 to 0.3.55. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=js-sys&package-manager=cargo&previous-version=0.3.51&new-version=0.3.55)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

dependencies
rust

Bumps [digest](https://github.com/RustCrypto/traits) from 0.9.0 to 0.10.3. Commits 1f55b70 Fix minimal versions build by using typenum 1.14 or higher (#940) b4162de cipher: restore allocating padded encrypt/decrypt (#936) 2137b13 Update lock files...

dependencies
rust

Bumps [hex](https://github.com/KokaKiwi/rust-hex) from 0.4.2 to 0.4.3. Commits b2b4370 Release v0.4.3 11fb8b5 README: Remove Travis badge e188c3d Update dev-dependencies. 7fe0e5a Fix formatting and some build warnings. bfe146e ci (gitlab-ci): Use gitlab-ci...

dependencies

Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.59 to 1.0.60. Release notes Sourced from serde_json's releases. v1.0.60 Add impl FromIterator<(impl Into<String>, impl Into<Value>)> for Value, which collects a Value::Object (#733, thanks @​matklad) Commits 6a4cd8d...

dependencies

For example, if I have this structure: **Inputs** - Address 1 - 100 ADA - Address 2 - 50 ADA **Expected outputs** - Address 3 - 120 ADA - Address...

I am currently facing this issue : were transaction.to_bytes() defined over here ([blockfrost-js/index.ts at master · blockfrost/blockfrost-js · GitHub](https://github.com/blockfrost/blockfrost-js/blob/master/examples/simple-transaction/src/index.ts#L88)) return an empty array : Uint8Array(0) It sometimes return correct Array...

I am using @emurgo/cardano-serialization-lib-nodejs": "^10.0.4 to build my minting transactions but minada is 29 ada and when i add add_mint_asset_output it increases to 39 ada! Can anyone help ?

Use cardano-serialization-lib, we can derive spend/signing key, just as: ```js const deriveRootKey = (mnemonic) => Bip32PrivateKey.from_bip39_entropy(Buffer.from(mnemonicToEntropy(mnemonic), "hex"), Buffer.from("")); const deriveAccountKey = (rootKey, account_index) => rootKey .derive(harden(SHELLEY_COIN_PURPOSE)) // CIP1852 .derive(harden(SHELLEY_COIN_TYPE)) .derive(harden(account_index))...

hi, how to generate address of plutus script ? Thanks.