@settlemint/sdk-js 2.6.2-pr1e6fc040 → 2.6.2-pr203e29dd
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 +2 -0
- package/dist/settlemint.cjs.map +1 -1
- package/dist/settlemint.d.cts +127 -3
- package/dist/settlemint.d.ts +127 -3
- package/dist/settlemint.js +2 -0
- package/dist/settlemint.js.map +1 -1
- package/package.json +3 -3
package/dist/settlemint.cjs
CHANGED
|
@@ -532,6 +532,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
532
532
|
$quorumGenesis: QuorumGenesisInput
|
|
533
533
|
$externalNodes: [BlockchainNetworkExternalNodeInput!]
|
|
534
534
|
$privateKeyId: ID
|
|
535
|
+
$includePredeployedContracts: Boolean
|
|
535
536
|
) {
|
|
536
537
|
createBlockchainNetwork(
|
|
537
538
|
applicationId: $applicationId
|
|
@@ -560,6 +561,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
560
561
|
quorumGenesis: $quorumGenesis
|
|
561
562
|
externalNodes: $externalNodes
|
|
562
563
|
keyMaterial: $privateKeyId
|
|
564
|
+
includePredeployedContracts: $includePredeployedContracts
|
|
563
565
|
) {
|
|
564
566
|
...BlockchainNetwork
|
|
565
567
|
}
|