Skip to content

Commit

Permalink
feat(blockchainnodeengine): update the api
Browse files Browse the repository at this point in the history
#### blockchainnodeengine:v1

The following keys were added:
- schemas.ValidatorConfig.properties.managedValidatorClient.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Feb 6, 2024
1 parent 3e1cb30 commit 5756086
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Expand Up @@ -136,6 +136,7 @@ <h3>Method Details</h3>
&quot;network&quot;: &quot;A String&quot;, # Immutable. The Ethereum environment being accessed.
&quot;nodeType&quot;: &quot;A String&quot;, # Immutable. The type of Ethereum node.
&quot;validatorConfig&quot;: { # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client. # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client.
&quot;managedValidatorClient&quot;: True or False, # Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.
&quot;mevRelayUrls&quot;: [ # URLs for MEV-relay services to use for block building. When set, a GCP-managed MEV-boost service is configured on the beacon client.
&quot;A String&quot;,
],
Expand Down Expand Up @@ -257,6 +258,7 @@ <h3>Method Details</h3>
&quot;network&quot;: &quot;A String&quot;, # Immutable. The Ethereum environment being accessed.
&quot;nodeType&quot;: &quot;A String&quot;, # Immutable. The type of Ethereum node.
&quot;validatorConfig&quot;: { # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client. # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client.
&quot;managedValidatorClient&quot;: True or False, # Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.
&quot;mevRelayUrls&quot;: [ # URLs for MEV-relay services to use for block building. When set, a GCP-managed MEV-boost service is configured on the beacon client.
&quot;A String&quot;,
],
Expand Down Expand Up @@ -318,6 +320,7 @@ <h3>Method Details</h3>
&quot;network&quot;: &quot;A String&quot;, # Immutable. The Ethereum environment being accessed.
&quot;nodeType&quot;: &quot;A String&quot;, # Immutable. The type of Ethereum node.
&quot;validatorConfig&quot;: { # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client. # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client.
&quot;managedValidatorClient&quot;: True or False, # Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.
&quot;mevRelayUrls&quot;: [ # URLs for MEV-relay services to use for block building. When set, a GCP-managed MEV-boost service is configured on the beacon client.
&quot;A String&quot;,
],
Expand Down Expand Up @@ -388,6 +391,7 @@ <h3>Method Details</h3>
&quot;network&quot;: &quot;A String&quot;, # Immutable. The Ethereum environment being accessed.
&quot;nodeType&quot;: &quot;A String&quot;, # Immutable. The type of Ethereum node.
&quot;validatorConfig&quot;: { # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client. # Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client.
&quot;managedValidatorClient&quot;: True or False, # Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.
&quot;mevRelayUrls&quot;: [ # URLs for MEV-relay services to use for block building. When set, a GCP-managed MEV-boost service is configured on the beacon client.
&quot;A String&quot;,
],
Expand Down
Expand Up @@ -487,7 +487,7 @@
}
}
},
"revision": "20240117",
"revision": "20240131",
"rootUrl": "https://blockchainnodeengine.googleapis.com/",
"schemas": {
"BlockchainNode": {
Expand Down Expand Up @@ -960,6 +960,10 @@ true
"description": "Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client.",
"id": "ValidatorConfig",
"properties": {
"managedValidatorClient": {
"description": "Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.",
"type": "boolean"
},
"mevRelayUrls": {
"description": "URLs for MEV-relay services to use for block building. When set, a GCP-managed MEV-boost service is configured on the beacon client.",
"items": {
Expand Down

0 comments on commit 5756086

Please sign in to comment.