Skip to content

Latest commit

 

History

History
124 lines (94 loc) · 4.95 KB

File metadata and controls

124 lines (94 loc) · 4.95 KB

MEVrebels Devnet Deployment

Date: October 30, 2025 Network: Solana Devnet RPC: Helius Devnet (https://devnet.helius-rpc.com)

✅ Deployed Programs (REC Vanity Addresses)

All 4 MEVrebels programs successfully deployed to devnet with vanity addresses starting with "REC":

1. Flash Loan Program

  • Program ID: REChcXRRzBxhLvjs4v1HZ1Zx3R6hUnTEVjdKDwwbT9w
  • Deployed Slot: 418,101,379
  • Size: 287 KB
  • Explorer: View on Solana Explorer
  • IDL Account: 9MbiirXPRu2kuR6vFfMY9wQ7kPMLYFjKgVbQEfRvQBys

2. Execution Engine Program

  • Program ID: REC2Aq9iAu4hu7efgJhtyFyWS1bSBDYgeoVXXQFtfpk
  • Deployed Slot: 418,101,487
  • Size: 342 KB
  • Explorer: View on Solana Explorer
  • IDL Account: 2mShy7WFeTwikhMY92PkjGmJs4wbDcfhohALkjn6STNY

3. Strategy Registry Program

  • Program ID: RECjnbr96LG2mDTXzhB5ZVY4JRfnSKmtx1pCgrGbMws
  • Deployed Slot: 418,101,602
  • Size: 267 KB
  • Explorer: View on Solana Explorer
  • IDL Account: HqsL74PcQsmZvvL9eE8145jTL2nqx8JBCBz5xEzc3LwF

4. DAO Governance Program

  • Program ID: RECwcpcHwBeDAV7tBvUuhJzsih16BaveZRC74kbBkSS
  • Deployed Slot: 418,101,713
  • Size: 447 KB
  • Explorer: View on Solana Explorer
  • IDL Account: 4zEdbrrxQMRCWuwP48nAAS1Szb88LVWqmqnxkMKu5RNy

🔑 Upgrade Authority

Upgrade Authority: RECdpxmc8SbnwEbf8iET5Jve6JEfkqMWdrEpkms3P1b

This wallet can upgrade the deployed programs. Keep the keypair secure.

📊 Deployment Statistics

Metric Value
Total Programs 4
Total Size 1.34 MB
Total Deployment Cost ~9.37 SOL
Deployment Time ~5 minutes
Slot Range 418,101,379 - 418,101,713 (334 slots)

🔗 Quick Access Links

Solana Explorer (Devnet)

SolanaFM (Devnet)

🧪 Integration Testing

Dashboard Integration

Update dashboard .env.local with deployed program IDs:

NEXT_PUBLIC_CLUSTER=devnet
NEXT_PUBLIC_RPC_ENDPOINT=https://devnet.helius-rpc.com/?api-key=***REMOVED***

NEXT_PUBLIC_STRATEGY_REGISTRY_PROGRAM_ID=RECjnbr96LG2mDTXzhB5ZVY4JRfnSKmtx1pCgrGbMws
NEXT_PUBLIC_EXECUTION_ENGINE_PROGRAM_ID=REC2Aq9iAu4hu7efgJhtyFyWS1bSBDYgeoVXXQFtfpk
NEXT_PUBLIC_DAO_GOVERNANCE_PROGRAM_ID=RECwcpcHwBeDAV7tBvUuhJzsih16BaveZRC74kbBkSS
NEXT_PUBLIC_FLASH_LOAN_PROGRAM_ID=REChcXRRzBxhLvjs4v1HZ1Zx3R6hUnTEVjdKDwwbT9w

Test Strategies

To create test strategies on devnet, run:

# Option 1: Run full test suite against devnet
anchor test --skip-local-validator --provider.cluster devnet

# Option 2: Use initialization script (when fixed)
npx ts-node scripts/initialize-devnet.ts

📝 Next Steps

  1. Initialize Programs: Create admin configs and DAO state on devnet
  2. Create Test Strategies: Deploy 2-3 example strategies for demo
  3. Backend Integration: Connect analytics service to devnet programs
  4. Dashboard Testing: Test wallet connection and strategy creation via UI

🚀 Mainnet Deployment (Future)

When ready for mainnet deployment:

  1. Generate new vanity keypairs (consider longer prefixes like "RECTOR" for brand recognition)
  2. Update Anchor.toml with mainnet program IDs
  3. Deploy with production RPC (Helius/QuickNode mainnet)
  4. Transfer upgrade authority to multisig wallet
  5. Audit programs one final time before mainnet launch

✅ Status

  • Vanity addresses generated (REC prefix)
  • All 4 programs built successfully
  • Deployed to devnet via Helius RPC
  • Deployment verified on Solana Explorer
  • Programs initialized (admin configs, DAO state)
  • Test strategies created
  • Dashboard integration tested

Deployment Status: ✅ COMPLETE Programs Live: ✅ YES Ready for Integration: ✅ YES