@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.
- package/dist/tari-indexer-client.d.ts +1 -0
- package/dist/tari-indexer-client.js +1 -0
- package/dist/types/FeeSource.d.ts +1 -1
- package/dist/types/TransactionPoolRecord.d.ts +5 -0
- package/dist/types/tari-indexer-client/GetNetworkEconomicsResponse.d.ts +12 -0
- package/dist/types/tari-indexer-client/GetNetworkEconomicsResponse.js +1 -0
- package/dist/types/wallet-types/StealthUtxosDecryptValueRequest.d.ts +1 -1
- package/dist/types/wallet-types/StealthUtxosGetValueLookupInfoRequest.d.ts +1 -0
- package/dist/types/wallet-types/StealthUtxosGetValueLookupInfoRequest.js +2 -0
- package/dist/types/wallet-types/StealthUtxosGetValueLookupInfoResponse.d.ts +10 -0
- package/dist/types/wallet-types/StealthUtxosGetValueLookupInfoResponse.js +2 -0
- package/dist/wallet-types.d.ts +2 -0
- package/dist/wallet-types.js +2 -0
- package/package.json +1 -1
|
@@ -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
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type StealthUtxosGetValueLookupInfoRequest = Record<string, never>;
|
|
@@ -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
|
+
};
|
package/dist/wallet-types.d.ts
CHANGED
|
@@ -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";
|
package/dist/wallet-types.js
CHANGED
|
@@ -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";
|