Cryptocurrency
Make Own Cryptocurrency
P.R.U. Electronics LLC
Last Update vor einem Jahr
Linux machine - Debian based
Example: Ubuntu
STEP 1 - Create a Solana Wallet (from the CLI !!!)
Run this command to install the Solana tools:
sh -c "$(curl -sSfL https://release.solana.com/v1.8.6/install)"
Exit your terminal and then reconnect
Create your Solana wallet:
solana-keygen new
Check your wallet balance:
solana balance
STEP 2 - Purchase Solana and send to your CLI wallet
You can buy SOL through Coinbase
STEP 3 - Install some Prereqs
Update your repositories:
sudo apt update
Install RUST:
curl https://sh.rustup.rs -sSf | sh
#select option 1 for the default install
Exit your terminal and reconnect
More stuff to install:
sudo apt install libudev-dev -y
sudo apt install libssl-dev pkg-config -y
sudo apt install build-essential -y