@mysten/wallet-standard 0.2.10 → 0.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @mysten/wallet-standard
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 96e883fc1: Update wallet adapter and wallet standard to support passing through the desired request type.
8
+
9
+ ### Patch Changes
10
+
11
+ - a8746d4e9: update SuiExecuteTransactionResponse
12
+ - Updated dependencies [034158656]
13
+ - Updated dependencies [a8746d4e9]
14
+ - Updated dependencies [57fc4dedd]
15
+ - Updated dependencies [e6a71882f]
16
+ - Updated dependencies [e6a71882f]
17
+ - Updated dependencies [21781ba52]
18
+ - Updated dependencies [b3ba6dfbc]
19
+ - @mysten/sui.js@0.26.0
20
+
21
+ ## 0.2.11
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [ebfdd5c56]
26
+ - Updated dependencies [7b4bf43bc]
27
+ - Updated dependencies [72481e759]
28
+ - Updated dependencies [969a88669]
29
+ - @mysten/sui.js@0.25.0
30
+
3
31
  ## 0.2.10
4
32
 
5
33
  ### Patch Changes
@@ -1,6 +1,6 @@
1
- import type { SignableTransaction, SuiTransactionResponse } from "@mysten/sui.js";
1
+ import type { ExecuteTransactionRequestType, SignableTransaction, SuiTransactionResponse } from "@mysten/sui.js";
2
2
  /** The latest API version of the signAndExecuteTransaction API. */
3
- export type SuiSignAndExecuteTransactionVersion = "1.0.0";
3
+ export type SuiSignAndExecuteTransactionVersion = "1.1.0";
4
4
  /**
5
5
  * A Wallet Standard feature for signing a transaction, and submitting it to the
6
6
  * network. The wallet is expected to submit the transaction to the network via RPC,
@@ -25,4 +25,5 @@ export interface SuiSignAndExecuteTransactionOutput extends SuiTransactionRespon
25
25
  }
26
26
  /** Options for signing and sending transactions. */
27
27
  export interface SuiSignAndExecuteTransactionOptions {
28
+ requestType?: ExecuteTransactionRequestType;
28
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mysten/wallet-standard",
3
- "version": "0.2.10",
3
+ "version": "0.3.0",
4
4
  "description": "A suite of standard utilities for implementing wallets based on the Wallet Standard.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Mysten Labs <build@mystenlabs.com>",
@@ -21,7 +21,7 @@
21
21
  ],
22
22
  "dependencies": {
23
23
  "@wallet-standard/core": "1.0.1",
24
- "@mysten/sui.js": "0.24.0"
24
+ "@mysten/sui.js": "0.26.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "tsup": "^6.5.0",
@@ -2,12 +2,13 @@
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  import type {
5
+ ExecuteTransactionRequestType,
5
6
  SignableTransaction,
6
7
  SuiTransactionResponse,
7
8
  } from "@mysten/sui.js";
8
9
 
9
10
  /** The latest API version of the signAndExecuteTransaction API. */
10
- export type SuiSignAndExecuteTransactionVersion = "1.0.0";
11
+ export type SuiSignAndExecuteTransactionVersion = "1.1.0";
11
12
 
12
13
  /**
13
14
  * A Wallet Standard feature for signing a transaction, and submitting it to the
@@ -38,4 +39,6 @@ export interface SuiSignAndExecuteTransactionOutput
38
39
  extends SuiTransactionResponse {}
39
40
 
40
41
  /** Options for signing and sending transactions. */
41
- export interface SuiSignAndExecuteTransactionOptions {}
42
+ export interface SuiSignAndExecuteTransactionOptions {
43
+ requestType?: ExecuteTransactionRequestType;
44
+ }