feeless-node
v17.0.0
Published
The sole building block of the feeless network
Readme
🌐 Feeless Node
Welcome to Feeless
This is the beginning of an unforgettable journey into the world of feeless transactions.
Node Installation
The recommended way to install a Feeless Node is via NPM.
Run the following command globally:
npm install -g feeless-node(...you may need to run this command with sudo...)
This gives you access to two CLI tools:
feeless-node— the main node runnerfeeless-miner— the mining utility
Running the Node
- Choose a working directory for your node (e.g.
~/feeless) - Navigate to that directory in your terminal
- Run the node using:
npx feeless-nodeRunning the Miner
- Create or navigate to a directory for your miner (e.g.
~/feeless-mining) - Run the miner with:
npx feeless-minerThis will generate a miner.json file in the current directory.
You can configure your miner by editing miner.json. The key fields include:
{
"wsUrl": "ws://localhost:6061",
"httpUrl": "http://localhost:8000",
"private": "PRIVATE_WALLET_KEY",
"token": ""
}