Installation & Setup

⚠️ Experimental Software Notice

WARNING: This software is experimental. Do not use it in production or with real assets. Security vulnerabilities may exist.


Prerequisites

Before installing, ensure your environment has the following tools:

  • Node.js (v18 or later recommended)

  • npm

  • Truffle — for contract compilation and deployment

  • Ganache — for local blockchain development

Install Truffle & Ganache

npm install -g truffle

Download Ganache: https://trufflesuite.com/ganache/


Clone and Setup

git clone https://github.com/PracticalParticle/particle-core.git
cd particle-core
npm install

Start a local chain:

ganache --deterministic --networkId 1337

Compile & deploy:

truffle compile
truffle migrate --network development

Your local environment is now ready.

Last updated