Skip to content

Commit 10ba464

Browse files
committed
Flowgen update. Version bump 10.0.5-beta.1
1 parent 3cbeb69 commit 10ba464

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cardano-serialization-lib",
3-
"version": "10.0.4",
3+
"version": "10.0.5-beta.1",
44
"description": "(De)serialization functions for the Cardano blockchain along with related utility functions",
55
"scripts": {
66
"rust:build-nodejs": "(rimraf ./rust/pkg && cd rust; wasm-pack build --target=nodejs; wasm-pack pack) && npm run js:flowgen",

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cardano-serialization-lib"
3-
version = "10.0.4"
3+
version = "10.0.5-beta.1"
44
edition = "2018"
55
authors = ["EMURGO"]
66
license = "MIT"

rust/pkg/cardano_serialization_lib.js.flow

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5308,11 +5308,17 @@ declare export class TransactionBuilder {
53085308
get_implicit_input(): Value;
53095309

53105310
/**
5311-
* Return explicit input plus implicit input plus mint minus burn
5311+
* Return explicit input plus implicit input plus mint
53125312
* @returns {Value}
53135313
*/
53145314
get_total_input(): Value;
53155315

5316+
/**
5317+
* Return explicit output plus deposit plus burn
5318+
* @returns {Value}
5319+
*/
5320+
get_total_output(): Value;
5321+
53165322
/**
53175323
* does not include fee
53185324
* @returns {Value}

0 commit comments

Comments
 (0)