SLV Cloud Storage - Quickstart
☁️ SLV Cloud 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 (
slvcommand available) - Logged in with your API key (
slv login) - An active storage subscription (
slv storage productto browse plans)
Check Usage
View your current storage usage and quota:
bash
slv storage usageslv storage usagetext
📊 Storage Usage
Used: 500 MB / 5 GB
Files: 12
Region: eu📊 Storage Usage
Used: 500 MB / 5 GB
Files: 12
Region: euUpload a File
Upload a file to cloud storage:
bash
slv storage upload ./my-file.jsonslv storage upload ./my-file.jsonYou can also specify a remote path and region:
bash
slv storage upload ./my-file.json --path backups/my-file.json --region asiaslv storage upload ./my-file.json --path backups/my-file.json --region asia| Option | Description |
|---|---|
-p, --path | Remote path in storage (default: filename) |
-r, --region | Storage 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√ Got presigned URL
√ Upload complete
Path: backups/my-file.json
Region: asia
Size: 1.2 KBDownload a File
Download a file from cloud storage:
bash
slv storage download backups/my-file.jsonslv storage download backups/my-file.jsonSave to a specific local path:
bash
slv storage download backups/my-file.json --output ./restored-file.jsonslv storage download backups/my-file.json --output ./restored-file.json| Option | Description |
|---|---|
-o, --output | Local output path (default: original filename) |
-r, --region | Storage region |
List Files
List files in your storage:
bash
slv storage listslv storage listFilter by prefix:
bash
slv storage list --prefix backups/slv storage list --prefix backups/| Option | Description |
|---|---|
-p, --prefix | Filter by path prefix |
-r, --region | Storage region |
-l, --limit | Maximum number of files to return |
Delete a File
Delete a file from cloud storage:
bash
slv storage delete backups/old-backup.tar.zstslv storage delete backups/old-backup.tar.zst| Option | Description |
|---|---|
-r, --region | Storage region |
-y, --yes | Skip confirmation prompt |
Browse Storage Plans
View available storage plans and purchase links:
bash
slv storage productslv storage productIf you already have a subscription, this shows your current plan and upgrade options.
Command Reference
| Command | Alias | Description |
|---|---|---|
slv storage upload [file] | Upload a file | |
slv storage download [path] | slv storage dl | Download a file |
slv storage list | slv storage ls | List files |
slv storage delete [path] | slv storage rm | Delete a file |
slv storage usage | Show usage and quota | |
slv storage product | Browse storage plans | |
slv storage upgrade [quantity] | Change storage capacity |