@mysten/wallet-standard 0.5.5 → 0.5.7

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,22 @@
1
1
  # @mysten/wallet-standard
2
2
 
3
+ ## 0.5.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [85719ac933]
8
+ - Updated dependencies [c3d9cc87f3]
9
+ - Updated dependencies [02a6063f82]
10
+ - @mysten/sui.js@0.34.1
11
+
12
+ ## 0.5.6
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [280821e0ab]
17
+ - Updated dependencies [6a9abe9e38]
18
+ - @mysten/sui.js@0.34.0
19
+
3
20
  ## 0.5.5
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mysten/wallet-standard",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
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>",
@@ -22,7 +22,7 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "@wallet-standard/core": "1.0.3",
25
- "@mysten/sui.js": "0.33.0"
25
+ "@mysten/sui.js": "0.34.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "tsup": "^6.7.0",
@@ -0,0 +1,21 @@
1
+ diff a/sdk/wallet-adapter/wallet-standard/src/chains.ts b/sdk/wallet-adapter/wallet-standard/src/chains.ts (rejected hunks)
2
+ @@ -10,13 +10,18 @@ export const SUI_TESTNET_CHAIN = "sui:testnet";
3
+ /** Sui Localnet */
4
+ export const SUI_LOCALNET_CHAIN = "sui:localnet";
5
+
6
+ +/** Sui Mainnet */
7
+ +export const SUI_MAINNET_CHAIN = "sui:mainnet";
8
+ +
9
+ export const SUI_CHAINS = [
10
+ SUI_DEVNET_CHAIN,
11
+ SUI_TESTNET_CHAIN,
12
+ SUI_LOCALNET_CHAIN,
13
+ + SUI_MAINNET_CHAIN,
14
+ ] as const;
15
+
16
+ export type SuiChain =
17
+ | typeof SUI_DEVNET_CHAIN
18
+ | typeof SUI_TESTNET_CHAIN
19
+ - | typeof SUI_LOCALNET_CHAIN;
20
+ + | typeof SUI_LOCALNET_CHAIN
21
+ + | typeof SUI_MAINNET_CHAIN;