OJA Coin
  • OJA Coin Intro
  • Guides
    • ☕Get Started
    • 🛣️Roadmap
    • 📃Whitepaper
    • 🤝Coinomics
    • 🔗Official Links
    • 💹Buy OJA Coin
    • ✨OJX Node Installation
  • PRODUCTS
    • ⚡OJA Blockchain (OJX)
    • 👨‍💻OJA Wallet
    • 🏆OJA Rewards
    • 📈OJA Trading / Exchange
    • 🪙OJA Payment
  • OJA SMART CHAIN (OJX20)
    • ☕Get Started (OJX20)
    • 🌟OJA Coin Smart Chain
      • Concepts
        • Consensus
        • Genesis File
      • Source Code
      • Main Network Explorer
      • Test Network Explorer
      • OJX20 Wallet
    • 💻Developers
      • General
        • Create Wallet
        • Smart Contract
        • Remix
        • Web3JS
        • Truffle
      • Deploy
        • Remix
        • Truffle
        • HardHat
      • Tools
      • BRC20 Tokens
        • Introduction
        • Issue Token
      • Blockchain Details
        • OJX Chain Fullnode
        • RPC
      • Tutorial
        • Deploy NFT
        • Local OJX Network
    • 🚰OJX Faucet
    • ❔FAQ
      • OJA Coin Smart Chain FAQ
        • General
          • Info
          • OJA Coin Smart Chain (OJX20)
          • Ecosystem
        • Token
          • Intro
      • Contributing
  • OJA COIN MINING
    • ☕Get Started
    • 💸Sole Mining (CPU)
    • 💰Masternode Mining
    • 🖥️GPU Mining
  • Others
    • OJA Brand Assets
    • Support
  • Terms
    • Privacy Policy
    • Terms and User Agreement
Powered by GitBook
On this page
  • Fullnodes Functions
  • Supported Platforms
  • Suggested Requirements
  • Steps to Run a Full Node
  1. OJA SMART CHAIN (OJX20)
  2. Developers
  3. Blockchain Details

OJX Chain Fullnode

Fullnodes Functions

  • Stores the full blockchain history on disk and can answer the data request from the network.

  • Receives and validates the new blocks and transactions.

  • Verifies the states of every accounts.

Supported Platforms

We support running a full node on Mac OS Xand Linux.

Suggested Requirements

Fullnode

  • VPS running recent versions of Mac OS X or Linux.

  • 4 cores of CPU and 8 gigabytes of memory (RAM).

  • A broadband Internet connection with upload/download speeds of 5 megabyte per second

  • Build geth from https://github.com/ojacoin/ojx20 or download from https://github.com/ojacoin/ojx20/bin/

Steps to Run a Full Node

Download ojx.json from https://github.com/ojacoin/ojx20/tree/master/genesis

wget  https://raw.githubusercontent.com/ojacoin/ojx20/tree/master/genesis/ojx.json

Make node folder

mkdir node1

Initialize the Node

./geth --datadir ./node1 init ojx.json

Run the Nodes

./geth --datadir node1 --syncmode 'full' --gcmode=archive   --port 40605 --http --http.port 3545 --http.api 'personal,eth,net,web3,personal,admin,miner,txpool,debug' --bootnodes enode://549d2a067aa799700ca121b586f3a6b177100e8236fe1f3731ff18209aa84f0431d1de1860f0d989d465b4ae1364d381eb05c77e621057a3e1211c7a76be59b7@23.147.225.133:0?discport=40606 --networkid 57522 --allow-insecure-unlock
PreviousBlockchain DetailsNextRPC

Last updated 3 years ago

💻