@settlemint/sdk-cli 2.3.4-prd7e7b81a → 2.3.4-prde2946ff
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 -10
- package/dist/cli.js.map +6 -6
- package/package.json +3 -3
package/dist/cli.js
CHANGED
@@ -263120,7 +263120,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
263120
263120
|
var package_default = {
|
263121
263121
|
name: "@settlemint/sdk-cli",
|
263122
263122
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
263123
|
-
version: "2.3.4-
|
263123
|
+
version: "2.3.4-prde2946ff",
|
263124
263124
|
type: "module",
|
263125
263125
|
private: false,
|
263126
263126
|
license: "FSL-1.1-MIT",
|
@@ -263169,8 +263169,8 @@ var package_default = {
|
|
263169
263169
|
"@inquirer/input": "4.1.12",
|
263170
263170
|
"@inquirer/password": "4.0.15",
|
263171
263171
|
"@inquirer/select": "4.2.3",
|
263172
|
-
"@settlemint/sdk-js": "2.3.4-
|
263173
|
-
"@settlemint/sdk-utils": "2.3.4-
|
263172
|
+
"@settlemint/sdk-js": "2.3.4-prde2946ff",
|
263173
|
+
"@settlemint/sdk-utils": "2.3.4-prde2946ff",
|
263174
263174
|
"@types/node": "22.15.21",
|
263175
263175
|
"@types/semver": "7.7.0",
|
263176
263176
|
"@types/which": "3.0.4",
|
@@ -299684,7 +299684,7 @@ export const { client: hasuraClient, graphql: hasuraGraphql } = createHasuraClie
|
|
299684
299684
|
};
|
299685
299685
|
}>({
|
299686
299686
|
instance: process.env.SETTLEMINT_HASURA_ENDPOINT!,
|
299687
|
-
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN
|
299687
|
+
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN,
|
299688
299688
|
adminSecret: process.env.SETTLEMINT_HASURA_ADMIN_SECRET!,
|
299689
299689
|
}, {
|
299690
299690
|
fetch: requestLogger(logger, "hasura", fetch) as typeof fetch,
|
@@ -299745,14 +299745,14 @@ export const { client: portalClient, graphql: portalGraphql } = createPortalClie
|
|
299745
299745
|
};
|
299746
299746
|
}>({
|
299747
299747
|
instance: process.env.SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT!,
|
299748
|
-
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN
|
299748
|
+
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN,
|
299749
299749
|
}, {
|
299750
299750
|
fetch: requestLogger(logger, "portal", fetch) as typeof fetch,
|
299751
299751
|
});
|
299752
299752
|
|
299753
299753
|
export const getPortalWebsocketClient = getWebsocketClient({
|
299754
299754
|
portalGraphqlEndpoint: process.env.SETTLEMINT_PORTAL_GRAPHQL_ENDPOINT!,
|
299755
|
-
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN
|
299755
|
+
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN,
|
299756
299756
|
});
|
299757
299757
|
`;
|
299758
299758
|
await writeTemplate(template, "/lib/settlemint", "portal.ts");
|
@@ -299935,7 +299935,7 @@ export const { client: ${graphqlClientVariable}, graphql: ${graphqlVariable} } =
|
|
299935
299935
|
};
|
299936
299936
|
}>({
|
299937
299937
|
instances: JSON.parse(process.env.SETTLEMINT_THEGRAPH_SUBGRAPHS_ENDPOINTS || '[]'),
|
299938
|
-
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN
|
299938
|
+
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN,
|
299939
299939
|
subgraphName: "${name3}",
|
299940
299940
|
cache: "force-cache",
|
299941
299941
|
}, {
|
@@ -301524,7 +301524,7 @@ export const { client: blockscoutClient, graphql: blockscoutGraphql } = createBl
|
|
301524
301524
|
};
|
301525
301525
|
}>({
|
301526
301526
|
instance: process.env.SETTLEMINT_BLOCKSCOUT_ENDPOINT!,
|
301527
|
-
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN
|
301527
|
+
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN,
|
301528
301528
|
}, {
|
301529
301529
|
fetch: requestLogger(logger, "blockscout", fetch) as typeof fetch,
|
301530
301530
|
});
|
@@ -301551,7 +301551,7 @@ async function codegenIpfs(env2) {
|
|
301551
301551
|
|
301552
301552
|
export const { client } = createServerIpfsClient({
|
301553
301553
|
instance: process.env.SETTLEMINT_IPFS_API_ENDPOINT!,
|
301554
|
-
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN
|
301554
|
+
accessToken: process.env.SETTLEMINT_ACCESS_TOKEN,
|
301555
301555
|
});`;
|
301556
301556
|
await writeTemplate(clientTemplate, "/lib/settlemint", "ipfs.ts");
|
301557
301557
|
const projectDir = await projectRoot3();
|
@@ -327374,4 +327374,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
327374
327374
|
// src/cli.ts
|
327375
327375
|
sdkCliCommand();
|
327376
327376
|
|
327377
|
-
//# debugId=
|
327377
|
+
//# debugId=692532AF5E80463164756E2164756E21
|