@settlemint/sdk-cli 2.6.2-main13306384 → 2.6.2-main39fd337e
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 +13 -9
- package/dist/cli.js.map +4 -4
- package/package.json +6 -6
package/dist/cli.js
CHANGED
@@ -267215,7 +267215,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
267215
267215
|
var package_default = {
|
267216
267216
|
name: "@settlemint/sdk-cli",
|
267217
267217
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
267218
|
-
version: "2.6.2-
|
267218
|
+
version: "2.6.2-main39fd337e",
|
267219
267219
|
type: "module",
|
267220
267220
|
private: false,
|
267221
267221
|
license: "FSL-1.1-MIT",
|
@@ -267269,10 +267269,10 @@ var package_default = {
|
|
267269
267269
|
"@inquirer/input": "4.2.2",
|
267270
267270
|
"@inquirer/password": "4.0.18",
|
267271
267271
|
"@inquirer/select": "4.3.2",
|
267272
|
-
"@settlemint/sdk-hasura": "2.6.2-
|
267273
|
-
"@settlemint/sdk-js": "2.6.2-
|
267274
|
-
"@settlemint/sdk-utils": "2.6.2-
|
267275
|
-
"@settlemint/sdk-viem": "2.6.2-
|
267272
|
+
"@settlemint/sdk-hasura": "2.6.2-main39fd337e",
|
267273
|
+
"@settlemint/sdk-js": "2.6.2-main39fd337e",
|
267274
|
+
"@settlemint/sdk-utils": "2.6.2-main39fd337e",
|
267275
|
+
"@settlemint/sdk-viem": "2.6.2-main39fd337e",
|
267276
267276
|
"@types/node": "24.3.1",
|
267277
267277
|
"@types/semver": "7.7.1",
|
267278
267278
|
"@types/which": "3.0.4",
|
@@ -267289,7 +267289,7 @@ var package_default = {
|
|
267289
267289
|
},
|
267290
267290
|
peerDependencies: {
|
267291
267291
|
hardhat: "<= 4",
|
267292
|
-
"@settlemint/sdk-js": "2.6.2-
|
267292
|
+
"@settlemint/sdk-js": "2.6.2-main39fd337e"
|
267293
267293
|
},
|
267294
267294
|
peerDependenciesMeta: {
|
267295
267295
|
hardhat: {
|
@@ -269051,6 +269051,7 @@ var createBlockchainNetwork = graphql(`
|
|
269051
269051
|
$quorumGenesis: QuorumGenesisInput
|
269052
269052
|
$externalNodes: [BlockchainNetworkExternalNodeInput!]
|
269053
269053
|
$privateKeyId: ID
|
269054
|
+
$includePredeployedContracts: Boolean
|
269054
269055
|
) {
|
269055
269056
|
createBlockchainNetwork(
|
269056
269057
|
applicationId: $applicationId
|
@@ -269079,6 +269080,7 @@ var createBlockchainNetwork = graphql(`
|
|
269079
269080
|
quorumGenesis: $quorumGenesis
|
269080
269081
|
externalNodes: $externalNodes
|
269081
269082
|
keyMaterial: $privateKeyId
|
269083
|
+
includePredeployedContracts: $includePredeployedContracts
|
269082
269084
|
) {
|
269083
269085
|
...BlockchainNetwork
|
269084
269086
|
}
|
@@ -304557,7 +304559,7 @@ function blockchainNetworkBesuCreateCommand() {
|
|
304557
304559
|
subType: "Besu",
|
304558
304560
|
alias: "b",
|
304559
304561
|
execute: (cmd2, baseAction) => {
|
304560
|
-
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, {
|
304562
|
+
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, {
|
304561
304563
|
application,
|
304562
304564
|
chainId,
|
304563
304565
|
contractSizeLimit,
|
@@ -304570,6 +304572,7 @@ function blockchainNetworkBesuCreateCommand() {
|
|
304570
304572
|
secondsPerBlock,
|
304571
304573
|
size: size5,
|
304572
304574
|
type: type5,
|
304575
|
+
includePredeployedContracts,
|
304573
304576
|
...defaultArgs
|
304574
304577
|
}) => {
|
304575
304578
|
return baseAction({
|
@@ -304595,7 +304598,8 @@ function blockchainNetworkBesuCreateCommand() {
|
|
304595
304598
|
region: region2,
|
304596
304599
|
secondsPerBlock,
|
304597
304600
|
size: size5,
|
304598
|
-
type: type5
|
304601
|
+
type: type5,
|
304602
|
+
includePredeployedContracts
|
304599
304603
|
}));
|
304600
304604
|
await new Promise((resolve8) => setTimeout(resolve8, 1000));
|
304601
304605
|
const blockchainNetworkWithNodes = await showSpinner(() => settlemint.blockchainNetwork.read(result.uniqueName));
|
@@ -308589,4 +308593,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
308589
308593
|
// src/cli.ts
|
308590
308594
|
sdkCliCommand();
|
308591
308595
|
|
308592
|
-
//# debugId=
|
308596
|
+
//# debugId=1D9A3015C5348E3664756E2164756E21
|