@interest-protocol/vortex-sdk 4.3.0 → 5.0.0
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/dist/constants.d.ts +4 -4
- package/dist/constants.d.ts.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/constants.ts +5 -5
- package/src/vortex.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interest-protocol/vortex-sdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"rimraf": "^6.0.1",
|
|
38
38
|
"ts-jest": "^29.1.1",
|
|
39
39
|
"tsup": "^8.3.5",
|
|
40
|
-
"@interest-protocol/
|
|
41
|
-
"@interest-protocol/
|
|
40
|
+
"@interest-protocol/typescript-config": "1.0.0",
|
|
41
|
+
"@interest-protocol/prettier-config": "1.0.0"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public",
|
package/src/constants.ts
CHANGED
|
@@ -73,15 +73,15 @@ export const ERROR_CODES = {
|
|
|
73
73
|
};
|
|
74
74
|
|
|
75
75
|
export const VORTEX_PACKAGE_ID =
|
|
76
|
-
'
|
|
76
|
+
'0x083c6d01af7707749d6c93e54deae4ef582ef71306f8faade671e9255ad4494c';
|
|
77
77
|
|
|
78
78
|
export const UPGRADE_CAP =
|
|
79
|
-
'
|
|
79
|
+
'0xc51649a7ecd42fff5bdf56ff6f7c9f0cad9cdb15c0c0ed4ce464314df821dfb4';
|
|
80
80
|
|
|
81
81
|
export const REGISTRY_OBJECT_ID =
|
|
82
|
-
'
|
|
82
|
+
'0x4189526def3e9af0a5cd5f24c3a1d736fff7792bbc6f320d02db6f15e47577ba';
|
|
83
83
|
|
|
84
|
-
export const INITIAL_SHARED_VERSION = '
|
|
84
|
+
export const INITIAL_SHARED_VERSION = '395367340';
|
|
85
85
|
|
|
86
86
|
export const LSK_FETCH_OFFSET = 'fetch_offset';
|
|
87
87
|
|
|
@@ -99,5 +99,5 @@ export const BASIS_POINTS = 10_000n;
|
|
|
99
99
|
|
|
100
100
|
export const VORTEX_POOL_IDS = {
|
|
101
101
|
[SUI_TYPE_ARG]:
|
|
102
|
-
'
|
|
102
|
+
'0x31d848dbd5a19cbfa99f880023cab2533766cca30267e9f45665acf9cfc9cc8c',
|
|
103
103
|
};
|
package/src/vortex.ts
CHANGED