@settlemint/sdk-cli 2.4.0-prec526eee → 2.4.0-prf263ce2b
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 +10 -9
- package/dist/cli.js.map +5 -5
- package/package.json +6 -6
package/dist/cli.js
CHANGED
@@ -231623,7 +231623,7 @@ function size(value4) {
|
|
231623
231623
|
var init_size = () => {};
|
231624
231624
|
|
231625
231625
|
// ../../node_modules/viem/_esm/errors/version.js
|
231626
|
-
var version5 = "2.31.
|
231626
|
+
var version5 = "2.31.3";
|
231627
231627
|
|
231628
231628
|
// ../../node_modules/viem/_esm/errors/base.js
|
231629
231629
|
function walk(err, fn) {
|
@@ -263840,7 +263840,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
263840
263840
|
var package_default = {
|
263841
263841
|
name: "@settlemint/sdk-cli",
|
263842
263842
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
263843
|
-
version: "2.4.0-
|
263843
|
+
version: "2.4.0-prf263ce2b",
|
263844
263844
|
type: "module",
|
263845
263845
|
private: false,
|
263846
263846
|
license: "FSL-1.1-MIT",
|
@@ -263889,10 +263889,10 @@ var package_default = {
|
|
263889
263889
|
"@inquirer/input": "4.1.12",
|
263890
263890
|
"@inquirer/password": "4.0.15",
|
263891
263891
|
"@inquirer/select": "4.2.3",
|
263892
|
-
"@settlemint/sdk-js": "2.4.0-
|
263893
|
-
"@settlemint/sdk-utils": "2.4.0-
|
263894
|
-
"@settlemint/sdk-viem": "2.4.0-
|
263895
|
-
"@types/node": "24.0.
|
263892
|
+
"@settlemint/sdk-js": "2.4.0-prf263ce2b",
|
263893
|
+
"@settlemint/sdk-utils": "2.4.0-prf263ce2b",
|
263894
|
+
"@settlemint/sdk-viem": "2.4.0-prf263ce2b",
|
263895
|
+
"@types/node": "24.0.3",
|
263896
263896
|
"@types/semver": "7.7.0",
|
263897
263897
|
"@types/which": "3.0.4",
|
263898
263898
|
"get-tsconfig": "4.10.1",
|
@@ -263900,7 +263900,7 @@ var package_default = {
|
|
263900
263900
|
"is-in-ci": "1.0.0",
|
263901
263901
|
semver: "7.7.2",
|
263902
263902
|
slugify: "1.6.6",
|
263903
|
-
viem: "2.31.
|
263903
|
+
viem: "2.31.3",
|
263904
263904
|
which: "5.0.0",
|
263905
263905
|
yaml: "2.8.0",
|
263906
263906
|
yoctocolors: "2.1.1"
|
@@ -307145,9 +307145,10 @@ async function simulateBlocks(client, parameters) {
|
|
307145
307145
|
const calls = block2.calls.map((call_) => {
|
307146
307146
|
const call2 = call_;
|
307147
307147
|
const account = call2.account ? parseAccount(call2.account) : undefined;
|
307148
|
+
const data = call2.abi ? encodeFunctionData(call2) : call2.data;
|
307148
307149
|
const request2 = {
|
307149
307150
|
...call2,
|
307150
|
-
data: call2.
|
307151
|
+
data: call2.dataSuffix ? concat2([data || "0x", call2.dataSuffix]) : data,
|
307151
307152
|
from: call2.from ?? account?.address
|
307152
307153
|
};
|
307153
307154
|
assertRequest(request2);
|
@@ -330089,4 +330090,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
330089
330090
|
// src/cli.ts
|
330090
330091
|
sdkCliCommand();
|
330091
330092
|
|
330092
|
-
//# debugId=
|
330093
|
+
//# debugId=8D42BB191ECD719864756E2164756E21
|