@tari-project/ootle-ts-bindings 1.31.0 → 1.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,6 @@
1
1
  import type { FeeBreakdown } from "./FeeBreakdown";
2
2
  export type FeeCostBreakdown = {
3
3
  total_fees_charged: bigint;
4
+ required_fees: bigint;
4
5
  breakdown: FeeBreakdown;
5
6
  };
@@ -2,5 +2,6 @@ import type { ExecuteResult } from "../ExecuteResult";
2
2
  import type { TransactionId } from "../TransactionId";
3
3
  export type ClaimBurnResponse = {
4
4
  transaction_id: TransactionId;
5
+ required_fees: number | null;
5
6
  dry_run_result: ExecuteResult | null;
6
7
  };
@@ -5,6 +5,7 @@ export type TransactionGetResponse = {
5
5
  transaction: Transaction;
6
6
  result: FinalizeResult | null;
7
7
  status: TransactionStatus;
8
+ final_fee: number | null;
8
9
  invalid_reason: string | null;
9
10
  last_update_time: string;
10
11
  };
@@ -2,5 +2,6 @@ import type { ExecuteResult } from "../ExecuteResult";
2
2
  import type { TransactionId } from "../TransactionId";
3
3
  export type TransactionSubmitDryRunResponse = {
4
4
  transaction_id: TransactionId;
5
+ required_fees: number;
5
6
  result: ExecuteResult;
6
7
  };
@@ -4,7 +4,8 @@ export type TransactionSubmitManifestRequest = {
4
4
  variables: {
5
5
  [key in string]?: string;
6
6
  };
7
- signing_key_id: KeyId | null;
7
+ seal_signer_key_id: KeyId | null;
8
+ signing_key_ids: Array<KeyId>;
8
9
  max_fee: number;
9
10
  dry_run: boolean;
10
11
  };
@@ -2,5 +2,6 @@ import type { ExecuteResult } from "../ExecuteResult";
2
2
  import type { TransactionId } from "../TransactionId";
3
3
  export type TransactionSubmitManifestResponse = {
4
4
  transaction_id: TransactionId;
5
+ required_fees: number | null;
5
6
  result: ExecuteResult | null;
6
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tari-project/ootle-ts-bindings",
3
- "version": "1.31.0",
3
+ "version": "1.32.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"