@tari-project/ootle-ts-bindings 1.28.0 → 1.28.1

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.
@@ -4,7 +4,6 @@ export * from "./types/tari-indexer-client/GetNetworkInfoResponse";
4
4
  export * from "./types/tari-indexer-client/TemplateMetadata";
5
5
  export * from "./types/tari-indexer-client/GetUtxoUpdatesRequest";
6
6
  export * from "./types/tari-indexer-client/ListSubstatesResponse";
7
- export * from "./types/tari-indexer-client/IndexerAddPeerResponse";
8
7
  export * from "./types/tari-indexer-client/TransactionEntry";
9
8
  export * from "./types/tari-indexer-client/InspectSubstateRequest";
10
9
  export * from "./types/tari-indexer-client/ListSubstateItem";
@@ -20,7 +19,6 @@ export * from "./types/tari-indexer-client/GetResourceResponse";
20
19
  export * from "./types/tari-indexer-client/ListTransactionReceiptsRequest";
21
20
  export * from "./types/tari-indexer-client/GetUtxosRequest";
22
21
  export * from "./types/tari-indexer-client/ListRecentTransactionsResponse";
23
- export * from "./types/tari-indexer-client/IndexerAddPeerRequest";
24
22
  export * from "./types/tari-indexer-client/GetNetworkSyncStateResponse";
25
23
  export * from "./types/tari-indexer-client/GetUtxosResponse";
26
24
  export * from "./types/tari-indexer-client/ListUtxosResponse";
@@ -6,7 +6,6 @@ export * from "./types/tari-indexer-client/GetNetworkInfoResponse";
6
6
  export * from "./types/tari-indexer-client/TemplateMetadata";
7
7
  export * from "./types/tari-indexer-client/GetUtxoUpdatesRequest";
8
8
  export * from "./types/tari-indexer-client/ListSubstatesResponse";
9
- export * from "./types/tari-indexer-client/IndexerAddPeerResponse";
10
9
  export * from "./types/tari-indexer-client/TransactionEntry";
11
10
  export * from "./types/tari-indexer-client/InspectSubstateRequest";
12
11
  export * from "./types/tari-indexer-client/ListSubstateItem";
@@ -22,7 +21,6 @@ export * from "./types/tari-indexer-client/GetResourceResponse";
22
21
  export * from "./types/tari-indexer-client/ListTransactionReceiptsRequest";
23
22
  export * from "./types/tari-indexer-client/GetUtxosRequest";
24
23
  export * from "./types/tari-indexer-client/ListRecentTransactionsResponse";
25
- export * from "./types/tari-indexer-client/IndexerAddPeerRequest";
26
24
  export * from "./types/tari-indexer-client/GetNetworkSyncStateResponse";
27
25
  export * from "./types/tari-indexer-client/GetUtxosResponse";
28
26
  export * from "./types/tari-indexer-client/ListUtxosResponse";
@@ -7,4 +7,4 @@
7
7
  * This allows Tari to support a massive number tokens within resources.
8
8
  * e.g. 2 ETH = 2 x 10^18 Gwei.
9
9
  */
10
- export type Amount = string | number;
10
+ export type Amount = string | number | bigint;
@@ -4,7 +4,7 @@ import type { OotleAddress } from "../OotleAddress";
4
4
  import type { PayTo } from "./PayTo";
5
5
  export type StealthTransfer = {
6
6
  destination_address: OotleAddress;
7
- blinded_output_amount: bigint;
7
+ blinded_output_amount: number | bigint | string;
8
8
  revealed_output_amount: Amount;
9
9
  output_memo?: Memo | null;
10
10
  pay_to: PayTo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tari-project/ootle-ts-bindings",
3
- "version": "1.28.0",
3
+ "version": "1.28.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,6 +0,0 @@
1
- import type { RistrettoPublicKeyBytes } from "../RistrettoPublicKeyBytes";
2
- export type IndexerAddPeerRequest = {
3
- public_key: RistrettoPublicKeyBytes;
4
- addresses: Array<string>;
5
- wait_for_dial: boolean;
6
- };
@@ -1 +0,0 @@
1
- export type IndexerAddPeerResponse = Record<string, never>;
@@ -1,2 +0,0 @@
1
- // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
- export {};