Skip to content

Releases: maestroi/retro-crypto

catalogctl v1.0.3

04 Jan 11:22

Choose a tag to compare

catalogctl v1.0.3

CLI tool for managing Sui/Walrus game catalogs.

Quick Install (Linux/macOS)

# Download and install
curl -L https://github.com/maestroi/retro-crypto/releases/download/v1.0.3/catalogctl-linux-amd64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Or for macOS (Apple Silicon):

curl -L https://github.com/maestroi/retro-crypto/releases/download/v1.0.3/catalogctl-darwin-arm64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Manual Installation

macOS (Apple Silicon):

curl -L https://github.com/maestroi/retro-crypto/releases/download/v1.0.3/catalogctl-darwin-arm64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

macOS (Intel):

curl -L https://github.com/maestroi/retro-crypto/releases/download/v1.0.3/catalogctl-darwin-amd64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Linux (x64):

curl -L https://github.com/maestroi/retro-crypto/releases/download/v1.0.3/catalogctl-linux-amd64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Linux (ARM64):

curl -L https://github.com/maestroi/retro-crypto/releases/download/v1.0.3/catalogctl-linux-arm64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Windows:
Download catalogctl-windows-amd64.exe and add to your PATH.

Verify Installation

catalogctl version
catalogctl --help

Quick Start

# Configure catalogctl
# Create config.json in sui/ directory (see README for details)

# Upload a game blob to Walrus
catalogctl upload-blob --file ./game.zip

# List catalog entries
catalogctl list-catalog --catalog 0xCATALOG_ID

# Get cartridge details
catalogctl get-cartridge --id 0xCARTRIDGE_ID

See README for full documentation.

CLI v1.1.0

04 Jan 11:33

Choose a tag to compare

@solana-retro/cli 1.1.0

Command-line tool for publishing and managing on-chain game cartridges on Solana.

Installation

Download the binary for your platform and add it to your PATH:

  • Linux (x64): cartridge-cli-linux-amd64
  • Linux (ARM64): cartridge-cli-linux-arm64
  • macOS (Intel): cartridge-cli-darwin-amd64
  • macOS (Apple Silicon): cartridge-cli-darwin-arm64
  • Windows (x64): cartridge-cli-windows-amd64.exe

Or install via npm:

npm install -g @solana-retro/cli@1.1.0

Usage

# List all cartridges
cartridge-cli list --network devnet

# Get cartridge info
cartridge-cli info <cartridge-id>

# Publish a cartridge
cartridge-cli publish ./my-game.zip --network devnet

See README for full documentation.

catalogctl v1.1.0

04 Jan 11:33

Choose a tag to compare

catalogctl v1.1.0

CLI tool for managing Sui/Walrus game catalogs.

Quick Install (Linux/macOS)

# Download and install
curl -L https://github.com/maestroi/retro-crypto/releases/download/catalogctl-v1.1.0/catalogctl-linux-amd64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Or for macOS (Apple Silicon):

curl -L https://github.com/maestroi/retro-crypto/releases/download/catalogctl-v1.1.0/catalogctl-darwin-arm64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Manual Installation

macOS (Apple Silicon):

curl -L https://github.com/maestroi/retro-crypto/releases/download/catalogctl-v1.1.0/catalogctl-darwin-arm64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

macOS (Intel):

curl -L https://github.com/maestroi/retro-crypto/releases/download/catalogctl-v1.1.0/catalogctl-darwin-amd64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Linux (x64):

curl -L https://github.com/maestroi/retro-crypto/releases/download/catalogctl-v1.1.0/catalogctl-linux-amd64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Linux (ARM64):

curl -L https://github.com/maestroi/retro-crypto/releases/download/catalogctl-v1.1.0/catalogctl-linux-arm64 -o catalogctl
chmod +x catalogctl
sudo mv catalogctl /usr/local/bin/

Windows:
Download catalogctl-windows-amd64.exe and add to your PATH.

Verify Installation

catalogctl version
catalogctl --help

Quick Start

# Configure catalogctl
# Create config.json in sui/ directory (see README for details)

# Upload a game blob to Walrus
catalogctl upload-blob --file ./game.zip

# List catalog entries
catalogctl list-catalog --catalog 0xCATALOG_ID

# Get cartridge details
catalogctl get-cartridge --id 0xCARTRIDGE_ID

See README for full documentation.