-
-
Save Taylor123/073c9080b78dd18b5cde2344604d2db9 to your computer and use it in GitHub Desktop.
#!/bin/bash | |
while true | |
do | |
echo "Running" | |
ore --rpc "$1" --keypair "$2" --priority-fee 1000 mine --threads 4 | |
echo "Exited" | |
done |
buy some ore and send it to yout wallet - in turn it will create the account needed. Even something like 0.01 ORE should do that
can you please write the claim code for wsl2 iam using
ore --rpc (my rpc) --keypair ~/.config/solana/id.json --priority-fee 30000000 claim
but no sucsses
#!/bin/sh #start mining ore auto restart when miner times out while true; do ore --rpc https://api.mainnet-beta.solana.com --keypair ~/.config/solana/id.json --priority-fee 1000 mine --threads 6 echo "stopped. restarting" sleep 1 done
Did this work? I am getting below error when i try to run the above as is. Maybe some other steps are required
/bin/sh: 0: Can't open #start mining ore auto restart when miner times out while true; do ore --rpc https://api.mainnet-beta.solana.com --keypair ~/.config/solana/id.json --priority-fee 1000 mine --threads 4 echo "stopped. restarting" sleep 1 done
keep getting an error with my ore-cli about AccountNotFound then lists an unknown pubkey. Ive configured my solana-cli to my generated keypair.json, funded the wallet, i pass the same keypair.json when running ore but dont see any options to init or register the Account as a recognized miner. one of my miners seems to be functioning correctly while the other is erroring alot. Here is a backtrace print, any ideas what is going on here if one is working but not the other? How do i init and register my keypair.json?