@tari-project/ootle-ts-bindings 1.43.0 → 1.44.2

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.
@@ -39,6 +39,7 @@ export * from "./types/tari-indexer-client/ListRecentTransactionsRequest";
39
39
  export * from "./types/tari-indexer-client/GetTransactionReceiptResponse";
40
40
  export * from "./types/tari-indexer-client/GetUtxosRequest";
41
41
  export * from "./types/tari-indexer-client/GetResourceResponse";
42
+ export * from "./types/tari-indexer-client/GetNetworkEconomicsResponse";
42
43
  export * from "./types/tari-indexer-client/ListEpochCheckpointsResponse";
43
44
  export * from "./types/tari-indexer-client/IndexerGetTransactionResultResponse";
44
45
  export * from "./types/tari-indexer-client/TransactionEntry";
@@ -41,6 +41,7 @@ export * from "./types/tari-indexer-client/ListRecentTransactionsRequest";
41
41
  export * from "./types/tari-indexer-client/GetTransactionReceiptResponse";
42
42
  export * from "./types/tari-indexer-client/GetUtxosRequest";
43
43
  export * from "./types/tari-indexer-client/GetResourceResponse";
44
+ export * from "./types/tari-indexer-client/GetNetworkEconomicsResponse";
44
45
  export * from "./types/tari-indexer-client/ListEpochCheckpointsResponse";
45
46
  export * from "./types/tari-indexer-client/IndexerGetTransactionResultResponse";
46
47
  export * from "./types/tari-indexer-client/TransactionEntry";
@@ -1 +1 @@
1
- export type FeeSource = "Initial" | "RuntimeCall" | "Storage" | "TransactionWeight" | "SignatureVerification" | "TemplateLoad" | "SubstateCreate" | "WasmExecution" | "TemplatePublish";
1
+ export type FeeSource = "Initial" | "RuntimeCall" | "Storage" | "TransactionWeight" | "SignatureVerification" | "TemplateLoad" | "SubstateCreate" | "WasmExecution" | "TemplatePublish" | "ExhaustBurn";
@@ -34,4 +34,9 @@ export type TransactionPoolRecord = {
34
34
  * record is created.
35
35
  */
36
36
  transaction_weight: bigint;
37
+ /**
38
+ * The exhaust burn surcharge collected by the executor (`FeeReceipt::exhaust_burn_charged`), set from local
39
+ * execution alongside `transaction_fee`.
40
+ */
41
+ exhaust_burn: bigint;
37
42
  };
@@ -0,0 +1,12 @@
1
+ import type { Amount } from "../Amount";
2
+ import type { Epoch } from "../Epoch";
3
+ export type GetNetworkEconomicsResponse = {
4
+ current_epoch: Epoch;
5
+ total_claimed: Amount;
6
+ total_exhaust_burned: Amount;
7
+ fee_volume: Amount;
8
+ receipt_exhaust_burned: Amount;
9
+ total_supply: Amount;
10
+ transaction_receipt_count: bigint;
11
+ target_burn_rate_bps: number;
12
+ };
@@ -6,5 +6,5 @@ export type StealthUtxosDecryptValueRequest = {
6
6
  ids: Array<UtxoId>;
7
7
  view_key_id: KeyId;
8
8
  minimum_expected_value: bigint | null;
9
- maximum_expected_value: bigint;
9
+ maximum_expected_value: bigint | null;
10
10
  };
@@ -0,0 +1 @@
1
+ export type StealthUtxosGetValueLookupInfoRequest = Record<string, never>;
@@ -0,0 +1,2 @@
1
+ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
+ export {};
@@ -0,0 +1,10 @@
1
+ export type StealthUtxosGetValueLookupInfoResponse = {
2
+ configured: boolean;
3
+ path: string | null;
4
+ format: string | null;
5
+ min: bigint | null;
6
+ max: bigint | null;
7
+ prefix_len: number | null;
8
+ value_len: number | null;
9
+ num_records: bigint | null;
10
+ };
@@ -0,0 +1,2 @@
1
+ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
+ export {};
@@ -176,3 +176,5 @@ export * from "./types/wallet-types/SubstatesListRequest";
176
176
  export * from "./types/wallet-types/ComponentAddressOrName";
177
177
  export * from "./types/wallet-types/TemplatesListAuthoredResponse";
178
178
  export * from "./types/wallet-types/StealthUtxosDecryptValueResponse";
179
+ export * from "./types/wallet-types/StealthUtxosGetValueLookupInfoRequest";
180
+ export * from "./types/wallet-types/StealthUtxosGetValueLookupInfoResponse";
@@ -178,3 +178,5 @@ export * from "./types/wallet-types/SubstatesListRequest";
178
178
  export * from "./types/wallet-types/ComponentAddressOrName";
179
179
  export * from "./types/wallet-types/TemplatesListAuthoredResponse";
180
180
  export * from "./types/wallet-types/StealthUtxosDecryptValueResponse";
181
+ export * from "./types/wallet-types/StealthUtxosGetValueLookupInfoRequest";
182
+ export * from "./types/wallet-types/StealthUtxosGetValueLookupInfoResponse";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tari-project/ootle-ts-bindings",
3
- "version": "1.43.0",
3
+ "version": "1.44.2",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"