nodeType property

String? nodeType
getter/setter pair

The type of Ethereum node.

Immutable. Possible string values are:

  • "NODE_TYPE_UNSPECIFIED" : Node type has not been specified, but should be.
  • "LIGHT" : An Ethereum node that only downloads Ethereum block headers.
  • "FULL" : Keeps a complete copy of the blockchain data, and contributes to the network by receiving, validating, and forwarding transactions.
  • "ARCHIVE" : Holds the same data as full node as well as all of the blockchain's history state data dating back to the Genesis Block.

Implementation

core.String? nodeType;