@settlemint/sdk-js 2.6.2-pr704b14b4 → 2.6.2-pr7190db47

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.
@@ -6217,6 +6217,14 @@ type introspection_types = {
6217
6217
  };
6218
6218
  };
6219
6219
  };
6220
+ 'genesisArtifactsTag': {
6221
+ name: 'genesisArtifactsTag';
6222
+ type: {
6223
+ kind: 'SCALAR';
6224
+ name: 'String';
6225
+ ofType: null;
6226
+ };
6227
+ };
6220
6228
  'genesisWithDiscoveryConfig': {
6221
6229
  name: 'genesisWithDiscoveryConfig';
6222
6230
  type: {
@@ -8511,6 +8519,14 @@ type introspection_types = {
8511
8519
  };
8512
8520
  };
8513
8521
  };
8522
+ 'genesisArtifactsTag': {
8523
+ name: 'genesisArtifactsTag';
8524
+ type: {
8525
+ kind: 'SCALAR';
8526
+ name: 'String';
8527
+ ofType: null;
8528
+ };
8529
+ };
8514
8530
  'genesisWithDiscoveryConfig': {
8515
8531
  name: 'genesisWithDiscoveryConfig';
8516
8532
  type: {
@@ -17651,6 +17667,14 @@ type introspection_types = {
17651
17667
  };
17652
17668
  };
17653
17669
  defaultValue: null;
17670
+ }, {
17671
+ name: 'preloadDatabaseSchema';
17672
+ type: {
17673
+ kind: 'SCALAR';
17674
+ name: 'Boolean';
17675
+ ofType: null;
17676
+ };
17677
+ defaultValue: null;
17654
17678
  }, {
17655
17679
  name: 'productName';
17656
17680
  type: {
@@ -66969,6 +66993,7 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
66969
66993
  })[];
66970
66994
  };
66971
66995
  }, {
66996
+ includePredeployedContracts?: boolean | null | undefined;
66972
66997
  privateKeyId?: string | null | undefined;
66973
66998
  externalNodes?: {
66974
66999
  nodeType?: "NON_VALIDATOR" | "VALIDATOR" | null | undefined;
@@ -6217,6 +6217,14 @@ type introspection_types = {
6217
6217
  };
6218
6218
  };
6219
6219
  };
6220
+ 'genesisArtifactsTag': {
6221
+ name: 'genesisArtifactsTag';
6222
+ type: {
6223
+ kind: 'SCALAR';
6224
+ name: 'String';
6225
+ ofType: null;
6226
+ };
6227
+ };
6220
6228
  'genesisWithDiscoveryConfig': {
6221
6229
  name: 'genesisWithDiscoveryConfig';
6222
6230
  type: {
@@ -8511,6 +8519,14 @@ type introspection_types = {
8511
8519
  };
8512
8520
  };
8513
8521
  };
8522
+ 'genesisArtifactsTag': {
8523
+ name: 'genesisArtifactsTag';
8524
+ type: {
8525
+ kind: 'SCALAR';
8526
+ name: 'String';
8527
+ ofType: null;
8528
+ };
8529
+ };
8514
8530
  'genesisWithDiscoveryConfig': {
8515
8531
  name: 'genesisWithDiscoveryConfig';
8516
8532
  type: {
@@ -17651,6 +17667,14 @@ type introspection_types = {
17651
17667
  };
17652
17668
  };
17653
17669
  defaultValue: null;
17670
+ }, {
17671
+ name: 'preloadDatabaseSchema';
17672
+ type: {
17673
+ kind: 'SCALAR';
17674
+ name: 'Boolean';
17675
+ ofType: null;
17676
+ };
17677
+ defaultValue: null;
17654
17678
  }, {
17655
17679
  name: 'productName';
17656
17680
  type: {
@@ -66969,6 +66993,7 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
66969
66993
  })[];
66970
66994
  };
66971
66995
  }, {
66996
+ includePredeployedContracts?: boolean | null | undefined;
66972
66997
  privateKeyId?: string | null | undefined;
66973
66998
  externalNodes?: {
66974
66999
  nodeType?: "NON_VALIDATOR" | "VALIDATOR" | null | undefined;
@@ -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
  }