A tool to explore caves, adventure, and find riches! 💎
Ramen is an quick, easy to use multi-threaded node.js miner for Provably Rare Gems on Fantom (raritygems) and Ethereum (lootgems).
First, install node.js. And grab all the files, of course.
Create your config.json file. Instructions are included below!
Then you'll need to open up a terminal/command line in the correct folder, and run the following two commands:
npm ci
to install required software.
npm start
to start mining!
The default configuration for automatically claiming gems looks like the example below. Set loop
to false if you want the miner to stop after it finds a gem.
Set threads
to choose how many mining workers you want to run. Setting this to the amount of cores your system has is a good start.
Set gem_type
to pick the gem you want to mine. You can see a list of gem types in GEMS.md.
{
"network": {
"chain_id": "250",
"rpc": "https://rpc.ftm.tools/",
"explorer": "https://ftmscan.com/",
"gem_address": "0x342EbF0A5ceC4404CcFF73a40f9c30288Fc72611"
},
"gem_type": 0,
"threads": 4,
"address": "YOUR ADDRESS HERE",
"ding": true,
"loop": true,
"claim": {
"private_key": "PRIVATE KEY HERE",
"maximum_gas_price": 500
}
}
If you want to mine Lootgems or Blootgems on Ethereum, remember to update the network
sections with the correct details.
Remember to be safe! It's good practise to make a second account in Metamask for scripts like this, so you don't expose your main private key. If you'd like to just get salts and claim gems yourself, you can remove the whole claim
section from the default configuration.
Ramen is licensed under the GPL v3 license. The terms are as follows.
Copyright © Ramen
Ramen is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Ramen is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Ramen. If not, see <http://www.gnu.org/licenses/>.
Ramen is based on code from https://github.com/poomsc/Provably-Rare-Gem-Miner