@settlemint/sdk-js 2.6.2-prdbaefab2 → 2.6.2-prdd1c6538
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/settlemint.cjs +16 -7
- package/dist/settlemint.cjs.map +1 -1
- package/dist/settlemint.d.cts +121 -0
- package/dist/settlemint.d.ts +121 -0
- package/dist/settlemint.js +2 -0
- package/dist/settlemint.js.map +1 -1
- package/package.json +2 -2
package/dist/settlemint.cjs
CHANGED
|
@@ -22,13 +22,20 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
22
22
|
}) : target, mod));
|
|
23
23
|
|
|
24
24
|
//#endregion
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
25
|
+
let __settlemint_sdk_utils_http = require("@settlemint/sdk-utils/http");
|
|
26
|
+
__settlemint_sdk_utils_http = __toESM(__settlemint_sdk_utils_http);
|
|
27
|
+
let __settlemint_sdk_utils_runtime = require("@settlemint/sdk-utils/runtime");
|
|
28
|
+
__settlemint_sdk_utils_runtime = __toESM(__settlemint_sdk_utils_runtime);
|
|
29
|
+
let __settlemint_sdk_utils_validation = require("@settlemint/sdk-utils/validation");
|
|
30
|
+
__settlemint_sdk_utils_validation = __toESM(__settlemint_sdk_utils_validation);
|
|
31
|
+
let graphql_request = require("graphql-request");
|
|
32
|
+
graphql_request = __toESM(graphql_request);
|
|
33
|
+
let zod = require("zod");
|
|
34
|
+
zod = __toESM(zod);
|
|
35
|
+
let gql_tada = require("gql.tada");
|
|
36
|
+
gql_tada = __toESM(gql_tada);
|
|
37
|
+
let node_crypto = require("node:crypto");
|
|
38
|
+
node_crypto = __toESM(node_crypto);
|
|
32
39
|
|
|
33
40
|
//#region src/helpers/graphql.ts
|
|
34
41
|
/**
|
|
@@ -525,6 +532,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
525
532
|
$quorumGenesis: QuorumGenesisInput
|
|
526
533
|
$externalNodes: [BlockchainNetworkExternalNodeInput!]
|
|
527
534
|
$privateKeyId: ID
|
|
535
|
+
$includePredeployedContracts: Boolean
|
|
528
536
|
) {
|
|
529
537
|
createBlockchainNetwork(
|
|
530
538
|
applicationId: $applicationId
|
|
@@ -553,6 +561,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
553
561
|
quorumGenesis: $quorumGenesis
|
|
554
562
|
externalNodes: $externalNodes
|
|
555
563
|
keyMaterial: $privateKeyId
|
|
564
|
+
includePredeployedContracts: $includePredeployedContracts
|
|
556
565
|
) {
|
|
557
566
|
...BlockchainNetwork
|
|
558
567
|
}
|