ERPC Global Storage - Quickstart

☁️ ERPC Global Storage

ERPC Global Storage is a globally distributed object storage for Solana node operators. Upload backups, snapshots, config files, and more — right from the command line.
Regions: eu (default), asia, us-east, us-west, oc

Prerequisites

  • SLV CLI installed (slv command available)
  • Logged in with your API key (slv login)
  • An active storage subscription (slv storage product to browse plans)

Check Usage

View your current storage usage and quota:
bash
slv storage usage
text
📊 Storage Usage
  Used:    500 MB / 5 GB
  Files:   12
  Region:  eu

Upload a File

Upload a file to ERPC Global Storage:
bash
slv storage upload ./my-file.json
You can also specify a remote path and region:
bash
slv storage upload ./my-file.json --path backups/my-file.json --region asia
OptionDescription
-p, --pathRemote path in storage (default: filename)
-r, --regionStorage region (eu, asia, us-east, us-west, oc)
text
√ Got presigned URL
√ Upload complete

  Path:   backups/my-file.json
  Region: asia
  Size:   1.2 KB

Download a File

Download a file from ERPC Global Storage:
bash
slv storage download backups/my-file.json
Save to a specific local path:
bash
slv storage download backups/my-file.json --output ./restored-file.json
OptionDescription
-o, --outputLocal output path (default: original filename)
-r, --regionStorage region

List Files

List files in your storage:
bash
slv storage list
Filter by prefix:
bash
slv storage list --prefix backups/
OptionDescription
-p, --prefixFilter by path prefix
-r, --regionStorage region
-l, --limitMaximum number of files to return

Delete a File

Delete a file from ERPC Global Storage:
bash
slv storage delete backups/old-backup.tar.zst
OptionDescription
-r, --regionStorage region
-y, --yesSkip confirmation prompt

Browse Storage Plans

View available storage plans and purchase links:
bash
slv storage product
If you already have a subscription, this shows your current plan and upgrade options.

Command Reference

CommandAliasDescription
slv storage upload [file]Upload a file
slv storage download [path]slv storage dlDownload a file
slv storage listslv storage lsList files
slv storage delete [path]slv storage rmDelete a file
slv storage usageShow usage and quota
slv storage productBrowse storage plans
slv storage upgrade [quantity]Change storage capacity