LogoLogo
Blockchain ExplorerGitHubCertikWebsite
  • 🚀Metacces is coming !!!
  • 🎯Mission & Vision
  • 📈Market Analysis
  • 🤝Partnerships
  • METACCES: GENERAL
    • 🎮Metacces: AR/VR Game
      • 👉Introduction
      • 🔑Key features
      • 📈Earning mechanics
      • 👽Unique Oli AI
      • 🧬Blacxes
        • What is Blacxes
        • Utilites
        • Unique DNA
        • DAO Governance
        • Technology
        • Distribution
        • Swap
      • ⛓️Bridging Web2 Simplicity with Web3 Power
      • 🚀How Does Metacces Outperform the Competition?
      • 🎮Game Structure
        • Origin Story: Oli & the Blacxes
        • Game theme (Access Journey)
          • Overview
          • Basic level
          • Intermediate level
          • Final level
        • Activities and Gameplay
        • Game seasons
          • Introduction
          • Season Concept
          • What Does Each Season Include?
          • Importance of Seasons in Metacces
        • Skins & Tools
          • Introduction
          • Core Principles
          • Core Uses of Tools
          • Main Categories of Tools
          • Rarity and Value
          • Symbolism of Tools
          • Verification and Security Mechanisms
        • Clans
          • Introduction
          • Core Pillars of the Clan System
          • Clan Activities
          • Ownership and Economy Within the Clan
          • The Reputation System
          • The Future of Clans in Metacces
          • How to Create a Clan in Metacces
    • 🪙Acces Coin
      • Coin Utility
      • Smart-Contracts
      • Tokenomecs
      • Metacces Listings Roadmap
    • ⛓️Blockchain Layer 1
      • Developers
        • Public Endpoints
        • MetaMask
        • Node Setup
        • JSON RPC Server
        • Connect to RPC
        • API Methods
        • Client Libraries
        • Smart Contracts
          • Deploy
          • Interact
          • Transfer
          • Fixed Cap Asset
          • Variable Cap Asset
  • DEVELOPMENT
  • 📅Roadmap
    • Main Roadmap
      • ✔️2022
      • ✔️2023
      • 🔛2024
      • 2025
    • Coin Roadmap
      • 2022
      • 2023
      • 2024
  • TEAM
    • 7️⃣Core 7 values
    • 👨‍🚀Meet The Team
  • SECURITY
    • 🫂 Team KYC Gold Verified by CERTIK (2024)
    • 🪙Coin Audit by CERTIK
    • 🗓️Smart Contract Vesting Audit by CERTIK
    • 🪙Coin Audit by SOLIDPROOF
    • 🪙Coin Audit by HACKEN
  • OTHER INFO
    • Contact Us
    • Community
      • Website
      • Telegram
      • X.Twitter
      • Discord
      • Youtube
      • Instagram
      • Facebook
Powered by GitBook
On this page

Was this helpful?

  1. METACCES: GENERAL
  2. Blockchain Layer 1
  3. Developers

Node Setup

Requirements:

  • Docker and Docker Compose.

  • Ubuntu / Ubuntu-like server

Setup docker and docker-compose:

Copy

sudo apt update; sudo apt install docker.io -y
sudo usermod -aG docker $USER
mkdir -p ~/.docker/cli-plugins/
sudo curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose; sudo chmod +x /usr/local/bin/docker-compose
sudo usermod -aG docker $USER; newgrp docker

Clone Metacces RPC node repo:

git clone(Will update with Metacces repo)

cd rpcnode

You may need to give permissions to sh files. To do so, run:

chmod +x *.sh

Then run:

./run.sh

The docker-compose.yml file includes all the needed information.

You can adjust some variables if you are familiar with that.

## Additional commands:

./stop.sh: stops the node keeping its data.

./resume.sh: resumes the node, it runs after stop.sh

./restart.sh: restarts the node container

./remove.sh: removes the node data completely

./qlogs.sh: displays the node container logs

./johnwickdocker.sh: destroys all docker related resources, starts clean.

To test if the node is working:

1. Paste your server's IP with port 22000 in a web browser: http://SERVER_IP:22000

If a blank white page is displayed, your node is working fine. Else, you'll get an error.

2. In MetaMask network settings, place the address: http://your-ip:22000 for the RPC URL.

If you connect to the network, it means you are set. But you may need to wait for synchronization to complete.

During synchronization (first hour or so) your wallet balance may not reflect the correct value.

PreviousMetaMaskNextJSON RPC Server

Last updated 9 months ago

Was this helpful?

⛓️