@mysten/wallet-standard
Advanced tools
Comparing version 0.12.11 to 0.12.12
# @mysten/wallet-standard | ||
## 0.12.12 | ||
### Patch Changes | ||
- 0f27a97: Update dependencies | ||
- Updated dependencies [7fc464a] | ||
- Updated dependencies [086b2bc] | ||
- Updated dependencies [0fb0628] | ||
- Updated dependencies [cdedf69] | ||
- Updated dependencies [0f27a97] | ||
- Updated dependencies [beed646] | ||
- @mysten/sui@1.3.0 | ||
## 0.12.11 | ||
@@ -23,3 +36,4 @@ | ||
- 805ff4d4c2: Fix bug where transaction was passed as both transaction and transactionBlock to sui:signTransactionBlock | ||
- 805ff4d4c2: Fix bug where transaction was passed as both transaction and transactionBlock to | ||
sui:signTransactionBlock | ||
@@ -86,4 +100,6 @@ ## 0.12.8 | ||
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features and breaking changes. | ||
See the [full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on how to upgrade. | ||
- a92b03de42: The Typescript SDK has been renamed to `@mysten/sui` and includes many new features | ||
and breaking changes. See the | ||
[full migration guide](https://sdk.mystenlabs.com/typescript/migrations/sui-1.0) for details on | ||
how to upgrade. | ||
@@ -193,3 +209,4 @@ ### Patch Changes | ||
- 165ad6b21d: Introduce new optional `id` property, which wallets can specify as a unique identifier, separate from the wallet name. | ||
- 165ad6b21d: Introduce new optional `id` property, which wallets can specify as a unique | ||
identifier, separate from the wallet name. | ||
@@ -493,20 +510,35 @@ ### Patch Changes | ||
- 956ec28eb: Change `signMessage` to return message bytes. Add support for sui:signMessage in the wallet standard | ||
- 19b567f21: Unified self- and delegated staking flows. Removed fields from `Validator` (`stake_amount`, `pending_stake`, and `pending_withdraw`) and renamed `delegation_staking_pool` to `staking_pool`. Additionally removed the `validator_stake` and `delegated_stake` fields in the `ValidatorSet` type and replaced them with a `total_stake` field. | ||
- 956ec28eb: Change `signMessage` to return message bytes. Add support for sui:signMessage in the | ||
wallet standard | ||
- 19b567f21: Unified self- and delegated staking flows. Removed fields from `Validator` | ||
(`stake_amount`, `pending_stake`, and `pending_withdraw`) and renamed `delegation_staking_pool` to | ||
`staking_pool`. Additionally removed the `validator_stake` and `delegated_stake` fields in the | ||
`ValidatorSet` type and replaced them with a `total_stake` field. | ||
- 5c3b00cde: Add object id to staking pool and pool id to staked sui. | ||
- 3d9a04648: Adds `deactivation_epoch` to staking pool object, and adds `inactive_pools` to the validator set object. | ||
- 3d9a04648: Adds `deactivation_epoch` to staking pool object, and adds `inactive_pools` to the | ||
validator set object. | ||
- da72e73a9: Change the address of Move package for staking and validator related Move modules. | ||
- 0672b5990: The Wallet Standard now only supports the `Transaction` type, instead of the previous `SignableTransaction` type. | ||
- 0a7b42a6d: This changes almost all occurences of "delegate", "delegation" (and various capitalizations/forms) to their equivalent "stake"-based name. Function names, function argument names, RPC endpoints, Move functions, and object fields have been updated with this new naming convention. | ||
- c718deef4: wallet-standard: changes sui:signAndExecuteTransaction and sui:signTransaction features to support account and chain options | ||
wallet-adapter-wallet-standard: change signAndExecuteTransaction and signTransaction signatures to support account and chain options | ||
wallet-adapter-wallet-standard: ensure version compatibility for of the wallet signAndExecuteTransaction and signTransaction features before using them (same major version) | ||
- 0672b5990: The Wallet Standard now only supports the `Transaction` type, instead of the previous | ||
`SignableTransaction` type. | ||
- 0a7b42a6d: This changes almost all occurences of "delegate", "delegation" (and various | ||
capitalizations/forms) to their equivalent "stake"-based name. Function names, function argument | ||
names, RPC endpoints, Move functions, and object fields have been updated with this new naming | ||
convention. | ||
- c718deef4: wallet-standard: changes sui:signAndExecuteTransaction and sui:signTransaction features | ||
to support account and chain options wallet-adapter-wallet-standard: change | ||
signAndExecuteTransaction and signTransaction signatures to support account and chain options | ||
wallet-adapter-wallet-standard: ensure version compatibility for of the wallet | ||
signAndExecuteTransaction and signTransaction features before using them (same major version) | ||
wallet-kit-core/wallet-kit: expose accounts as ReadonlyWalletAccount instead of only the address | ||
wallet-kit-core: signTransaction and signAndExecuteTransaction methods mirror the ones in standard adapter | ||
wallet-kit-core: signTransaction and signAndExecuteTransaction methods mirror the ones in standard | ||
adapter | ||
- 68e60b02c: Changed where the options and requestType for signAndExecuteTransaction are. | ||
- dbe73d5a4: Add an optional `contentOptions` field to `SuiSignAndExecuteTransactionOptions` to specify which fields to include in `SuiTransactionBlockResponse` (e.g., transaction, effects, events, etc). By default, only the transaction digest will be included. | ||
- dbe73d5a4: Add an optional `contentOptions` field to `SuiSignAndExecuteTransactionOptions` to | ||
specify which fields to include in `SuiTransactionBlockResponse` (e.g., transaction, effects, | ||
events, etc). By default, only the transaction digest will be included. | ||
### Patch Changes | ||
- bf545c7d0: Add `features` prop to wallet kit that allows dapps to define which features they require to function properly. | ||
- bf545c7d0: Add `features` prop to wallet kit that allows dapps to define which features they | ||
require to function properly. | ||
- Updated dependencies [956ec28eb] | ||
@@ -608,3 +640,4 @@ - Updated dependencies [4adfbff73] | ||
- 473005d8f: Add protocol_version to CheckpointSummary and SuiSystemObject. Consolidate end-of-epoch information in CheckpointSummary. | ||
- 473005d8f: Add protocol_version to CheckpointSummary and SuiSystemObject. Consolidate end-of-epoch | ||
information in CheckpointSummary. | ||
@@ -633,3 +666,4 @@ ### Patch Changes | ||
- 96e883fc1: Update wallet adapter and wallet standard to support passing through the desired request type. | ||
- 96e883fc1: Update wallet adapter and wallet standard to support passing through the desired | ||
request type. | ||
@@ -801,4 +835,6 @@ ### Patch Changes | ||
- 5ac98bc9a: Introduce new wallet adapter based on the Wallet Standard. This wallet adapter automatically detects wallets that adhere to the standard interface. | ||
- 5ac98bc9a: Introduce new "wallet-standard" package which can be used to build wallets that are compatible with the Wallet Standard. | ||
- 5ac98bc9a: Introduce new wallet adapter based on the Wallet Standard. This wallet adapter | ||
automatically detects wallets that adhere to the standard interface. | ||
- 5ac98bc9a: Introduce new "wallet-standard" package which can be used to build wallets that are | ||
compatible with the Wallet Standard. | ||
@@ -805,0 +841,0 @@ ### Patch Changes |
{ | ||
"name": "@mysten/wallet-standard", | ||
"version": "0.12.11", | ||
"version": "0.12.12", | ||
"description": "A suite of standard utilities for implementing wallets based on the Wallet Standard.", | ||
@@ -25,7 +25,7 @@ "license": "Apache-2.0", | ||
"@wallet-standard/core": "1.0.3", | ||
"@mysten/sui": "1.2.1" | ||
"@mysten/sui": "1.3.0" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.3.3", | ||
"typescript-json-schema": "^0.63.0", | ||
"typescript": "^5.5.3", | ||
"typescript-json-schema": "^0.64.0", | ||
"@mysten/build-scripts": "0.0.0" | ||
@@ -32,0 +32,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
241936
+ Added@mysten/bcs@1.0.3(transitive)
+ Added@mysten/sui@1.3.0(transitive)
+ Addedbase-x@5.0.0(transitive)
+ Addedbs58@6.0.0(transitive)
+ Addedvalibot@0.36.0(transitive)
- Removed@mysten/bcs@1.0.2(transitive)
- Removed@mysten/sui@1.2.1(transitive)
- Removedbase-x@4.0.0(transitive)
- Removedbs58@5.0.0(transitive)
- Removedvalibot@0.25.0(transitive)
Updated@mysten/sui@1.3.0