@mysten/wallet-standard 0.2.11 → 0.3.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @mysten/wallet-standard
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [97c46ca9d]
|
|
8
|
+
- @mysten/sui.js@0.26.1
|
|
9
|
+
|
|
10
|
+
## 0.3.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 96e883fc1: Update wallet adapter and wallet standard to support passing through the desired request type.
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- a8746d4e9: update SuiExecuteTransactionResponse
|
|
19
|
+
- Updated dependencies [034158656]
|
|
20
|
+
- Updated dependencies [a8746d4e9]
|
|
21
|
+
- Updated dependencies [57fc4dedd]
|
|
22
|
+
- Updated dependencies [e6a71882f]
|
|
23
|
+
- Updated dependencies [e6a71882f]
|
|
24
|
+
- Updated dependencies [21781ba52]
|
|
25
|
+
- Updated dependencies [b3ba6dfbc]
|
|
26
|
+
- @mysten/sui.js@0.26.0
|
|
27
|
+
|
|
3
28
|
## 0.2.11
|
|
4
29
|
|
|
5
30
|
### 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.
|
|
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.
|
|
3
|
+
"version": "0.3.1",
|
|
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
|
+
"@mysten/sui.js": "0.26.1"
|
|
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.
|
|
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
|
+
}
|