Skip to content
Draft
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
42 changes: 42 additions & 0 deletions DEPLOYED-CONTRACTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# 📋 NetDAG Deployed Contracts Registry

**Network:** BSC Testnet (Chain ID: 97)
**Deployment Date:** February 2026
**Deployer:** `0xF6b3c63722182eD9e7889aDD34A4F97c25e1B318`

---

## Deployed Contracts

### 1. NDG Token
**Address:** `0xf8E886791E26DFD9195C1225b4Ca6458725DAe50`
**BSCScan:** https://testnet.bscscan.com/address/0xf8E886791E26DFD9195C1225b4Ca6458725DAe50

ERC-20 token with 1 Billion total supply, 18 decimals, mintable by owner.

### 2. Presale Contract
**Address:** `0x74d469c0eEd89b0F17189c824C95622C680f803E`
**BSCScan:** https://testnet.bscscan.com/address/0x74d469c0eEd89b0F17189c824C95622C680f803E

9-tier presale with vesting, 5% referral system, accepts BNB/USDT/BUSD.

### 3. Vesting Vault
**Address:** `0x0aC817497d482629879d9c44fF226C033c5f64D4`
**BSCScan:** https://testnet.bscscan.com/address/0x0aC817497d482629879d9c44fF226C033c5f64D4

Manages token vesting schedules with cliff periods and linear release.

### 4. Staking Contract
**Address:** `0x7730dCD24b93F171A7B7B85FcDB4193E94614D70`
**BSCScan:** https://testnet.bscscan.com/address/0x7730dCD24b93F171A7B7B85FcDB4193E94614D70

Stake NDG tokens to earn rewards from limited pool (60M NDG).

---

## Network Information

**Chain ID:** 97 (BSC Testnet)
**RPC URL:** https://data-seed-prebsc-1-s1.binance.org:8545/
**Explorer:** https://testnet.bscscan.com
**Faucet:** https://testnet.bnbchain.org/faucet-smart
6 changes: 4 additions & 2 deletions config/contract-config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Configuration for BNB Chain TESTNET (BSC Testnet)

export const CONTRACT_CONFIG = {
// Your TESTNET contract addresses
// Contract Addresses
TOKEN_CONTRACT: '0xf8E886791E26DFD9195C1225b4Ca6458725DAe50',
PRESALE_CONTRACT: '0x74d469c0eEd89b0F17189c824C95622C680f803E',
VESTING_VAULT: '0x0aC817497d482629879d9c44fF226C033c5f64D4',
STAKING_CONTRACT: '0x7730dCD24b93F171A7B7B85FcDB4193E94614D70',
TOKEN_CONTRACT: '0x35730a53211cB79186a07B84dc0e6a3412E31A57',

// BNB Chain TESTNET settings
CHAIN_ID: 97, // 97 = BSC TESTNET
Expand Down
12 changes: 12 additions & 0 deletions config/deployed-addresses.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"network": "bsc-testnet",
"chainId": 97,
"contracts": {
"token": "0xf8E886791E26DFD9195C1225b4Ca6458725DAe50",
"presale": "0x74d469c0eEd89b0F17189c824C95622C680f803E",
"vesting": "0x0aC817497d482629879d9c44fF226C033c5f64D4",
"staking": "0x7730dCD24b93F171A7B7B85FcDB4193E94614D70"
},
"explorer": "https://testnet.bscscan.com",
"rpc": "https://data-seed-prebsc-1-s1.binance.org:8545/"
}