@socket.tech/surge-gameplay
Version:
Smart contracts for Socket Surge - a blockchain-based battle royale game
38 lines (25 loc) • 489 B
Markdown
# Surge Game Play
## Dependencies
- **Solady**: Gas-optimized Solidity library
- **Forge-std**: Foundry standard library for testing and scripting
## Installation
```bash
# Install dependencies
forge install
# Build contracts
forge build
```
## Deployment
Use the provided deployment script:
```bash
# Set your private key
export PRIVATE_KEY=your_private_key_here
# Deploy tokens
```
## Testing
```bash
# Run tests
forge test
# Run tests with verbose output
forge test -vv
```