A full node is the quiet workhorse of the Malairte network. It is not a miner, it is not a wallet, and it does not store anyone funds. It is a program that downloads the entire blockchain, checks every rule for itself, and relays valid blocks and transactions to other nodes. If you understand nothing else about Malairte infrastructure, understand this: nodes are what make the network trustless.

Independent verification

When a Malairte node receives a block, it does not take anyone word that the block is valid. It re-checks the proof-of-work, confirms every transaction follows the consensus rules, and rejects anything that does not. A node that fed you a fake block would simply be ignored by every honest node around it. This is why running your own node means you never have to trust a third party to tell you the state of the chain.

Storing and serving the chain

A full node keeps a complete copy of the blockchain on disk. That copy lets it answer questions from wallets, explorers, and other nodes: what is the latest block, does this transaction exist, what is the balance behind this address. The node serves this data to peers without needing permission from anyone.

Relaying transactions and blocks

  • When a wallet broadcasts a transaction, nearby nodes pass it along until it reaches miners.
  • When a miner finds a block, nodes propagate it across the network within seconds.
  • Each hop is checked, so invalid data dies quickly instead of spreading.

What a node deliberately does not do

It is worth being precise here. The Malairte node software has no built-in wallet. It does not hold private keys, it does not sign transactions, and it does not custody MLRT. Key management and signing are handled by separate software. A node operator is providing verification and relay, not custody. This separation is a feature: you can run a node on a cheap always-on box without worrying that it has become a honeypot for funds.

Node versus miner

People often blur these two roles. A miner produces new blocks and competes for the block reward using CPU or GPU work. A node validates and relays whatever the miners produce. Many miners run a node so they have a trusted local view of the chain, but the two jobs are distinct. You can run a node without ever mining a single hash.

Why this matters for decentralisation

Every additional honest node makes the network harder to censor, harder to fool, and harder to take down. There is no central server. The chain lives across all the nodes at once, and any one of them can drop offline without the network noticing. When you run a node, you are not a customer of the network - you are part of it.