@mysten/sui
Advanced tools
Comparing version 0.0.0-experimental-20240910215553 to 0.0.0-experimental-20240911075140
# @mysten/sui.js | ||
## 0.0.0-experimental-20240910215553 | ||
## 0.0.0-experimental-20240911075140 | ||
### Minor Changes | ||
- 2c96b06: Adds experimental named packages plugin | ||
- 1fd22cc: Require name to register global transaction plugins | ||
@@ -8,0 +9,0 @@ |
@@ -16,1 +16,3 @@ export { normalizedTypeToMoveTypeSignature, getPureBcsSchema } from './serializer.js'; | ||
export { Arguments } from './Arguments.js'; | ||
export { namedPackagesPlugin, type NamedPackagesPluginOptions, } from './plugins/NamedPackagesPlugin.js'; | ||
export { type NamedPackagesPluginCache } from './plugins/utils.js'; |
@@ -34,2 +34,3 @@ "use strict"; | ||
isTransaction: () => import_Transaction.isTransaction, | ||
namedPackagesPlugin: () => import_NamedPackagesPlugin.namedPackagesPlugin, | ||
normalizedTypeToMoveTypeSignature: () => import_serializer.normalizedTypeToMoveTypeSignature | ||
@@ -48,2 +49,3 @@ }); | ||
var import_Arguments = require("./Arguments.js"); | ||
var import_NamedPackagesPlugin = require("./plugins/NamedPackagesPlugin.js"); | ||
//# sourceMappingURL=index.js.map |
@@ -6,1 +6,2 @@ export { formatAddress, formatDigest } from './format.js'; | ||
export { SUI_DECIMALS, MIST_PER_SUI, MOVE_STDLIB_ADDRESS, SUI_FRAMEWORK_ADDRESS, SUI_SYSTEM_ADDRESS, SUI_CLOCK_OBJECT_ID, SUI_SYSTEM_MODULE_NAME, SUI_TYPE_ARG, SUI_SYSTEM_STATE_OBJECT_ID, } from './constants.js'; | ||
export { isValidNamedPackage, isValidNamedType } from './move-registry.js'; |
@@ -35,2 +35,4 @@ "use strict"; | ||
fromHEX: () => import_bcs.fromHEX, | ||
isValidNamedPackage: () => import_move_registry.isValidNamedPackage, | ||
isValidNamedType: () => import_move_registry.isValidNamedType, | ||
isValidSuiAddress: () => import_sui_types.isValidSuiAddress, | ||
@@ -54,2 +56,3 @@ isValidSuiNSName: () => import_suins.isValidSuiNSName, | ||
var import_constants = require("./constants.js"); | ||
var import_move_registry = require("./move-registry.js"); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
export declare const PACKAGE_VERSION = "0.0.0-experimental-20240910215553"; | ||
export declare const PACKAGE_VERSION = "0.0.0-experimental-20240911075140"; | ||
export declare const TARGETED_RPC_VERSION = "1.34.0"; |
@@ -25,4 +25,4 @@ "use strict"; | ||
module.exports = __toCommonJS(version_exports); | ||
const PACKAGE_VERSION = "0.0.0-experimental-20240910215553"; | ||
const PACKAGE_VERSION = "0.0.0-experimental-20240911075140"; | ||
const TARGETED_RPC_VERSION = "1.34.0"; | ||
//# sourceMappingURL=version.js.map |
@@ -16,1 +16,3 @@ export { normalizedTypeToMoveTypeSignature, getPureBcsSchema } from './serializer.js'; | ||
export { Arguments } from './Arguments.js'; | ||
export { namedPackagesPlugin, type NamedPackagesPluginOptions, } from './plugins/NamedPackagesPlugin.js'; | ||
export { type NamedPackagesPluginCache } from './plugins/utils.js'; |
@@ -17,2 +17,5 @@ import { normalizedTypeToMoveTypeSignature, getPureBcsSchema } from "./serializer.js"; | ||
import { Arguments } from "./Arguments.js"; | ||
import { | ||
namedPackagesPlugin | ||
} from "./plugins/NamedPackagesPlugin.js"; | ||
export { | ||
@@ -32,4 +35,5 @@ Arguments, | ||
isTransaction, | ||
namedPackagesPlugin, | ||
normalizedTypeToMoveTypeSignature | ||
}; | ||
//# sourceMappingURL=index.js.map |
@@ -6,1 +6,2 @@ export { formatAddress, formatDigest } from './format.js'; | ||
export { SUI_DECIMALS, MIST_PER_SUI, MOVE_STDLIB_ADDRESS, SUI_FRAMEWORK_ADDRESS, SUI_SYSTEM_ADDRESS, SUI_CLOCK_OBJECT_ID, SUI_SYSTEM_MODULE_NAME, SUI_TYPE_ARG, SUI_SYSTEM_STATE_OBJECT_ID, } from './constants.js'; | ||
export { isValidNamedPackage, isValidNamedType } from './move-registry.js'; |
@@ -25,2 +25,3 @@ import { formatAddress, formatDigest } from "./format.js"; | ||
} from "./constants.js"; | ||
import { isValidNamedPackage, isValidNamedType } from "./move-registry.js"; | ||
export { | ||
@@ -41,2 +42,4 @@ MIST_PER_SUI, | ||
fromHEX, | ||
isValidNamedPackage, | ||
isValidNamedType, | ||
isValidSuiAddress, | ||
@@ -43,0 +46,0 @@ isValidSuiNSName, |
@@ -1,2 +0,2 @@ | ||
export declare const PACKAGE_VERSION = "0.0.0-experimental-20240910215553"; | ||
export declare const PACKAGE_VERSION = "0.0.0-experimental-20240911075140"; | ||
export declare const TARGETED_RPC_VERSION = "1.34.0"; |
@@ -1,2 +0,2 @@ | ||
const PACKAGE_VERSION = "0.0.0-experimental-20240910215553"; | ||
const PACKAGE_VERSION = "0.0.0-experimental-20240911075140"; | ||
const TARGETED_RPC_VERSION = "1.34.0"; | ||
@@ -3,0 +3,0 @@ export { |
@@ -6,3 +6,3 @@ { | ||
"homepage": "https://sdk.mystenlabs.com", | ||
"version": "0.0.0-experimental-20240910215553", | ||
"version": "0.0.0-experimental-20240911075140", | ||
"license": "Apache-2.0", | ||
@@ -9,0 +9,0 @@ "sideEffects": false, |
@@ -50,1 +50,8 @@ // Copyright (c) Mysten Labs, Inc. | ||
export { Arguments } from './Arguments.js'; | ||
export { | ||
namedPackagesPlugin, | ||
type NamedPackagesPluginOptions, | ||
} from './plugins/NamedPackagesPlugin.js'; | ||
export { type NamedPackagesPluginCache } from './plugins/utils.js'; |
@@ -30,1 +30,3 @@ // Copyright (c) Mysten Labs, Inc. | ||
} from './constants.js'; | ||
export { isValidNamedPackage, isValidNamedType } from './move-registry.js'; |
@@ -6,3 +6,3 @@ // Copyright (c) Mysten Labs, Inc. | ||
export const PACKAGE_VERSION = '0.0.0-experimental-20240910215553'; | ||
export const PACKAGE_VERSION = '0.0.0-experimental-20240911075140'; | ||
export const TARGETED_RPC_VERSION = '1.34.0'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5472545
644
92509