🔬
InfraBlockchain-Antelope
  • Introduction To InfraBlockchain-Antelope
    • What is InfraBlockchain-Antelope?
    • Resources and Essentials
    • Products and Supports
  • Users
    • Accounts and Wallets
  • Block Producers
    • Getting started with InfraBlockchain-Antelope Block Producers
      • What is InfraBlockchain-Antelope Block Producer node
      • Types of nodes
      • InfraBlockchain-Antelope Block Producer Requirements
      • Setting up InfraBlockchain-Antelope Block Producer node
    • InfraBlockchain-Antelope Network Resources
  • For Developers
    • Getting started for developers
    • Overview
      • Core Concepts
      • Technical Features
      • Protocol
        • Consensus Protocol
        • Transactions Protocol
        • Network Peer Protocol
        • Accounts & Permissions
    • Developer guides: InfraBlockchain-Antelope Native
      • Platform & Toolchain
      • Development Environment InfraBlockchain-Antelope Native
        • Try InfraBlockchain-Antelope
        • Prerequisites
        • Before You Begin
        • Install the Contract Dev Toolkit
        • Create Development Wallet
        • Start infra-keychain and infra-node
        • Create Test Accounts
      • Smart Contract Development
        • Hello World Contract
        • Deploy, Issue & Transfer Tokens
        • Understanding ABI Files
        • Data Persistence
        • Secondary Indices
        • Adding Inline Actions
        • Inline Actions to External Contracts
        • Creating & Linking Custom Permissions
        • Payable Actions
      • InfraBlockchain-Antelope System Contracts
        • infra.system
          • authproducer
          • addsystoken
          • rmvsystoken
          • settxfee
          • unsettxfee
        • sys.tokenabi
          • settokenmeta
          • issue
          • transfer
          • txfee
          • retire
      • Tutorials
        • infra-cli
        • infrablockchain-js
        • Hello World Contract
    • Developer guides: InfraBlockchain EVM
Powered by GitBook
On this page
  • An API-node
  • A History API-node
  • A Seed-node
  • Producer-nodes
  1. Block Producers
  2. Getting started with InfraBlockchain-Antelope Block Producers

Types of nodes

In the InfraBlockchain-Antelope network, you might find the slightly different naming of nodes, such as an API node, Producer node, History-API node, and Seed node.

All nodes keep updating an internal database by applying the transactions as they arrive in incoming blocks. The difference between the node types lies in the amount of history they keep track of, and in the functionality they provide.

After proper installation of released Antelope core software, each type of node is implemented by the same executable, however, each node would need to set up different configurations to start the node. For example: although a block producing node can have full history, that would be a waste of resources.

Block producing validator nodes should run with minimal plugins (i.e., only witness_plugin). Also, producing validator nodes should not have open network ports. We strongly recommend all node service providers to run and maintain their own nodes for reliability and security reasons.

An API-node

API nodes provide network services to client applications. They usually have account transaction histories accessible though API calls, but can vary in the amount of available history.

A History API-node

History-API nodes are API nodes with a complete transaction history of all accounts.

A Seed-node

  • A seed node is a special node that allows the incorporation of new nodes to the network and maintains the strength of the network at all times, by allowing them to synchronize and obtain a copy of the data from the blockchain, replicating it and adding resistance and security to it.

  • Seed nodes are nodes that accept incoming P2P connections. They are the first nodes contacted by a freshly started node. In that sense they serve as an entry point into the network. Once a node has entered the network it will receive additional node addresses from its peers, so all nodes can connect to each other. A seed node can also be an API node. The InfraBlockchain-Antelope core software i.e. Antelope comes with a preconfigured list of seed nodes for easy bootstrapping.

  • The seed nodes are used only to locate or find complete nodes that are running the InfraBlockchain-Antelope client.

  • So, when a new node wants to gain access to the network, it must connect with a seed node, which is a InfraBlockchain-Antelope client that is always active and has a static IP address. This client operates as a gateway to the InfraBlockchain-Antelope network, being one of the first connections that InfraBlockchain-Antelope clients make at the beginning.

  • Thus, seed nodes play an important role within the network, operating from highly trusted servers. Allowing new clients to connect to the InfraBlockchain-Antelope network automatically and without the need for manual intervention by a user. Although it may be the case that some of these nodes can become dishonest, causing a negative impact within the network. So it is not recommended to place trust in a single seed node.

Producer-nodes

  • A producer node is a node run by a Block Producer (BP). Each producer node (active/producing/top-21 only) validates all blocks and transactions it receives. The nodes of elected (active/producing/top-21 only) producers take turns in bundling new transactions into blocks and broadcasting them to the network.

  • Producer nodes generally runs in two modes using nodeos Antelope component:

A. Producing Node

  • Producing Nodes are configured for block production.

  • They connect to the peer-to-peer network and actively produce new blocks.

  • Loose transactions are also validated and relayed.

  • On mainnet, they only produce blocks if their assigned block producer is part of an active schedule.

B. Non-Producing Node

  • Non-Producing Nodes connect to the peer-to-peer (p2p) network but do not actively produce new blocks.

  • They are useful for acting as proxy nodes, relaying API calls, validating transactions, broadcasting information to other nodes, etc.

  • They are also useful for monitoring the blockchain state.

The next section will cover the requirements needed to become a InfraBlockchain-Antelope Block Producer.

PreviousWhat is InfraBlockchain-Antelope Block Producer nodeNextInfraBlockchain-Antelope Block Producer Requirements

Last updated 1 year ago