@notus-labs/patara-tokens 1.0.21 → 1.0.23

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +6 -3
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -1,5 +1,8 @@
1
- import type { CoinMetadata } from '@mysten/sui/client';
2
- export interface CoinMetadataWithExternal extends CoinMetadata {
1
+ import type { SuiClientTypes } from '@mysten/sui/client';
2
+ export type CoinMetadata = SuiClientTypes.CoinMetadata;
3
+ export type CoinMetadataWithExternal = Omit<SuiClientTypes.CoinMetadata, 'id' | 'iconUrl'> & {
4
+ id?: string | null;
5
+ iconUrl?: string | null;
3
6
  verified: boolean;
4
7
  tags: string[];
5
- }
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notus-labs/patara-tokens",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "Patara Tokens List",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -54,6 +54,6 @@
54
54
  "typescript": "^5.0.0"
55
55
  },
56
56
  "dependencies": {
57
- "@mysten/sui": "^1.14.3"
57
+ "@mysten/sui": "^2.23.1"
58
58
  }
59
59
  }