| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Universal command-line tool for integrating Scrunchy components into any game project.
# Install
pip install -e .
# Show banner
scrunchy --banner
# Authenticate
scrunchy auth login
# Initialize project
scrunchy init
# Add components
scrunchy component add wallet-connector📖 For detailed user flow and complete guide, see USER_FLOW.md
pip install -e .Or install globally:
pip install -e . --user# Login with wallet signature
scrunchy auth login
# Check authentication status
scrunchy auth status
# Logout
scrunchy auth logout# Initialize Scrunchy in your project (auto-detects project type)
scrunchy init
# Override project type
scrunchy init --project-type unity
# Skip game registration
scrunchy init --skip-registration# Add components
scrunchy component add wallet-connector asset-verifier
# List installed components
scrunchy component list
# Remove components
scrunchy component remove wallet-connector
# Update components
scrunchy component update
# Search available components
scrunchy component search wallet
# Get component info
scrunchy component info wallet-connector# Show project status
scrunchy project status
# Detect project type
scrunchy project detect
# Get configuration value
scrunchy project config get project-type
# Set configuration value
scrunchy project config set api-key YOUR_KEY
# List all configuration
scrunchy project config list# Register a game
scrunchy game register --name "My Game" --description "Awesome game"
# List registered games
scrunchy game list
# Create API key
scrunchy game api-key create GAME_ID --name "production"
# List API keys
scrunchy game api-key list GAME_ID
# Revoke API key
scrunchy game api-key revoke GAME_ID KEY_ID# Verify asset access
scrunchy verify WALLET_ADDRESS ASSET_IDStored in ~/.scrunchy/config.json:
Stored in .scrunchy/config.json:
Components are tracked in .scrunchy/components.json:
# Install in development mode
pip install -e .
# Run CLI
scrunchy --helpSee main project LICENSE file.
| Back | FazBrowse Home | New Git URL |