#ore #command #interface #line #command-line-interface #rpc #rpcs

app ore-cli-2rpc

A command line interface for the Ore program with 2 rpcs

3 releases

0.1.5 Apr 12, 2024
0.1.4 Apr 11, 2024
0.1.3 Apr 15, 2024

#6 in Magic Beans

Download history 516/week @ 2024-04-09 72/week @ 2024-04-16

588 downloads per month

Apache-2.0

44KB
941 lines

Ore CLI 2 RPC

A custom command line interface for the Ore program that utilizes 2 rpcs, one for sending the sendTransaction method, the other one to do all the rest. (Actually using v0.4.12-alpha ore cli version)

Requirements

Install Rust

To install my custom Ore CLI, you will need to have the Rust programming language installed. You can install Rust by following the instructions on the Rust website.

curl https://sh.rustup.rs -sSf | sh

Install Solana

If you don't have Solana client installed yet, run the following commands

sh -c "$(curl -sSfL https://release.solana.com/v1.18.4/install)"

Install the custom rpc

Install the ore client 2 rpc

cargo install ore-cli-2rpc

How to use ?

Use the command ore2rpc instead of ore.

Rpc2 option

This custom ore client accept one more option that is the rpc2 option. The rpc2 option will be the rpc who will receive the sendTransaction method. The other rpc will receive all the others request like getSignaturesStatuses, getLatestBlockHash, getVersion, etc...

You can use the same rpc in both variables

$rpc1="url_rpc_1"
$rpc2="url_rpc_2"

ore2rpc \
    --rpc $rpc1 \
    --rpc2 $rpc2 \
    --keypair ~/.config/solana/id.json \
    --priority-fee 10000 mine \
    --threads 4 

Expect around ~2500 requets per hour for one command.

Speed mode option

You can add the speed-mode (optionnal) option to increase or decrease the sending rate to your rpc. There is, at the moment, 3 modes slow, normal, or fast.

I will suggest that you use slow mode if you have free rpcs, normal mode if you have cheap plan rpcs, fast mode if you have expensive plan rpcs.

$rpc1="url_rpc_1"
$rpc2="url_rpc_2"

ore2rpc \
    --rpc $rpc1 \
    --rpc2 $rpc2 \
    --keypair ~/.config/solana/id.json \
    --priority-fee 10000 mine \
    --threads 4 \
    --speed-mode "slow"

Warnings

This project is developed by me and I am not a professional Rust developer, so use with caution. Always monitor your rpc credits.

Donation & Tips

I am accepting donations and tips at this solana adress (ORE, SOL, USDC) : AwdcrnSqdzdEdsGkx2f2zxNA4dENBDjMdpBtMtVDCrKc

Dependencies

~79MB
~1.5M SLoC