@mysten/sui 1.37.2 → 1.37.3
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 +14 -0
- package/dist/cjs/transactions/Arguments.d.ts +6 -2
- package/dist/cjs/transactions/object.d.ts +6 -2
- package/dist/cjs/transactions/object.js +53 -4
- package/dist/cjs/transactions/object.js.map +2 -2
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/version.js.map +1 -1
- package/dist/esm/transactions/Arguments.d.ts +6 -2
- package/dist/esm/transactions/object.d.ts +6 -2
- package/dist/esm/transactions/object.js +53 -4
- package/dist/esm/transactions/object.js.map +2 -2
- package/dist/esm/version.d.ts +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/transactions/object.ts +59 -4
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @mysten/sui.js
|
|
2
2
|
|
|
3
|
+
## 1.37.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8ff1471: Fix system objects to avoid unnecessary network calls
|
|
8
|
+
- Clock (0x6) and Random (0x8) now return fully resolved SharedObject references with mutable:
|
|
9
|
+
false
|
|
10
|
+
- System (0x5) and DenyList (0x403) now accept optional `mutable` parameter:
|
|
11
|
+
- When undefined, returns UnresolvedObject with initialSharedVersion for backward compatibility
|
|
12
|
+
- When explicitly set, returns SharedObjectRef with the specified mutability
|
|
13
|
+
- Improves transaction building performance by avoiding unnecessary network lookups
|
|
14
|
+
|
|
15
|
+
Fixes #424
|
|
16
|
+
|
|
3
17
|
## 1.37.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -6,10 +6,14 @@ export declare const Arguments: {
|
|
|
6
6
|
pure: ReturnType<typeof createPure<(tx: Transaction) => Argument>>;
|
|
7
7
|
object: {
|
|
8
8
|
(value: import("./Transaction.js").TransactionObjectInput): TransactionObjectArgument;
|
|
9
|
-
system(
|
|
9
|
+
system(options?: {
|
|
10
|
+
mutable?: boolean;
|
|
11
|
+
} | undefined): TransactionObjectArgument;
|
|
10
12
|
clock(): TransactionObjectArgument;
|
|
11
13
|
random(): TransactionObjectArgument;
|
|
12
|
-
denyList(
|
|
14
|
+
denyList(options?: {
|
|
15
|
+
mutable?: boolean;
|
|
16
|
+
} | undefined): TransactionObjectArgument;
|
|
13
17
|
option({ type, value }: {
|
|
14
18
|
type: string;
|
|
15
19
|
value: import("./Transaction.js").TransactionObjectInput | null;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import type { Transaction, TransactionObjectInput } from './Transaction.js';
|
|
2
2
|
export declare function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T): {
|
|
3
3
|
(value: TransactionObjectInput): T;
|
|
4
|
-
system(
|
|
4
|
+
system(options?: {
|
|
5
|
+
mutable?: boolean;
|
|
6
|
+
}): T;
|
|
5
7
|
clock(): T;
|
|
6
8
|
random(): T;
|
|
7
|
-
denyList(
|
|
9
|
+
denyList(options?: {
|
|
10
|
+
mutable?: boolean;
|
|
11
|
+
}): T;
|
|
8
12
|
option({ type, value }: {
|
|
9
13
|
type: string;
|
|
10
14
|
value: TransactionObjectInput | null;
|
|
@@ -21,14 +21,63 @@ __export(object_exports, {
|
|
|
21
21
|
createObjectMethods: () => createObjectMethods
|
|
22
22
|
});
|
|
23
23
|
module.exports = __toCommonJS(object_exports);
|
|
24
|
+
var import_Inputs = require("./Inputs.js");
|
|
24
25
|
function createObjectMethods(makeObject) {
|
|
25
26
|
function object(value) {
|
|
26
27
|
return makeObject(value);
|
|
27
28
|
}
|
|
28
|
-
object.system = () =>
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
object.system = (options) => {
|
|
30
|
+
const mutable = options?.mutable;
|
|
31
|
+
if (mutable !== void 0) {
|
|
32
|
+
return object(
|
|
33
|
+
import_Inputs.Inputs.SharedObjectRef({
|
|
34
|
+
objectId: "0x5",
|
|
35
|
+
initialSharedVersion: 1,
|
|
36
|
+
mutable
|
|
37
|
+
})
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
return object({
|
|
41
|
+
$kind: "UnresolvedObject",
|
|
42
|
+
UnresolvedObject: {
|
|
43
|
+
objectId: "0x5",
|
|
44
|
+
initialSharedVersion: 1
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
};
|
|
48
|
+
object.clock = () => object(
|
|
49
|
+
import_Inputs.Inputs.SharedObjectRef({
|
|
50
|
+
objectId: "0x6",
|
|
51
|
+
initialSharedVersion: 1,
|
|
52
|
+
mutable: false
|
|
53
|
+
})
|
|
54
|
+
);
|
|
55
|
+
object.random = () => object(
|
|
56
|
+
import_Inputs.Inputs.SharedObjectRef({
|
|
57
|
+
objectId: "0x8",
|
|
58
|
+
initialSharedVersion: 1,
|
|
59
|
+
mutable: false
|
|
60
|
+
})
|
|
61
|
+
);
|
|
62
|
+
object.denyList = (options) => {
|
|
63
|
+
const mutable = options?.mutable;
|
|
64
|
+
if (mutable !== void 0) {
|
|
65
|
+
return object(
|
|
66
|
+
import_Inputs.Inputs.SharedObjectRef({
|
|
67
|
+
objectId: "0x403",
|
|
68
|
+
initialSharedVersion: 1,
|
|
69
|
+
mutable
|
|
70
|
+
})
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
return object({
|
|
74
|
+
$kind: "UnresolvedObject",
|
|
75
|
+
UnresolvedObject: {
|
|
76
|
+
objectId: "0x403",
|
|
77
|
+
initialSharedVersion: 1
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
};
|
|
32
81
|
object.option = ({ type, value }) => (tx) => tx.moveCall({
|
|
33
82
|
typeArguments: [type],
|
|
34
83
|
target: `0x1::option::${value === null ? "none" : "some"}`,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/transactions/object.ts"],
|
|
4
|
-
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport type { Transaction, TransactionObjectInput } from './Transaction.js';\n\nexport function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T) {\n\tfunction object(value: TransactionObjectInput) {\n\t\treturn makeObject(value);\n\t}\n\n\tobject.system = () => object('0x5');\n\tobject.clock = ()
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport type { Transaction, TransactionObjectInput } from './Transaction.js';\nimport { Inputs } from './Inputs.js';\n\nexport function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T) {\n\tfunction object(value: TransactionObjectInput) {\n\t\treturn makeObject(value);\n\t}\n\n\tobject.system = (options?: { mutable?: boolean }) => {\n\t\tconst mutable = options?.mutable;\n\n\t\tif (mutable !== undefined) {\n\t\t\treturn object(\n\t\t\t\tInputs.SharedObjectRef({\n\t\t\t\t\tobjectId: '0x5',\n\t\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\t\tmutable,\n\t\t\t\t}),\n\t\t\t);\n\t\t}\n\n\t\treturn object({\n\t\t\t$kind: 'UnresolvedObject',\n\t\t\tUnresolvedObject: {\n\t\t\t\tobjectId: '0x5',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t},\n\t\t});\n\t};\n\tobject.clock = () =>\n\t\tobject(\n\t\t\tInputs.SharedObjectRef({\n\t\t\t\tobjectId: '0x6',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\tmutable: false,\n\t\t\t}),\n\t\t);\n\tobject.random = () =>\n\t\tobject(\n\t\t\tInputs.SharedObjectRef({\n\t\t\t\tobjectId: '0x8',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\tmutable: false,\n\t\t\t}),\n\t\t);\n\tobject.denyList = (options?: { mutable?: boolean }) => {\n\t\tconst mutable = options?.mutable;\n\n\t\tif (mutable !== undefined) {\n\t\t\treturn object(\n\t\t\t\tInputs.SharedObjectRef({\n\t\t\t\t\tobjectId: '0x403',\n\t\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\t\tmutable,\n\t\t\t\t}),\n\t\t\t);\n\t\t}\n\n\t\treturn object({\n\t\t\t$kind: 'UnresolvedObject',\n\t\t\tUnresolvedObject: {\n\t\t\t\tobjectId: '0x403',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t},\n\t\t});\n\t};\n\tobject.option =\n\t\t({ type, value }: { type: string; value: TransactionObjectInput | null }) =>\n\t\t(tx: Transaction) =>\n\t\t\ttx.moveCall({\n\t\t\t\ttypeArguments: [type],\n\t\t\t\ttarget: `0x1::option::${value === null ? 'none' : 'some'}`,\n\t\t\t\targuments: value === null ? [] : [tx.object(value)],\n\t\t\t});\n\n\treturn object;\n}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAIA,oBAAuB;AAEhB,SAAS,oBAAuB,YAAkD;AACxF,WAAS,OAAO,OAA+B;AAC9C,WAAO,WAAW,KAAK;AAAA,EACxB;AAEA,SAAO,SAAS,CAAC,YAAoC;AACpD,UAAM,UAAU,SAAS;AAEzB,QAAI,YAAY,QAAW;AAC1B,aAAO;AAAA,QACN,qBAAO,gBAAgB;AAAA,UACtB,UAAU;AAAA,UACV,sBAAsB;AAAA,UACtB;AAAA,QACD,CAAC;AAAA,MACF;AAAA,IACD;AAEA,WAAO,OAAO;AAAA,MACb,OAAO;AAAA,MACP,kBAAkB;AAAA,QACjB,UAAU;AAAA,QACV,sBAAsB;AAAA,MACvB;AAAA,IACD,CAAC;AAAA,EACF;AACA,SAAO,QAAQ,MACd;AAAA,IACC,qBAAO,gBAAgB;AAAA,MACtB,UAAU;AAAA,MACV,sBAAsB;AAAA,MACtB,SAAS;AAAA,IACV,CAAC;AAAA,EACF;AACD,SAAO,SAAS,MACf;AAAA,IACC,qBAAO,gBAAgB;AAAA,MACtB,UAAU;AAAA,MACV,sBAAsB;AAAA,MACtB,SAAS;AAAA,IACV,CAAC;AAAA,EACF;AACD,SAAO,WAAW,CAAC,YAAoC;AACtD,UAAM,UAAU,SAAS;AAEzB,QAAI,YAAY,QAAW;AAC1B,aAAO;AAAA,QACN,qBAAO,gBAAgB;AAAA,UACtB,UAAU;AAAA,UACV,sBAAsB;AAAA,UACtB;AAAA,QACD,CAAC;AAAA,MACF;AAAA,IACD;AAEA,WAAO,OAAO;AAAA,MACb,OAAO;AAAA,MACP,kBAAkB;AAAA,QACjB,UAAU;AAAA,QACV,sBAAsB;AAAA,MACvB;AAAA,IACD,CAAC;AAAA,EACF;AACA,SAAO,SACN,CAAC,EAAE,MAAM,MAAM,MACf,CAAC,OACA,GAAG,SAAS;AAAA,IACX,eAAe,CAAC,IAAI;AAAA,IACpB,QAAQ,gBAAgB,UAAU,OAAO,SAAS,MAAM;AAAA,IACxD,WAAW,UAAU,OAAO,CAAC,IAAI,CAAC,GAAG,OAAO,KAAK,CAAC;AAAA,EACnD,CAAC;AAEH,SAAO;AACR;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "1.37.
|
|
1
|
+
export declare const PACKAGE_VERSION = "1.37.3";
|
|
2
2
|
export declare const TARGETED_RPC_VERSION = "1.55.0";
|
package/dist/cjs/version.js
CHANGED
|
@@ -22,6 +22,6 @@ __export(version_exports, {
|
|
|
22
22
|
TARGETED_RPC_VERSION: () => TARGETED_RPC_VERSION
|
|
23
23
|
});
|
|
24
24
|
module.exports = __toCommonJS(version_exports);
|
|
25
|
-
const PACKAGE_VERSION = "1.37.
|
|
25
|
+
const PACKAGE_VERSION = "1.37.3";
|
|
26
26
|
const TARGETED_RPC_VERSION = "1.55.0";
|
|
27
27
|
//# sourceMappingURL=version.js.map
|
package/dist/cjs/version.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/version.ts"],
|
|
4
|
-
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.3';\nexport const TARGETED_RPC_VERSION = '1.55.0';\n"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKO,MAAM,kBAAkB;AACxB,MAAM,uBAAuB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -6,10 +6,14 @@ export declare const Arguments: {
|
|
|
6
6
|
pure: ReturnType<typeof createPure<(tx: Transaction) => Argument>>;
|
|
7
7
|
object: {
|
|
8
8
|
(value: import("./Transaction.js").TransactionObjectInput): TransactionObjectArgument;
|
|
9
|
-
system(
|
|
9
|
+
system(options?: {
|
|
10
|
+
mutable?: boolean;
|
|
11
|
+
} | undefined): TransactionObjectArgument;
|
|
10
12
|
clock(): TransactionObjectArgument;
|
|
11
13
|
random(): TransactionObjectArgument;
|
|
12
|
-
denyList(
|
|
14
|
+
denyList(options?: {
|
|
15
|
+
mutable?: boolean;
|
|
16
|
+
} | undefined): TransactionObjectArgument;
|
|
13
17
|
option({ type, value }: {
|
|
14
18
|
type: string;
|
|
15
19
|
value: import("./Transaction.js").TransactionObjectInput | null;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import type { Transaction, TransactionObjectInput } from './Transaction.js';
|
|
2
2
|
export declare function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T): {
|
|
3
3
|
(value: TransactionObjectInput): T;
|
|
4
|
-
system(
|
|
4
|
+
system(options?: {
|
|
5
|
+
mutable?: boolean;
|
|
6
|
+
}): T;
|
|
5
7
|
clock(): T;
|
|
6
8
|
random(): T;
|
|
7
|
-
denyList(
|
|
9
|
+
denyList(options?: {
|
|
10
|
+
mutable?: boolean;
|
|
11
|
+
}): T;
|
|
8
12
|
option({ type, value }: {
|
|
9
13
|
type: string;
|
|
10
14
|
value: TransactionObjectInput | null;
|
|
@@ -1,11 +1,60 @@
|
|
|
1
|
+
import { Inputs } from "./Inputs.js";
|
|
1
2
|
function createObjectMethods(makeObject) {
|
|
2
3
|
function object(value) {
|
|
3
4
|
return makeObject(value);
|
|
4
5
|
}
|
|
5
|
-
object.system = () =>
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
object.system = (options) => {
|
|
7
|
+
const mutable = options?.mutable;
|
|
8
|
+
if (mutable !== void 0) {
|
|
9
|
+
return object(
|
|
10
|
+
Inputs.SharedObjectRef({
|
|
11
|
+
objectId: "0x5",
|
|
12
|
+
initialSharedVersion: 1,
|
|
13
|
+
mutable
|
|
14
|
+
})
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
return object({
|
|
18
|
+
$kind: "UnresolvedObject",
|
|
19
|
+
UnresolvedObject: {
|
|
20
|
+
objectId: "0x5",
|
|
21
|
+
initialSharedVersion: 1
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
object.clock = () => object(
|
|
26
|
+
Inputs.SharedObjectRef({
|
|
27
|
+
objectId: "0x6",
|
|
28
|
+
initialSharedVersion: 1,
|
|
29
|
+
mutable: false
|
|
30
|
+
})
|
|
31
|
+
);
|
|
32
|
+
object.random = () => object(
|
|
33
|
+
Inputs.SharedObjectRef({
|
|
34
|
+
objectId: "0x8",
|
|
35
|
+
initialSharedVersion: 1,
|
|
36
|
+
mutable: false
|
|
37
|
+
})
|
|
38
|
+
);
|
|
39
|
+
object.denyList = (options) => {
|
|
40
|
+
const mutable = options?.mutable;
|
|
41
|
+
if (mutable !== void 0) {
|
|
42
|
+
return object(
|
|
43
|
+
Inputs.SharedObjectRef({
|
|
44
|
+
objectId: "0x403",
|
|
45
|
+
initialSharedVersion: 1,
|
|
46
|
+
mutable
|
|
47
|
+
})
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
return object({
|
|
51
|
+
$kind: "UnresolvedObject",
|
|
52
|
+
UnresolvedObject: {
|
|
53
|
+
objectId: "0x403",
|
|
54
|
+
initialSharedVersion: 1
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
};
|
|
9
58
|
object.option = ({ type, value }) => (tx) => tx.moveCall({
|
|
10
59
|
typeArguments: [type],
|
|
11
60
|
target: `0x1::option::${value === null ? "none" : "some"}`,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/transactions/object.ts"],
|
|
4
|
-
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport type { Transaction, TransactionObjectInput } from './Transaction.js';\n\nexport function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T) {\n\tfunction object(value: TransactionObjectInput) {\n\t\treturn makeObject(value);\n\t}\n\n\tobject.system = () => object('0x5');\n\tobject.clock = ()
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport type { Transaction, TransactionObjectInput } from './Transaction.js';\nimport { Inputs } from './Inputs.js';\n\nexport function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T) {\n\tfunction object(value: TransactionObjectInput) {\n\t\treturn makeObject(value);\n\t}\n\n\tobject.system = (options?: { mutable?: boolean }) => {\n\t\tconst mutable = options?.mutable;\n\n\t\tif (mutable !== undefined) {\n\t\t\treturn object(\n\t\t\t\tInputs.SharedObjectRef({\n\t\t\t\t\tobjectId: '0x5',\n\t\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\t\tmutable,\n\t\t\t\t}),\n\t\t\t);\n\t\t}\n\n\t\treturn object({\n\t\t\t$kind: 'UnresolvedObject',\n\t\t\tUnresolvedObject: {\n\t\t\t\tobjectId: '0x5',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t},\n\t\t});\n\t};\n\tobject.clock = () =>\n\t\tobject(\n\t\t\tInputs.SharedObjectRef({\n\t\t\t\tobjectId: '0x6',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\tmutable: false,\n\t\t\t}),\n\t\t);\n\tobject.random = () =>\n\t\tobject(\n\t\t\tInputs.SharedObjectRef({\n\t\t\t\tobjectId: '0x8',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\tmutable: false,\n\t\t\t}),\n\t\t);\n\tobject.denyList = (options?: { mutable?: boolean }) => {\n\t\tconst mutable = options?.mutable;\n\n\t\tif (mutable !== undefined) {\n\t\t\treturn object(\n\t\t\t\tInputs.SharedObjectRef({\n\t\t\t\t\tobjectId: '0x403',\n\t\t\t\t\tinitialSharedVersion: 1,\n\t\t\t\t\tmutable,\n\t\t\t\t}),\n\t\t\t);\n\t\t}\n\n\t\treturn object({\n\t\t\t$kind: 'UnresolvedObject',\n\t\t\tUnresolvedObject: {\n\t\t\t\tobjectId: '0x403',\n\t\t\t\tinitialSharedVersion: 1,\n\t\t\t},\n\t\t});\n\t};\n\tobject.option =\n\t\t({ type, value }: { type: string; value: TransactionObjectInput | null }) =>\n\t\t(tx: Transaction) =>\n\t\t\ttx.moveCall({\n\t\t\t\ttypeArguments: [type],\n\t\t\t\ttarget: `0x1::option::${value === null ? 'none' : 'some'}`,\n\t\t\t\targuments: value === null ? [] : [tx.object(value)],\n\t\t\t});\n\n\treturn object;\n}\n"],
|
|
5
|
+
"mappings": "AAIA,SAAS,cAAc;AAEhB,SAAS,oBAAuB,YAAkD;AACxF,WAAS,OAAO,OAA+B;AAC9C,WAAO,WAAW,KAAK;AAAA,EACxB;AAEA,SAAO,SAAS,CAAC,YAAoC;AACpD,UAAM,UAAU,SAAS;AAEzB,QAAI,YAAY,QAAW;AAC1B,aAAO;AAAA,QACN,OAAO,gBAAgB;AAAA,UACtB,UAAU;AAAA,UACV,sBAAsB;AAAA,UACtB;AAAA,QACD,CAAC;AAAA,MACF;AAAA,IACD;AAEA,WAAO,OAAO;AAAA,MACb,OAAO;AAAA,MACP,kBAAkB;AAAA,QACjB,UAAU;AAAA,QACV,sBAAsB;AAAA,MACvB;AAAA,IACD,CAAC;AAAA,EACF;AACA,SAAO,QAAQ,MACd;AAAA,IACC,OAAO,gBAAgB;AAAA,MACtB,UAAU;AAAA,MACV,sBAAsB;AAAA,MACtB,SAAS;AAAA,IACV,CAAC;AAAA,EACF;AACD,SAAO,SAAS,MACf;AAAA,IACC,OAAO,gBAAgB;AAAA,MACtB,UAAU;AAAA,MACV,sBAAsB;AAAA,MACtB,SAAS;AAAA,IACV,CAAC;AAAA,EACF;AACD,SAAO,WAAW,CAAC,YAAoC;AACtD,UAAM,UAAU,SAAS;AAEzB,QAAI,YAAY,QAAW;AAC1B,aAAO;AAAA,QACN,OAAO,gBAAgB;AAAA,UACtB,UAAU;AAAA,UACV,sBAAsB;AAAA,UACtB;AAAA,QACD,CAAC;AAAA,MACF;AAAA,IACD;AAEA,WAAO,OAAO;AAAA,MACb,OAAO;AAAA,MACP,kBAAkB;AAAA,QACjB,UAAU;AAAA,QACV,sBAAsB;AAAA,MACvB;AAAA,IACD,CAAC;AAAA,EACF;AACA,SAAO,SACN,CAAC,EAAE,MAAM,MAAM,MACf,CAAC,OACA,GAAG,SAAS;AAAA,IACX,eAAe,CAAC,IAAI;AAAA,IACpB,QAAQ,gBAAgB,UAAU,OAAO,SAAS,MAAM;AAAA,IACxD,WAAW,UAAU,OAAO,CAAC,IAAI,CAAC,GAAG,OAAO,KAAK,CAAC;AAAA,EACnD,CAAC;AAEH,SAAO;AACR;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "1.37.
|
|
1
|
+
export declare const PACKAGE_VERSION = "1.37.3";
|
|
2
2
|
export declare const TARGETED_RPC_VERSION = "1.55.0";
|
package/dist/esm/version.js
CHANGED
package/dist/esm/version.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/version.ts"],
|
|
4
|
-
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.3';\nexport const TARGETED_RPC_VERSION = '1.55.0';\n"],
|
|
5
5
|
"mappings": "AAKO,MAAM,kBAAkB;AACxB,MAAM,uBAAuB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|