Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c29r3/solana-snapshot-finder
Automatic search and download of snapshots for Solana
https://github.com/c29r3/solana-snapshot-finder
crypto cryptocurrency rpc snapshot sol solana web3
Last synced: 28 days ago
JSON representation
Automatic search and download of snapshots for Solana
- Host: GitHub
- URL: https://github.com/c29r3/solana-snapshot-finder
- Owner: c29r3
- License: gpl-3.0
- Created: 2021-07-23T19:42:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T14:29:56.000Z (about 2 months ago)
- Last Synced: 2024-09-28T14:21:34.073Z (about 1 month ago)
- Topics: crypto, cryptocurrency, rpc, snapshot, sol, solana, web3
- Language: Python
- Homepage:
- Size: 193 KB
- Stars: 159
- Watchers: 5
- Forks: 69
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# solana-snapshot-finder
Automatic search and download of snapshots for SolanaAlso check online public RPC finder - https://solana.rpc-finder.com/
## Navigation
* [Description](#what-exactly-does-the-script-do)
* [Getting Started]()
- [Using docker](#run-via-docker)
- [Without docker](#without-docker)
* [How to update](#update)## What exactly does the script do:
1. Finds all available RPCs
2. Get the number of the current slot
3. In multi-threaded mode, checks the slot numbers of all snapshots on all RPCs
*Starting from version 0.1.3, only the first 10 RPCs speed are tested in a loop. [See details here](https://github.com/c29r3/solana-snapshot-finder/releases/tag/0.1.3)
5. List of RPCs sorted by lowest latency
`slots_diff = current_slot - snapshot_slot`
5. Checks the download speed from RPC with the most recent snapshot. If `download_speed max_latency --> skip
--with_private_rpc Enable adding and checking RPCs with the --private-rpc option.This slow down
checking and searching but potentially increases the number of RPCs from which
snapshots can be downloaded.
--measurement_time MEASUREMENT_TIME
Time in seconds during which the script will measure the download speed
--snapshot_path SNAPSHOT_PATH
The location where the snapshot will be downloaded (absolute path). Example:
/home/ubuntu/solana/validator-ledger
--num_of_retries NUM_OF_RETRIES
The number of retries if a suitable server for downloading the snapshot was not
found
--sleep SLEEP Sleep before next retry (seconds)
--sort_order SORT_ORDER
Priority way to sort the found servers. latency or slots_diff
-ipb IP_BLACKLIST, --ip_blacklist IP_BLACKLIST
Comma separated list of ip addresse (ip:port) that will be excluded from the
scan. Example: -ipb 1.1.1.1:8899,8.8.8.8:8899
-b BLACKLIST, --blacklist BLACKLIST
If the same corrupted archive is constantly downloaded, you can exclude it.
Specify either the number of the slot you want to exclude, or the hash of the
archive name. You can specify several, separated by commas. Example: -b
135501350,135501360 or --blacklist 135501350,some_hash
-v, --verbose increase output verbosity to DEBUG
```
![alt text](https://raw.githubusercontent.com/c29r3/solana-snapshot-finder/aec9a59a7517a5049fa702675bdc8c770acbef99/2021-07-23_22-38.png?raw=true)### Without docker
Install requirements
```bash
sudo apt-get update \
&& sudo apt-get install python3-venv git -y \
&& git clone https://github.com/c29r3/solana-snapshot-finder.git \
&& cd solana-snapshot-finder \
&& python3 -m venv venv \
&& source ./venv/bin/activate \
&& pip3 install -r requirements.txt
```Start script
Mainnet
```python
python3 snapshot-finder.py --snapshot_path $HOME/solana/validator-ledger
```
`$HOME/solana/validator-ledger/` - path to your `validator-ledger`TdS
```python
python3 snapshot-finder.py --snapshot_path $HOME/solana/validator-ledger -r http://api.testnet.solana.com
```### Run via docker
Mainnet
```bash
sudo docker pull c29r3/solana-snapshot-finder:latest; \
sudo docker run -it --rm \
-v ~/solana/validator-ledger:/solana/snapshot \
--user $(id -u):$(id -g) \
c29r3/solana-snapshot-finder:latest \
--snapshot_path /solana/snapshot
```
*`~/solana/validator-ledger` - path to validator-ledger, where snapshots stored*TdS
```bash
sudo docker pull c29r3/solana-snapshot-finder:latest; \
sudo docker run -it --rm \
-v ~/solana/validator-ledger:/solana/snapshot \
--user $(id -u):$(id -g) \
c29r3/solana-snapshot-finder:latest \
--snapshot_path /solana/snapshot \
-r http://api.testnet.solana.com
```## Update
`sudo docker pull c29r3/solana-snapshot-finder:latest`