@sign-global/tokentable-wallets 1.1.0 → 1.2.2

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,19 @@
1
1
  # @sign-global/tokentable-wallets
2
2
 
3
+ ## 1.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @sign-global/tokentable-core@1.2.1
9
+
10
+ ## 1.2.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ - @sign-global/tokentable-core@1.2.0
16
+
3
17
  ## 1.1.0
4
18
 
5
19
  ### Minor Changes
package/dist/index.d.mts CHANGED
@@ -11,7 +11,8 @@ import { Cluster } from '@solana/web3.js';
11
11
  declare enum ChainType {
12
12
  Evm = "evm",
13
13
  Ton = "ton",
14
- Solana = "solana"
14
+ Solana = "solana",
15
+ Sui = "sui"
15
16
  }
16
17
  type ISignResult = {
17
18
  message: string;
package/dist/index.d.ts CHANGED
@@ -11,7 +11,8 @@ import { Cluster } from '@solana/web3.js';
11
11
  declare enum ChainType {
12
12
  Evm = "evm",
13
13
  Ton = "ton",
14
- Solana = "solana"
14
+ Solana = "solana",
15
+ Sui = "sui"
15
16
  }
16
17
  type ISignResult = {
17
18
  message: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sign-global/tokentable-wallets",
3
- "version": "1.1.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "@sign-global/tokentable-core": "1.1.0"
15
+ "@sign-global/tokentable-core": "1.2.1"
16
16
  },
17
17
  "peerDependencies": {
18
18
  "@rainbow-me/rainbowkit": "^2.2.3",
package/src/types.ts CHANGED
@@ -16,7 +16,8 @@ export enum ChainType {
16
16
  Evm = 'evm',
17
17
  Ton = 'ton',
18
18
  // Starknet = 'starknet',
19
- Solana = 'solana'
19
+ Solana = 'solana',
20
+ Sui = 'sui'
20
21
  }
21
22
  export enum ExtendedWalletType {
22
23
  UNISAT = 'unisat',