Skip to content

Commit 95123a2

Browse files
committed
Flowgen update. Version bump 10.0.0
1 parent 3c958de commit 95123a2

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
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.0-beta.9",
3+
"version": "10.0.0",
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 & 3 deletions
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.0-beta.9"
3+
version = "10.0.0"
44
edition = "2018"
55
authors = ["EMURGO"]
66
license = "MIT"

rust/pkg/cardano_serialization_lib.js.flow

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,13 @@ declare export function encode_json_str_to_native_script(
165165
schema: number
166166
): NativeScript;
167167

168+
/**
169+
* @param {Transaction} tx
170+
* @param {LinearFee} linear_fee
171+
* @returns {BigNum}
172+
*/
173+
declare export function min_fee(tx: Transaction, linear_fee: LinearFee): BigNum;
174+
168175
/**
169176
* @param {string} password
170177
* @param {string} salt
@@ -189,13 +196,6 @@ declare export function decrypt_with_password(
189196
data: string
190197
): string;
191198

192-
/**
193-
* @param {Transaction} tx
194-
* @param {LinearFee} linear_fee
195-
* @returns {BigNum}
196-
*/
197-
declare export function min_fee(tx: Transaction, linear_fee: LinearFee): BigNum;
198-
199199
/**
200200
*/
201201

0 commit comments

Comments
 (0)