@tari-project/ootle-ts-bindings 1.29.0 → 1.29.3
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/helpers/consts.d.ts +4 -2
- package/dist/helpers/consts.js +5 -3
- package/dist/types/tari-indexer-client/IndexerGetIdentityResponse.d.ts +1 -1
- package/dist/types/tari-indexer-client/IndexerSubmitTransactionResponse.d.ts +1 -7
- package/dist/types/wallet-types/AdvancedUiFeatures.d.ts +3 -0
- package/dist/types/wallet-types/AdvancedUiFeatures.js +2 -0
- package/dist/types/wallet-types/SettingsGetResponse.d.ts +2 -0
- package/dist/types/wallet-types/SettingsSetRequest.d.ts +2 -0
- package/dist/types/wallet-types/SettingsSetRequest.js +0 -1
- package/dist/types/wallet-types/TemplatesListAuthoredRequest.d.ts +2 -1
- package/dist/types/wallet-types/TemplatesListAuthoredRequest.js +0 -1
- package/dist/wallet-types.d.ts +1 -0
- package/dist/wallet-types.js +1 -0
- package/package.json +1 -1
package/dist/helpers/consts.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export declare const ACCOUNT_TEMPLATE_ADDRESS = "0000000000000000000000000000000000000000000000000000000000000000";
|
|
2
2
|
export declare const TESTNET_NFT_FAUCET_ADDRESS = "component_0000000000000000000000000000000000000000000000000000000000000001";
|
|
3
|
-
export declare const
|
|
4
|
-
export declare const
|
|
3
|
+
export declare const TESTNET_TARI_FAUCET_ADDRESS = "component_0102030000000000000000000000000000000000000000000000000000000000";
|
|
4
|
+
export declare const TARI_TOKEN_RESOURCE_ADDRESS = "resource_0101010101010101010101010101010101010101010101010101010101010101";
|
|
5
|
+
/** @deprecated use `TARI_TOKEN` instead */
|
|
5
6
|
export declare const XTR = "resource_0101010101010101010101010101010101010101010101010101010101010101";
|
|
7
|
+
export declare const TARI_TOKEN = "resource_0101010101010101010101010101010101010101010101010101010101010101";
|
package/dist/helpers/consts.js
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export const ACCOUNT_TEMPLATE_ADDRESS = "0000000000000000000000000000000000000000000000000000000000000000";
|
|
6
6
|
export const TESTNET_NFT_FAUCET_ADDRESS = "component_0000000000000000000000000000000000000000000000000000000000000001";
|
|
7
|
-
export const
|
|
8
|
-
export const
|
|
9
|
-
|
|
7
|
+
export const TESTNET_TARI_FAUCET_ADDRESS = "component_0102030000000000000000000000000000000000000000000000000000000000";
|
|
8
|
+
export const TARI_TOKEN_RESOURCE_ADDRESS = "resource_0101010101010101010101010101010101010101010101010101010101010101";
|
|
9
|
+
/** @deprecated use `TARI_TOKEN` instead */
|
|
10
|
+
export const XTR = TARI_TOKEN_RESOURCE_ADDRESS;
|
|
11
|
+
export const TARI_TOKEN = TARI_TOKEN_RESOURCE_ADDRESS;
|
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
import type { ExecuteResult } from "../ExecuteResult";
|
|
2
1
|
import type { TransactionId } from "../TransactionId";
|
|
3
2
|
export type IndexerSubmitTransactionResponse = {
|
|
4
3
|
/**
|
|
5
|
-
* The ID of the transaction
|
|
4
|
+
* The ID of the submitted transaction
|
|
6
5
|
*/
|
|
7
6
|
transaction_id: TransactionId;
|
|
8
|
-
/**
|
|
9
|
-
* The result of the dry-run execution, including any emitted events and state changes, but without a final
|
|
10
|
-
* decision or commitment to the ledger
|
|
11
|
-
*/
|
|
12
|
-
result: ExecuteResult;
|
|
13
7
|
};
|
package/dist/wallet-types.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export * from "./types/wallet-types/AccountOrKeyId";
|
|
|
44
44
|
export * from "./types/wallet-types/DerivedKeyId";
|
|
45
45
|
export * from "./types/wallet-types/SettingsSetResponse";
|
|
46
46
|
export * from "./types/wallet-types/WebauthnFinishAuthRequest";
|
|
47
|
+
export * from "./types/wallet-types/AdvancedUiFeatures";
|
|
47
48
|
export * from "./types/wallet-types/KeysListRequest";
|
|
48
49
|
export * from "./types/wallet-types/AccountsTransferResponse";
|
|
49
50
|
export * from "./types/wallet-types/TransactionGetResultResponse";
|
package/dist/wallet-types.js
CHANGED
|
@@ -46,6 +46,7 @@ export * from "./types/wallet-types/AccountOrKeyId";
|
|
|
46
46
|
export * from "./types/wallet-types/DerivedKeyId";
|
|
47
47
|
export * from "./types/wallet-types/SettingsSetResponse";
|
|
48
48
|
export * from "./types/wallet-types/WebauthnFinishAuthRequest";
|
|
49
|
+
export * from "./types/wallet-types/AdvancedUiFeatures";
|
|
49
50
|
export * from "./types/wallet-types/KeysListRequest";
|
|
50
51
|
export * from "./types/wallet-types/AccountsTransferResponse";
|
|
51
52
|
export * from "./types/wallet-types/TransactionGetResultResponse";
|