Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions deployment/one-click-deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
echo "🚀 Starting PiRC-101 Automated Deployment to Soroban Testnet..."

# 1. Build
cargo build --target wasm32-unknown-unknown --release

# 2. Deploy Contracts (Using existing files)
soroban contract deploy --wasm target/wasm32-unknown-unknown/release/pi_token.wasm --source admin --network testnet
soroban contract deploy --wasm target/wasm32-unknown-unknown/release/treasury_vault.wasm --source admin --network testnet

# 3. Bootstrap Liquidity
echo "Initialization Complete. PiRC-101 is LIVE on Testnet."

7 changes: 7 additions & 0 deletions deployment/production-checklist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 🏁 Pi Network Official Adoption Checklist

- [ ] **Contract Integrity**: All `.rs` files in `contracts/` verified.
- [ ] **Solvency Proof**: `simulations/` reports 100% stability.
- [ ] **Regulatory Scan**: `docs/REFLEXIVE_PARITY.md` compliance check.
- [ ] **Testnet Verification**: Deploy via `.github/workflows/deploy-to-testnet.yml`.