@settlemint/sdk-js 2.6.2 → 2.6.3
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/README.md +19 -19
- package/dist/settlemint.cjs +16 -7
- package/dist/settlemint.cjs.map +1 -1
- package/dist/settlemint.d.cts +22829 -140624
- package/dist/settlemint.d.ts +22829 -140624
- package/dist/settlemint.js +2 -0
- package/dist/settlemint.js.map +1 -1
- package/package.json +3 -3
package/dist/settlemint.js
CHANGED
|
@@ -502,6 +502,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
502
502
|
$quorumGenesis: QuorumGenesisInput
|
|
503
503
|
$externalNodes: [BlockchainNetworkExternalNodeInput!]
|
|
504
504
|
$privateKeyId: ID
|
|
505
|
+
$includePredeployedContracts: Boolean
|
|
505
506
|
) {
|
|
506
507
|
createBlockchainNetwork(
|
|
507
508
|
applicationId: $applicationId
|
|
@@ -530,6 +531,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
530
531
|
quorumGenesis: $quorumGenesis
|
|
531
532
|
externalNodes: $externalNodes
|
|
532
533
|
keyMaterial: $privateKeyId
|
|
534
|
+
includePredeployedContracts: $includePredeployedContracts
|
|
533
535
|
) {
|
|
534
536
|
...BlockchainNetwork
|
|
535
537
|
}
|