Stato:lo stato attuale del nodo. Ad esempio,
Corsa. Consulta
Stato per tutti gli stati possibili.
Altezza blocco: l'altezza del blocco indica il numero di blocchi sincronizzati da questo nodo. Dopo la sincronizzazione iniziale, l'altezza del blocco di un nodo dovrebbe essere più o meno uguale a quella dei relativi peer. Per controllare l'altezza del blocco più recente della blockchain, puoi utilizzare un block explorer come Etherscan per Ethereum, PolygonScan per Polygon e Solana Explorer per Solana.
Se invii questo comando immediatamente dopo aver inviato il comando per creare il nodo, il valore di state sarà CREATING. Puoi utilizzare l'URL per configurare l'infrastruttura, ma il nodo non è utilizzabile finché lo stato non diventa RUNNING.
Prendi nota dell'URL dell'endpoint dalla risposta in modo da poterlo utilizzare in
Utilizzo dei nodi blockchain.
Stati del nodo
Le istanze dei nodi avranno vari stati in base al ciclo di vita del nodo.
Stato
Descrizione
CREAZIONE
Quando si trova in questo stato, l'istanza del nodo è in fase di creazione e non è utilizzabile. Anche se sono visualizzati, gli endpoint non sono accessibili. Questa fase richiede fino a 45 minuti.
IN ESECUZIONE
Quando si trova in questo stato, il nodo è accessibile. Tieni presente che, dopo la creazione iniziale, il nodo dovrà sincronizzarsi con la blockchain.
Finché la sincronizzazione non viene completata, potresti ricevere risultati incompleti da varie chiamate RPC.
Nodi completi Ethereum: circa 10 ore per la sincronizzazione. Per controllare lo stato della sincronizzazione, effettua una chiamata a eth_syncing.
Nodi completi Polygon: circa 6 ore per la sincronizzazione.
Tieni presente che per la prima ora circa durante la sincronizzazione di Heimdall,
le richieste API restituiranno errori 503. Poi sono necessarie altre circa 5 ore per la sincronizzazione di Bor. Per controllare lo stato della sincronizzazione, effettua una chiamata a eth_syncing.
Nodi RPC non votanti Solana: circa 1 ora per la sincronizzazione.
Tieni presente che durante la sincronizzazione le richieste API genereranno errori 503.
ELIMINAZIONE
Quando si trova in questo stato, il nodo è in fase di eliminazione attiva e non può essere utilizzato. L'operazione potrebbe richiedere fino a 30 minuti.
ERRORE
Questo stato indica che si è verificato un errore imprevisto. Elimina il nodo e riprova. Se il problema persiste, contatta l'assistenza.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Difficile da capire","hardToUnderstand","thumb-down"],["Informazioni o codice di esempio errati","incorrectInformationOrSampleCode","thumb-down"],["Mancano le informazioni o gli esempi di cui ho bisogno","missingTheInformationSamplesINeed","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-09-04 UTC."],[[["\u003cp\u003eThis page explains how to view details about a Blockchain Node Engine node using either the Google Cloud console or an API call.\u003c/p\u003e\n"],["\u003cp\u003eIn the console, node details can be accessed by navigating to the Blockchain Node Engine page and selecting a specific node from the list.\u003c/p\u003e\n"],["\u003cp\u003eThe Node details page displays information such as node name, status, block height, blockchain, endpoints, API keys, location, and metrics.\u003c/p\u003e\n"],["\u003cp\u003eUsing an API, you can retrieve node details by sending a \u003ccode\u003eListBlockchainNodes\u003c/code\u003e request with the project ID, location, and node name.\u003c/p\u003e\n"],["\u003cp\u003eNode states range from \u003ccode\u003eCREATING\u003c/code\u003e, \u003ccode\u003eRUNNING\u003c/code\u003e, \u003ccode\u003eDELETING\u003c/code\u003e, and \u003ccode\u003eERROR\u003c/code\u003e, which reflect the node's lifecycle stages, with each having specific durations and implications on node accessibility and functionality.\u003c/p\u003e\n"]]],[],null,["# View blockchain node details\n\nThis page describes how to view details about a Blockchain Node Engine node using the\n[console](#using-the-console) or an [API](#using-an-api) call.\n\nUsing the console\n-----------------\n\nTo view details about a node in the UI:\n\n1. In the Google Cloud console, go to the **Blockchain Node Engine** page.\n\n\n [Go to Blockchain Node Engine](https://console.cloud.google.com/blockchain-node-engine)\n2. The [**Nodes**](/blockchain-node-engine/docs/node-list) list page is displayed by default.\n3. Click a node name. The **Node details** page is displayed.\n\n### View node details\n\nThe **Node details** page displays detailed information about the\nselected node.\n\nYou can do the following on this page:\n\n- Open the **APIs \\& Services Credentials** page.\n- content_copy **Copy** an item to the clipboard.\n- open_in_new **Open** the **Metrics Explorer** page.\n\n[](/static/blockchain-node-engine/images/node-details.png)\n\nUsing an API\n------------\n\nTo list details related to a blockchain node with\n[ListBlockchainNodes](/blockchain-node-engine/docs/reference/rest/v1/projects.locations.blockchainNodes/list),\nsend the following request: \n\n curl \\\n -H \"Authorization: Bearer $(gcloud auth print-access-token)\" \\\n -H \"Content-Type: application/json\" \\\n https://blockchainnodeengine.googleapis.com/v1/projects/\u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e/\\\n locations/\u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e/blockchainNodes/\u003cvar translate=\"no\"\u003eNODE_NAME\u003c/var\u003e\n\nWhere:\n\n- \u003cvar translate=\"no\"\u003ePROJECT_ID\u003c/var\u003e is your Google Cloud project ID. For example, `my-project-id`\n- \u003cvar translate=\"no\"\u003eLOCATION\u003c/var\u003e is the [location](/blockchain-node-engine/docs/terms#location) you selected in [Create a blockchain node](/blockchain-node-engine/docs/create-node). For example, `us-central1`.\n- \u003cvar translate=\"no\"\u003eNODE_NAME\u003c/var\u003e is the name of the node that you created in [Create a blockchain node](/blockchain-node-engine/docs/create-node). For example, `my-node`.\n\nIf the node has been created, you will see a response like the following\nEthereum example: \n\n {\n \"name\": \"projects/my-project-id/locations/us-central1/blockchainNodes/my-node\",\n \"createTime\": \"2023-04-21T19:26:16.293078Z\",\n \"updateTime\": \"2023-04-21T19:57:36.769661Z\",\n \"labels\": {\n \"my-label-key\": \"my-label-value\"\n },\n \"blockchainType\": \"ETHEREUM\",\n \"connectionInfo\": {\n \"ipInfo\": {\n \"rpcIpv4Address\": \"203.0.113.1\"\n },\n \"endpointInfo\": {\n \"jsonRpcApiEndpoint\": \"json-rpc.2g7qvv04aisoq4jhnqqgw8zy0.blockchainnodeengine.com\",\n \"websocketsApiEndpoint\": \"ws.2g7qvv04aisoq4jhnqqgw8zy0.blockchainnodeengine.com\"\n }\n },\n \"ethereumDetails\": {\n \"network\": \"MAINNET\",\n \"nodeType\": \"FULL\",\n \"executionClient\": \"GETH\",\n \"consensusClient\": \"LIGHTHOUSE\",\n \"apiEnableAdmin\": false,\n \"apiEnableDebug\": false,\n \"additionalEndpoints\": {\n \"beaconApiEndpoint\": \"beacon.2g7qvv04aisoq4jhnqqgw8zy0.blockchainnodeengine.com\",\n \"beaconPrometheusMetricsApiEndpoint\": \"bc-mc.2g7qvv04aisoq4jhnqqgw8zy0.blockchainnodeengine.com\"\n }\n },\n \"state\": \"RUNNING\"\n }\n\nIf you send this command immediately after sending the command to\ncreate the node, the value of `state` will be `CREATING`. You can use the\nURL to set up your infrastructure; however, the node is not usable until\nthe state changes to `RUNNING`.\n\nMake a note of the endpoint URL from the response so you can use it in\n[Using blockchain nodes](/blockchain-node-engine/docs/using-nodes).\n\nNode states\n-----------\n\nNode instances will have various states based on the lifecycle of the node."]]