# Home

![Sylvan Token Logo](https://599029285-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVaBrY2XxcpOu145HEpoW%2Fuploads%2Fgit-blob-f6fbe6e9bd41376626e344f0434ed09b083531dc%2Fsylvan_logo_256x256.png?alt=media)

## ![](https://599029285-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVaBrY2XxcpOu145HEpoW%2Fuploads%2Fgit-blob-4cd667cc3b380836fed7b4b3789d9aa4c5bf4273%2Fsylvan_logo_32x32.png?alt=media) Sylvan Token (SYL)

![Sylvan Token Badge](https://img.shields.io/badge/Sylvan-Token-green?style=for-the-badge\&logo=ethereum) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT) [![Solidity](https://img.shields.io/badge/Solidity-0.8.24-blue?style=for-the-badge\&logo=solidity)](https://soliditylang.org/) [![BSC](https://img.shields.io/badge/BSC-Mainnet-yellow?style=for-the-badge\&logo=binance)](https://www.bnbchain.org/)

**Empowering Environmental Change Through Blockchain Technology**

[Website](https://www.sylvantoken.org/) • [Twitter](https://x.com/SylvanToken) • [Telegram](https://t.me/sylvantoken) • [GitHub](https://github.com/SylvanToken) • [Whitepaper](https://github.com/SylvanToken/GitBook/blob/main/WHITEPAPER.md)

***

### 🌍 About Sylvan Token

Sylvan Token (SYL) is a revolutionary BEP-20 token on Binance Smart Chain designed to support environmental organizations and ecological initiatives worldwide. Through an innovative fee distribution mechanism, every transaction contributes to environmental conservation.

#### 🎯 Mission

To create a sustainable financial ecosystem that directly funds environmental protection, reforestation projects, and ecological research through transparent blockchain technology.

#### ✨ Key Features

* 🌱 **Environmental Impact**: 25% of transaction fees directly support environmental NGOs
* 🔥 **Deflationary Mechanism**: 25% of fees burned + 10% of vested releases
* 💼 **Operational Sustainability**: 50% of fees fund project operations
* 🔒 **Advanced Vesting**: Time-locked releases with proportional burning
* 🛡️ **Fully Decentralized**: No pause mechanism - transfers can never be halted
* 🔐 **Multi-Sig Governance**: Safe Wallet (2/3 threshold) for secure operations
* 🌐 **Transparent**: All transactions publicly verifiable on-chain

***

### 📊 Token Economics

#### Token Details

| Parameter            | Value                                                                                   |
| -------------------- | --------------------------------------------------------------------------------------- |
| **Token Name**       | Sylvan Token                                                                            |
| **Symbol**           | SYL                                                                                     |
| **Network**          | Binance Smart Chain (BEP-20)                                                            |
| **Total Supply**     | 1,000,000,000 SYL                                                                       |
| **Decimals**         | 18                                                                                      |
| **Contract Address** | `0xc66404C3fa3E01378027b4A4411812D3a8D458F5`                                            |
| **BSCScan**          | [View Contract](https://bscscan.com/address/0xc66404C3fa3E01378027b4A4411812D3a8D458F5) |

#### Distribution

```
📊 Total Supply: 1,000,000,000 SYL

├─ 50% (500M) - Sylvan Token Wallet (Operations & Liquidity)
├─ 30% (300M) - Locked Reserve (34-month vesting)
├─ 16% (160M) - Founder Wallet
└─ 4% (40M) - Admin Wallets (4 × 10M each)
```

#### Transaction Fee Structure

**Universal 1% Transaction Fee**

```
💰 1% Transaction Fee Distribution:

├─ 50% → Fee Wallet (Operations)
├─ 25% → Donation Wallet (Environmental NGOs)
└─ 25% → Burn Address (Deflationary)
```

***

### 🔒 Vesting Schedules

#### Locked Reserve (300M SYL)

| Parameter       | Value            |
| --------------- | ---------------- |
| Lock            | 100%             |
| Duration        | 34 months        |
| Monthly Release | 3% (9M SYL)      |
| Burn on Release | 10% (900K/month) |
| To Beneficiary  | 90% (8.1M/month) |

#### Admin Wallets (10M SYL each × 4)

| Parameter       | Value           |
| --------------- | --------------- |
| Initial Release | 10% (1M SYL)    |
| Locked          | 90% (9M SYL)    |
| Duration        | 20 months       |
| Monthly Release | 4.5% (450K SYL) |
| Burn on Release | 10% (45K/month) |

#### Founder Wallet (160M SYL)

| Parameter       | Value          |
| --------------- | -------------- |
| Initial Release | 20% (32M SYL)  |
| Locked          | 80% (128M SYL) |
| Duration        | 16 months      |
| Monthly Release | 5% (8M SYL)    |

***

### 🔐 Security & Governance

#### Security Features

* ❌ **No Pause Mechanism**: Fully decentralized - transfers can NEVER be halted
* ✅ **Reentrancy Protection**: All state-changing functions protected
* ✅ **Input Validation**: Comprehensive parameter checking
* ✅ **Owner-Only Access**: Critical functions restricted

#### Multi-Signature Governance (Safe Wallet)

| Parameter    | Value            |
| ------------ | ---------------- |
| Safe Address | `[SAFE_ADDRESS]` |
| Threshold    | 2 of 3 (67%)     |
| Signer 1     | Deployer Wallet  |
| Signer 2     | Owner Wallet     |
| Signer 3     | Admin BRK        |

***

### 🚀 Quick Start

#### Prerequisites

* Node.js v16+
* npm or yarn

#### Installation

```bash
# Clone the repository
git clone https://github.com/SylvanToken/SylvanToken.git
cd SylvanToken

# Install dependencies
npm install

# Compile contracts
npx hardhat compile

# Run tests
npx hardhat test
```

#### Deployment

```bash
# Deploy to BSC Testnet
npm run deploy:testnet

# Deploy to BSC Mainnet
npm run deploy:mainnet

# Verify on BSCScan
npm run verify:mainnet
```

***

### 🏗️ Architecture

#### Smart Contract Structure

```
contracts/
├── SylvanToken.sol              # Main token contract
├── interfaces/
│   ├── IEnhancedFeeManager.sol
│   ├── IVestingManager.sol
│   └── IAdminWalletHandler.sol
└── libraries/
    ├── AccessControl.sol
    ├── InputValidator.sol
    ├── TaxManager.sol
    ├── WalletManager.sol
    └── EmergencyManager.sol
```

***

### 📱 Safe App

Custom Safe App for vesting management and token operations:

**Features:**

* 📊 Dashboard with wallet balances
* 🔓 Vesting release management
* 🚀 Batch airdrop transfers
* 📅 Vesting schedule tracking
* 💰 Fee exemption management

**Repository**: [github.com/SylvanToken/SafeWallet](https://github.com/SylvanToken/SafeWallet)

***

### 📚 Documentation

| Document                                                                                     | Description                    |
| -------------------------------------------------------------------------------------------- | ------------------------------ |
| [Whitepaper](https://github.com/SylvanToken/GitBook/blob/main/WHITEPAPER.md)                 | Complete project documentation |
| [Roadmap](https://github.com/SylvanToken/GitBook/blob/main/ROADMAP.md)                       | Development timeline           |
| [Security](https://github.com/SylvanToken/GitBook/blob/main/SECURITY.md)                     | Security practices             |
| [API Reference](https://github.com/SylvanToken/GitBook/blob/main/docs/API_REFERENCE.md)      | Contract interfaces            |
| [Vesting Guide](https://github.com/SylvanToken/GitBook/blob/main/docs/VESTING_LOCK_GUIDE.md) | Vesting system details         |

***

### 🔗 Links

* 🌐 **Website**: [sylvantoken.org](https://www.sylvantoken.org/)
* 🐦 **Twitter**: [@SylvanToken](https://x.com/SylvanToken)
* 💬 **Telegram**: [t.me/sylvantoken](https://t.me/sylvantoken)
* 💻 **GitHub**: [github.com/SylvanToken](https://github.com/SylvanToken)

***

### ⚖️ License

MIT License - see [LICENSE](https://github.com/SylvanToken/GitBook/blob/main/LICENSE/README.md)

***

### ⚠️ Disclaimer

Cryptocurrency investments carry risk. Only invest what you can afford to lose. This is not financial advice.

***

**Made with 💚 for the Planet**

*Every transaction plants a seed for a greener future*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sylvan-token.gitbook.io/sylvan-token-docs/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
