https://github.com/polymersnetwork/poly-token
POLY is the native utility and rewards token of the Polymers Network, powering a circular economy for plastics through blockchain, incentives, and transparency.
https://github.com/polymersnetwork/poly-token
anchor-lang dapp governance recycling rewards-platform solana token tokenization utility
Last synced: 9 months ago
JSON representation
POLY is the native utility and rewards token of the Polymers Network, powering a circular economy for plastics through blockchain, incentives, and transparency.
- Host: GitHub
- URL: https://github.com/polymersnetwork/poly-token
- Owner: PolymersNetwork
- License: mit
- Created: 2025-08-27T05:33:31.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-27T07:25:05.000Z (10 months ago)
- Last Synced: 2025-08-27T14:13:37.052Z (10 months ago)
- Topics: anchor-lang, dapp, governance, recycling, rewards-platform, solana, token, tokenization, utility
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🪙 POLY Token
**POLY** is the native utility and rewards token of the **Polymers Network**, powering a circular economy for plastics through blockchain, incentives, and transparency.
---
## 📌 Overview
* **Token Name:** Polymers Token
* **Symbol:** `PLY`
* **Blockchain:** Solana
* **Token Standard:** SPL Token (Solana Program Library)
* **Decimals:** 9
* **Use Cases:**
* Rewards for recycling & sustainability actions
* Governance and voting in the Polymers DAO
* Staking to support validators and earn yield
* Access to premium features in the Polymers ecosystem
* Trading on Solana DEXes (Raydium, Jupiter, Orca)
* **CA:** PLYKdaCUgxTUw6rSjWbgSN97Qtecb6Fy6SazWf1tvAC
---
## 🔄 Token Flow
```mermaid
flowchart LR
A[Citizens & Businesses] -->|Recycle Plastic / Offset Carbon| B[Earn POLY]
B --> C[Stake POLY]
B --> D[Trade POLY on DEX]
C --> E[Validators / DAO]
E --> F[Governance & Rewards]
F --> A
```
---
## 📊 Tokenomics
* **Total Supply:** `18,440,000,000 POLY`
* **Distribution:**
* ♻️ Community Rewards (40%) → `7.376B POLY`
* 🏢 Businesses & Partnerships (20%) → `3.688B POLY`
* ⚙️ Development & Ecosystem (20%) → `3.688B POLY`
* 🛡️ Treasury & DAO (15%) → `2.766B POLY`
* 👥 Team & Advisors (5%) → `922M POLY`
---
## 🛠️ Installation & Usage
### Install SPL Token tools
```bash
npm install @solana/spl-token @solana/web3.js
```
### Example: Fetch POLY balance
```ts
import { Connection, PublicKey } from "@solana/web3.js";
const POLY_MINT = new PublicKey("YOUR_POLY_MINT_ADDRESS");
async function getPolyBalance(wallet: string) {
const connection = new Connection("https://api.mainnet-beta.solana.com");
const owner = new PublicKey(wallet);
const accounts = await connection.getParsedTokenAccountsByOwner(owner, { mint: POLY_MINT });
if (accounts.value.length > 0) {
return accounts.value[0].account.data.parsed.info.tokenAmount.uiAmount;
}
return 0;
}
```
---
## 🌍 Integrations
* **Price Data APIs:**
* [Jupiter](https://jup.ag/)
* [Birdeye](https://birdeye.so/)
* [Dexscreener](https://dexscreener.com/)
* [Raydium](https://raydium.io/)
* **Wallets Supported:**
* Phantom
* Solflare
* Backpack
* Base
---
## 📜 License
MIT © 2025 Polymers Network