@settlemint/sdk-cli 1.1.9-prd6e0e922 → 1.1.9-prdf824b88
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 +23 -53
- package/dist/cli.js.map +6 -6
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -274462,7 +274462,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
274462
274462
|
var package_default = {
|
274463
274463
|
name: "@settlemint/sdk-cli",
|
274464
274464
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
274465
|
-
version: "1.1.9-
|
274465
|
+
version: "1.1.9-prdf824b88",
|
274466
274466
|
type: "module",
|
274467
274467
|
private: false,
|
274468
274468
|
license: "FSL-1.1-MIT",
|
@@ -274510,8 +274510,8 @@ var package_default = {
|
|
274510
274510
|
"@inquirer/input": "4.1.6",
|
274511
274511
|
"@inquirer/password": "4.0.9",
|
274512
274512
|
"@inquirer/select": "4.0.9",
|
274513
|
-
"@settlemint/sdk-js": "1.1.9-
|
274514
|
-
"@settlemint/sdk-utils": "1.1.9-
|
274513
|
+
"@settlemint/sdk-js": "1.1.9-prdf824b88",
|
274514
|
+
"@settlemint/sdk-utils": "1.1.9-prdf824b88",
|
274515
274515
|
"@types/node": "22.13.5",
|
274516
274516
|
"@types/semver": "7.5.8",
|
274517
274517
|
"@types/which": "3.0.4",
|
@@ -278629,13 +278629,7 @@ export const { client: hasuraClient, graphql: hasuraGraphql } = createHasuraClie
|
|
278629
278629
|
introspection: introspection;
|
278630
278630
|
disableMasking: true;
|
278631
278631
|
scalars: {
|
278632
|
-
|
278633
|
-
JSON: string;
|
278634
|
-
Bytes: string;
|
278635
|
-
Int8: string;
|
278636
|
-
BigInt: string;
|
278637
|
-
BigDecimal: string;
|
278638
|
-
Timestamp: string;
|
278632
|
+
timestamp: string;
|
278639
278633
|
timestampz: string;
|
278640
278634
|
uuid: string;
|
278641
278635
|
date: string;
|
@@ -278696,22 +278690,8 @@ export const { client: portalClient, graphql: portalGraphql } = createPortalClie
|
|
278696
278690
|
introspection: introspection;
|
278697
278691
|
disableMasking: true;
|
278698
278692
|
scalars: {
|
278699
|
-
|
278700
|
-
JSON:
|
278701
|
-
Bytes: string;
|
278702
|
-
Int8: string;
|
278703
|
-
BigInt: string;
|
278704
|
-
BigDecimal: string;
|
278705
|
-
Timestamp: string;
|
278706
|
-
timestampz: string;
|
278707
|
-
uuid: string;
|
278708
|
-
date: string;
|
278709
|
-
time: string;
|
278710
|
-
jsonb: string;
|
278711
|
-
numeric: string;
|
278712
|
-
interval: string;
|
278713
|
-
geometry: string;
|
278714
|
-
geography: string;
|
278693
|
+
/** Used for metadata field */
|
278694
|
+
JSON: unknown;
|
278715
278695
|
};
|
278716
278696
|
}>({
|
278717
278697
|
instance: process.env.SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT!,
|
@@ -278778,23 +278758,13 @@ async function codegenTheGraph(env2, subgraphNames) {
|
|
278778
278758
|
export const { client: ${graphqlClientVariable}, graphql: ${graphqlVariable} } = createTheGraphClient<{
|
278779
278759
|
introspection: ${introspectionVariable};
|
278780
278760
|
disableMasking: true;
|
278761
|
+
// https://thegraph.com/docs/en/subgraphs/developing/creating/ql-schema/#built-in-scalar-types
|
278781
278762
|
scalars: {
|
278782
|
-
DateTime: string;
|
278783
|
-
JSON: string;
|
278784
278763
|
Bytes: string;
|
278785
278764
|
Int8: string;
|
278786
278765
|
BigInt: string;
|
278787
278766
|
BigDecimal: string;
|
278788
278767
|
Timestamp: string;
|
278789
|
-
timestampz: string;
|
278790
|
-
uuid: string;
|
278791
|
-
date: string;
|
278792
|
-
time: string;
|
278793
|
-
jsonb: string;
|
278794
|
-
numeric: string;
|
278795
|
-
interval: string;
|
278796
|
-
geometry: string;
|
278797
|
-
geography: string;
|
278798
278768
|
};
|
278799
278769
|
}>({
|
278800
278770
|
instances: JSON.parse(process.env.SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS || '[]'),
|
@@ -280193,22 +280163,22 @@ export const { client: blockscoutClient, graphql: blockscoutGraphql } = createBl
|
|
280193
280163
|
introspection: introspection;
|
280194
280164
|
disableMasking: true;
|
280195
280165
|
scalars: {
|
280166
|
+
/** 40 hex characters (160 bits/20 bytes) derived from the public key, prefixed with 0x */
|
280167
|
+
AddressHash: string;
|
280168
|
+
/** Unpadded big-endian hexadecimal number where each byte pair maps to underlying binary */
|
280169
|
+
Data: string;
|
280170
|
+
/** ISO8601 formatted UTC datetime string */
|
280196
280171
|
DateTime: string;
|
280197
|
-
|
280198
|
-
|
280199
|
-
|
280200
|
-
|
280201
|
-
|
280202
|
-
|
280203
|
-
|
280204
|
-
|
280205
|
-
|
280206
|
-
|
280207
|
-
jsonb: string;
|
280208
|
-
numeric: string;
|
280209
|
-
interval: string;
|
280210
|
-
geometry: string;
|
280211
|
-
geography: string;
|
280172
|
+
/** String representation of a signed double-precision decimal value */
|
280173
|
+
Decimal: string;
|
280174
|
+
/** 32-byte KECCAK-256 hash */
|
280175
|
+
FullHash: string;
|
280176
|
+
/** Arbitrary JSON string data as UTF-8 */
|
280177
|
+
Json: string;
|
280178
|
+
/** 16 hex character (128 bits/8 bytes) nonce from Proof-of-Work */
|
280179
|
+
NonceHash: string;
|
280180
|
+
/** Smallest fractional unit of Ether, represented as a string for integer math */
|
280181
|
+
Wei: string;
|
280212
280182
|
};
|
280213
280183
|
}>({
|
280214
280184
|
instance: process.env.SETTLEMINT_BLOCKSCOUT_ENDPOINT!,
|
@@ -285712,4 +285682,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
285712
285682
|
// src/cli.ts
|
285713
285683
|
sdkCliCommand();
|
285714
285684
|
|
285715
|
-
//# debugId=
|
285685
|
+
//# debugId=DC4179EAC3C521A964756E2164756E21
|