@settlemint/sdk-js 2.6.1 → 2.6.2-main05babdc6

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.
@@ -423,36 +423,6 @@ const BlockchainNetworkFragment = graphql(`
423
423
  ... on BesuIbftv2BlockchainNetwork {
424
424
  chainId
425
425
  }
426
- ... on GethPoWBlockchainNetwork {
427
- chainId
428
- }
429
- ... on GethPoSRinkebyBlockchainNetwork {
430
- chainId
431
- }
432
- ... on GethVenidiumBlockchainNetwork {
433
- chainId
434
- }
435
- ... on GethGoerliBlockchainNetwork {
436
- chainId
437
- }
438
- ... on AvalancheBlockchainNetwork {
439
- chainId
440
- }
441
- ... on AvalancheFujiBlockchainNetwork {
442
- chainId
443
- }
444
- ... on BscPoWBlockchainNetwork {
445
- chainId
446
- }
447
- ... on BscPoWTestnetBlockchainNetwork {
448
- chainId
449
- }
450
- ... on PolygonBlockchainNetwork {
451
- chainId
452
- }
453
- ... on PolygonMumbaiBlockchainNetwork {
454
- chainId
455
- }
456
426
  ... on PolygonEdgePoABlockchainNetwork {
457
427
  chainId
458
428
  }
@@ -462,6 +432,9 @@ const BlockchainNetworkFragment = graphql(`
462
432
  ... on GethCliqueBlockchainNetwork {
463
433
  chainId
464
434
  }
435
+ ... on PublicEvmBlockchainNetwork {
436
+ chainId
437
+ }
465
438
  blockchainNodes {
466
439
  ... on BlockchainNode {
467
440
  id
@@ -529,6 +502,7 @@ const createBlockchainNetwork = graphql(`
529
502
  $quorumGenesis: QuorumGenesisInput
530
503
  $externalNodes: [BlockchainNetworkExternalNodeInput!]
531
504
  $privateKeyId: ID
505
+ $includePredeployedContracts: Boolean
532
506
  ) {
533
507
  createBlockchainNetwork(
534
508
  applicationId: $applicationId
@@ -557,6 +531,7 @@ const createBlockchainNetwork = graphql(`
557
531
  quorumGenesis: $quorumGenesis
558
532
  externalNodes: $externalNodes
559
533
  keyMaterial: $privateKeyId
534
+ includePredeployedContracts: $includePredeployedContracts
560
535
  ) {
561
536
  ...BlockchainNetwork
562
537
  }
@@ -731,36 +706,6 @@ const BlockchainNodeFragment = graphql(`
731
706
  ... on BesuIbftv2BlockchainNetwork {
732
707
  chainId
733
708
  }
734
- ... on GethPoWBlockchainNetwork {
735
- chainId
736
- }
737
- ... on GethPoSRinkebyBlockchainNetwork {
738
- chainId
739
- }
740
- ... on GethVenidiumBlockchainNetwork {
741
- chainId
742
- }
743
- ... on GethGoerliBlockchainNetwork {
744
- chainId
745
- }
746
- ... on AvalancheBlockchainNetwork {
747
- chainId
748
- }
749
- ... on AvalancheFujiBlockchainNetwork {
750
- chainId
751
- }
752
- ... on BscPoWBlockchainNetwork {
753
- chainId
754
- }
755
- ... on BscPoWTestnetBlockchainNetwork {
756
- chainId
757
- }
758
- ... on PolygonBlockchainNetwork {
759
- chainId
760
- }
761
- ... on PolygonMumbaiBlockchainNetwork {
762
- chainId
763
- }
764
709
  ... on PolygonEdgePoABlockchainNetwork {
765
710
  chainId
766
711
  }
@@ -770,6 +715,9 @@ const BlockchainNodeFragment = graphql(`
770
715
  ... on GethCliqueBlockchainNetwork {
771
716
  chainId
772
717
  }
718
+ ... on PublicEvmBlockchainNetwork {
719
+ chainId
720
+ }
773
721
  }
774
722
  }
775
723
  privateKeys {