Skip to content
Open
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
21 changes: 21 additions & 0 deletions docs/TESTNET_SETUP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
```markdown
```

# Testnet deployment guide

This guide explains how to deploy the stablecoin contracts to a testnet.

## Requirements

- Node.js and pnpm
- Hardhat installed globally (`npm install -g hardhat`)
- Testnet RPC endpoint (e.g. Sepolia, Mumbai)

## Steps

1. Copy `.env.example` to `.env` and fill in RPC URLs and private keys.
2. Install dependencies: `pnpm install`.
3. Deploy contracts: `pnpm hardhat deploy --network sepolia`.
4. Verify deployments using `pnpm hardhat verify`.

Always test on a testnet before deploying to mainnet.