@settlemint/sdk-cli 2.6.2-main74f87d24 → 2.6.2-pr4bce5e49
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/cli.js +14 -10
- package/dist/cli.js.map +4 -4
- package/package.json +7 -7
package/dist/cli.js
CHANGED
@@ -267202,7 +267202,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
267202
267202
|
var package_default = {
|
267203
267203
|
name: "@settlemint/sdk-cli",
|
267204
267204
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
267205
|
-
version: "2.6.2-
|
267205
|
+
version: "2.6.2-pr4bce5e49",
|
267206
267206
|
type: "module",
|
267207
267207
|
private: false,
|
267208
267208
|
license: "FSL-1.1-MIT",
|
@@ -267256,12 +267256,12 @@ var package_default = {
|
|
267256
267256
|
"@inquirer/input": "4.2.2",
|
267257
267257
|
"@inquirer/password": "4.0.18",
|
267258
267258
|
"@inquirer/select": "4.3.2",
|
267259
|
-
"@settlemint/sdk-hasura": "2.6.2-
|
267260
|
-
"@settlemint/sdk-js": "2.6.2-
|
267261
|
-
"@settlemint/sdk-utils": "2.6.2-
|
267262
|
-
"@settlemint/sdk-viem": "2.6.2-
|
267259
|
+
"@settlemint/sdk-hasura": "2.6.2-pr4bce5e49",
|
267260
|
+
"@settlemint/sdk-js": "2.6.2-pr4bce5e49",
|
267261
|
+
"@settlemint/sdk-utils": "2.6.2-pr4bce5e49",
|
267262
|
+
"@settlemint/sdk-viem": "2.6.2-pr4bce5e49",
|
267263
267263
|
"@types/node": "24.3.0",
|
267264
|
-
"@types/semver": "7.7.
|
267264
|
+
"@types/semver": "7.7.1",
|
267265
267265
|
"@types/which": "3.0.4",
|
267266
267266
|
"get-tsconfig": "4.10.1",
|
267267
267267
|
giget: "2.0.0",
|
@@ -267276,7 +267276,7 @@ var package_default = {
|
|
267276
267276
|
},
|
267277
267277
|
peerDependencies: {
|
267278
267278
|
hardhat: "<= 4",
|
267279
|
-
"@settlemint/sdk-js": "2.6.2-
|
267279
|
+
"@settlemint/sdk-js": "2.6.2-pr4bce5e49"
|
267280
267280
|
},
|
267281
267281
|
peerDependenciesMeta: {
|
267282
267282
|
hardhat: {
|
@@ -269038,6 +269038,7 @@ var createBlockchainNetwork = graphql(`
|
|
269038
269038
|
$quorumGenesis: QuorumGenesisInput
|
269039
269039
|
$externalNodes: [BlockchainNetworkExternalNodeInput!]
|
269040
269040
|
$privateKeyId: ID
|
269041
|
+
$includePredeployedContracts: Boolean
|
269041
269042
|
) {
|
269042
269043
|
createBlockchainNetwork(
|
269043
269044
|
applicationId: $applicationId
|
@@ -269066,6 +269067,7 @@ var createBlockchainNetwork = graphql(`
|
|
269066
269067
|
quorumGenesis: $quorumGenesis
|
269067
269068
|
externalNodes: $externalNodes
|
269068
269069
|
keyMaterial: $privateKeyId
|
269070
|
+
includePredeployedContracts: $includePredeployedContracts
|
269069
269071
|
) {
|
269070
269072
|
...BlockchainNetwork
|
269071
269073
|
}
|
@@ -304463,7 +304465,7 @@ function blockchainNetworkBesuCreateCommand() {
|
|
304463
304465
|
subType: "Besu",
|
304464
304466
|
alias: "b",
|
304465
304467
|
execute: (cmd2, baseAction) => {
|
304466
|
-
addClusterServiceArgs(cmd2).option("--app, --application <application>", "The unique name of the application to create the network in (defaults to application from env)").requiredOption("--node-name <name>", "Name of the node").option("--chain-id <chainId>", "The chain ID for the network", parseNumber).option("--contract-size-limit <limit>", "Maximum contract size limit", parseNumber).option("--evm-stack-size <size>", "EVM stack size", parseNumber).option("--gas-limit <limit>", "Block gas limit").option("--gas-price <price>", "Gas price in wei", parseNumber).option("--seconds-per-block <seconds>", "Block time in seconds", parseNumber).action(async (name4, {
|
304468
|
+
addClusterServiceArgs(cmd2).option("--app, --application <application>", "The unique name of the application to create the network in (defaults to application from env)").requiredOption("--node-name <name>", "Name of the node").option("--chain-id <chainId>", "The chain ID for the network", parseNumber).option("--contract-size-limit <limit>", "Maximum contract size limit", parseNumber).option("--evm-stack-size <size>", "EVM stack size", parseNumber).option("--gas-limit <limit>", "Block gas limit").option("--gas-price <price>", "Gas price in wei", parseNumber).option("--seconds-per-block <seconds>", "Block time in seconds", parseNumber).option("--includePredeployedContracts", "Include predeployed contracts in the genesis file").action(async (name4, {
|
304467
304469
|
application,
|
304468
304470
|
chainId,
|
304469
304471
|
contractSizeLimit,
|
@@ -304476,6 +304478,7 @@ function blockchainNetworkBesuCreateCommand() {
|
|
304476
304478
|
secondsPerBlock,
|
304477
304479
|
size: size5,
|
304478
304480
|
type: type5,
|
304481
|
+
includePredeployedContracts,
|
304479
304482
|
...defaultArgs
|
304480
304483
|
}) => {
|
304481
304484
|
return baseAction({
|
@@ -304501,7 +304504,8 @@ function blockchainNetworkBesuCreateCommand() {
|
|
304501
304504
|
region: region2,
|
304502
304505
|
secondsPerBlock,
|
304503
304506
|
size: size5,
|
304504
|
-
type: type5
|
304507
|
+
type: type5,
|
304508
|
+
includePredeployedContracts
|
304505
304509
|
}));
|
304506
304510
|
await new Promise((resolve8) => setTimeout(resolve8, 1000));
|
304507
304511
|
const blockchainNetworkWithNodes = await showSpinner(() => settlemint.blockchainNetwork.read(result.uniqueName));
|
@@ -308495,4 +308499,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
308495
308499
|
// src/cli.ts
|
308496
308500
|
sdkCliCommand();
|
308497
308501
|
|
308498
|
-
//# debugId=
|
308502
|
+
//# debugId=9B5DB0CDA080E24964756E2164756E21
|