Last active
April 6, 2024 02:17
-
-
Save adityadaniel/e6ec4603669b6a36f99101467d791ff3 to your computer and use it in GitHub Desktop.
ore setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Infinite Loop | |
while true | |
do | |
echo "Memulai pengecekan saldo Ore.." | |
ore --keypair ~/.config/solana/id.json rewards | |
echo "Memuat ulang..." | |
# Opsional: melakukan delay sleep selama beberapa detik untuk menghindari spam | |
sleep 15 | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Infinite Loop | |
while true | |
do | |
echo "Memulai Ore claim proses..." | |
ore --keypair ~/.config/solana/id.json claim | |
echo "Memulai ulang..." | |
# Opsional: melakukan delay sleep selama beberapa detik untuk menghindari spam | |
sleep 15 | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Infinite loop | |
while true | |
do | |
echo "Memulai proses menambang..." | |
ore \ | |
--rpc https://api.mainnet-beta.solana.com/ \ | |
--keypair ~/.config/solana/id.json \ | |
--priority-fee 5000000 \ | |
mine \ | |
--threads 10 | |
echo "Proses mining dimuat ulang..." | |
# Opsional: melakukan delay sleep selama beberapa detik untuk menghindari spam | |
sleep 1 | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt update | |
apt install tmux | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | |
source .cargo/env | |
sh -c "$(curl -sSfL https://release.solana.com/v1.18.4/install)" | |
source .profile | |
touch .config/solana/id.json | |
apt install build-essential | |
cargo install ore-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment