A Next-Generation EVM Blockchain for the ASEAN Digital Economy
Zero Gas Fees — 2-Second Blocks — IBFT 2.0 Consensus — ~1,500 TPS
TPIX Chain is a high-performance EVM-compatible blockchain built on Polygon Edge technology, designed specifically for the Thai and Southeast Asian digital economy. With gasless transactions, 2-second block times, and IBFT Proof-of-Authority consensus, TPIX Chain provides an unmatched platform for decentralized applications, DeFi, and real-world asset tokenization.
The native TPIX coin (7 billion fixed supply, 18 decimals) powers the entire ecosystem including: a built-in Uniswap V2 DEX, multi-tier master node system, a token factory for custom ERC-20 creation, cross-chain bridge to BSC, and integration with enterprise platforms serving 500,000+ users.
| Parameter | Value |
|---|---|
| Chain Name | TPIX Chain |
| Chain ID (Mainnet) | 4289 |
| Chain ID (Testnet) | 4290 |
| Consensus | IBFT 2.0 (Istanbul Byzantine Fault Tolerant) |
| Block Time | 2 seconds |
| Finality | ~10 seconds (5 blocks) |
| Gas Price | 0 (Free — hardcoded in genesis) |
| TPS Capacity | ~1,500 transactions/second |
| VM | EVM (Full Solidity & ERC-20/721 support) |
| Native Coin | TPIX (18 decimals) |
| Total Supply | 7,000,000,000 TPIX (pre-mined in genesis) |
| Validators | 4 IBFT nodes (BFT tolerates 1 faulty) |
| RPC URL | https://rpc.tpix.online |
| Block Explorer | explorer.tpix.online |
We believe in public, verifiable infrastructure. Here is the real-time status of TPIX Chain's registration across the ecosystem — no overclaims, no marketing fluff.
| Registry | Status | Source |
|---|---|---|
| ethereum-lists/chains | ⏳ Under review | PR #8231 opened 2026-04-17 — source of truth for chainlist.org, chainid.network, and most EVM wallets |
| chainlist.org | ⏳ Pending merge | Auto-populates within hours after ethereum-lists merges PR #8231 |
| chainid.network | ⏳ Pending merge | Same data source as chainlist.org |
| Rabby Wallet | ⏳ Pending merge | Pulls from ethereum-lists — logo appears automatically after merge |
| OKX Web3 Wallet | ⏳ Pending merge | Pulls from ethereum-lists |
| Trust Wallet | ⏳ Pending merge | Partial — pulls chain data from ethereum-lists; native-icon submission to trustwallet/assets is a separate future step |
| MetaMask (built-in icon) | 🔲 Not yet | Requires separate PR to MetaMask/metamask-extension — planned after PR #8231 merges |
| CoinGecko | 🔲 Not yet | Listing application requires active market data from at least one exchange |
| CoinMarketCap | 🔲 Not yet | Listing application requires verified circulating supply + exchange listings |
| DeFiLlama | 🔲 Not yet | Requires TVL data via subgraph or adapter |
The official TPIX Chain logo is published both via IPFS (content-addressed, immutable) and via our own CDN.
| Source | URL / Identifier |
|---|---|
| IPFS (primary, content-addressed) | ipfs://bafybeiby5mwnwdi53fye4iurjxlddfzonsj67ejl4sjy7qda53za6jlgo4 |
| IPFS Gateway (HTTPS) | ipfs.io/ipfs/bafybeiby5mwnwdi53fye4iurjxlddfzonsj67ejl4sjy7qda53za6jlgo4 |
| Canonical CDN (HTTPS) | https://tpix.online/images/tpix-logo-512.png |
| Format | 512×512 PNG, transparent background, 323 KB |
Anyone can verify the icon has not been tampered with: ipfs get bafybeiby5mwnwdi53fye4iurjxlddfzonsj67ejl4sjy7qda53za6jlgo4 → SHA-256 matches.
Our DEX at tpix.online acts as the primary on-ramp for chain adoption. Any visitor connecting a wallet gets TPIX Chain auto-added with icon (where the wallet supports it) — no separate registry required.
| Feature | Implementation | Covered Wallets |
|---|---|---|
| Auto-add TPIX Chain after connect | EIP-3085 wallet_addEthereumChain with iconUrls |
MetaMask, Rabby, OKX, Trust, Coinbase, WalletConnect |
| Chain icon displayed | iconUrls: ["https://tpix.online/images/tpix-logo-512.png"] |
Rabby, OKX, Trust (MetaMask ignores iconUrls; awaits PR to their repo) |
| 1-click "Add to Wallet" for custom tokens | EIP-747 wallet_watchAsset |
MetaMask, Rabby, OKX, Trust, Coinbase |
| Auto chain-switch before token add | wallet_switchEthereumChain fallback + error toast if declined |
All EIP-1193 wallets |
Implementation reference: resources/js/utils/web3.js — addTPIXChainToWallet(), addTokenToWallet(), buildAddChainParams().
| Gap | Effort | Blocker |
|---|---|---|
| MetaMask built-in chain icon | Medium (SVG + PR) | Waiting for ethereum-lists/chains#8231 to merge first |
| Trust Wallet native asset entry | Medium (PR to trustwallet/assets) |
Low priority — chain already visible via chainlist import |
| CoinGecko listing | High (needs DEX volume + supply proof) | Launch liquidity on external CEX/DEX needed |
| CoinMarketCap listing | High (needs verified supply audit) | Token contract audit + exchange listings |
| DeFiLlama adapter | Medium (SDK integration) | DEX factory deployment + liquidity pools. See docs/DEFILLAMA.md |
| Wallet Connect v2 project listing | Low | Submit project metadata to WalletConnect Cloud |
All infrastructure-relevant data is exposed over simple HTTPS endpoints so anyone — exchanges, aggregators, auditors, researchers — can verify our claims independently.
| Endpoint | Response | Purpose |
|---|---|---|
GET /api/v1/supply/total_supply |
7000000000 |
CoinGecko-spec plain text |
GET /api/v1/supply/circulating_supply |
live computed | CoinGecko-spec plain text |
GET /api/v1/supply/max_supply |
7000000000 |
CoinGecko-spec plain text |
GET /api/v1/supply |
JSON | Full breakdown with locked-address inventory |
Base URL: https://tpix.online
Circulating-supply methodology (fully reproducible):
circulating = total_supply − Σ balance(locked_address_i)
Where locked_address_i is each genesis allocation pool (validators, team vesting, ecosystem treasury, master-node rewards, token sale vesting, liquidity reserves). The list is published in config/supply.php and queried live against rpc.tpix.online on every request. No admin override, no opaque calculations.
Third parties can reproduce the circulating-supply calculation in two commands:
# 1. Get the list of locked addresses
curl -s https://tpix.online/api/v1/supply | jq '.locked_addresses[].address'
# 2. Query each balance via public RPC, sum, subtract from 7,000,000,000Implements the CoinMarketCap DEX API specification:
| Endpoint | Purpose |
|---|---|
GET /api/v1/cmc/summary |
Condensed pair info — last price, 24h volume, price change |
GET /api/v1/cmc/assets |
Asset metadata — supply, decimals, chain, withdraw limits |
GET /api/v1/cmc/tickers |
Full tickers — base/quote volume per pair |
GET /api/v1/cmc/orderbook/{MARKET} |
Order-book depth (e.g. TPIX_USDT) |
All endpoints set Access-Control-Allow-Origin: * and are cached 15-30 seconds for protection against abuse.
| Policy | Document |
|---|---|
| Security vulnerability reporting | SECURITY.md — coordinated disclosure, < 12h response for critical |
| Contributing guidelines | CONTRIBUTING.md — Conventional Commits, scenario-based review |
| Release notes | CHANGELOG.md — Keep a Changelog format |
| Code owners | .github/CODEOWNERS |
| DeFiLlama integration plan | docs/DEFILLAMA.md |
Deployed contracts live in contracts/deployed-contracts.json and are source-verified on explorer.tpix.online. Re-verify or batch-submit with:
cd contracts
npm run verify:sources # submit unverified contracts
npm run verify:recheck # audit verification status onlyThe script pulls contract metadata from deployed-contracts.json, submits flattened source to Blockscout's Etherscan-compatible endpoint, and writes the result back to the registry.
TPIX-Coin/
├── contracts/ # Solidity smart contracts (Hardhat)
│ ├── identity/ # Living Identity recovery contract
│ │ └── TPIXIdentity.sol
│ ├── masternode/ # Node registry & staking
│ ├── bridge/ # Cross-chain bridge (BSC)
│ ├── dex/ # DEX router (Uniswap V2 fork)
│ ├── token-factory/ # Token Factory contracts (Phase 2)
│ │ ├── TPIXTokenFactory.sol # V1 factory (basic ERC-20)
│ │ ├── TPIXTokenFactoryV2.sol # V2 coordinator (all ERC-20 types)
│ │ ├── TPIXNFTFactory.sol # NFT coordinator (single + collection)
│ │ ├── interfaces/ # Lightweight creator interfaces
│ │ │ ├── ITokenCreators.sol # ERC-20 creator interfaces
│ │ │ └── INFTCreators.sol # NFT creator interfaces
│ │ ├── ERC20V2Creator.sol # Sub-factory: Enhanced ERC-20
│ │ ├── UtilityTokenCreator.sol # Sub-factory: Utility token
│ │ ├── RewardTokenCreator.sol # Sub-factory: Reward token
│ │ ├── GovernanceTokenCreator.sol # Sub-factory: Governance token
│ │ ├── StablecoinTokenCreator.sol # Sub-factory: Stablecoin
│ │ ├── FactoryERC721Creator.sol # Sub-factory: Single NFT
│ │ ├── NFTCollectionCreator.sol # Sub-factory: NFT collection
│ │ ├── FactoryERC20.sol # Basic ERC-20 template
│ │ ├── FactoryERC20V2.sol # Enhanced ERC-20 (pausable, blacklist, auto-burn)
│ │ ├── UtilityToken.sol # Tax, anti-whale, anti-bot
│ │ ├── RewardToken.sol # Reflection, dividend, vesting
│ │ ├── GovernanceToken.sol # ERC20Votes, delegation
│ │ ├── StablecoinToken.sol # Freeze, KYC, authority mint/burn
│ │ ├── FactoryERC721.sol # Single NFT (royalty, soulbound)
│ │ └── NFTCollection.sol # Collection (mint, reveal, royalty)
│ ├── scripts/ # Deploy & verify scripts
│ └── hardhat.config.js
├── infrastructure/ # Genesis config & Docker deployment
│ ├── genesis.json # Chain genesis (4 validators, 7B supply)
│ ├── docker-compose.yml # 4-node IBFT cluster
│ └── blockscout/ # Block Explorer (Blockscout)
│ ├── docker-compose.yml # Explorer + PostgreSQL + Verifier
│ └── .env.example # Environment configuration
├── scripts/
│ └── blockchain/
│ ├── create-token.js # Token Factory V1 deployment
│ └── deploy-factory-v2-remote.mjs # Factory V2 + NFT deploy (GitHub Actions)
├── masternode/ # Polygon Edge node config & install scripts
├── masternode-app/ # Master Node CLI tools (Go/Wails)
├── masternode-ui/ # Master Node Electron GUI (Windows)
│ └── electron/ # HD wallet, identity manager, SQLite
├── wallet/ # TPIX Wallet — Flutter mobile app
│ └── lib/
│ ├── services/ # wallet_service, identity_service
│ ├── screens/ # UI screens (home, send, identity, etc.)
│ └── providers/ # State management
├── docs/ # Documentation
│ ├── WHITEPAPER.md # Comprehensive whitepaper (v2.0)
│ ├── CARBON-CREDIT.md # Carbon Credit system documentation
│ └── EXPLORER.md # Block Explorer setup guide
├── .github/workflows/ # CI/CD — auto-build APK + EXE on tag push
└── LICENSE
Secure mobile wallet for TPIX Chain with premium 3D animated UI.
- Multi-Wallet: HD wallet with BIP-39/BIP-44 derivation (up to 128 wallets)
- Living Identity Recovery: Recover wallet without seed phrase using security questions + GPS location (hashed, never stored raw) + recovery PIN
- QR Scanner: Scan QR codes to send TPIX instantly
- Transaction History: Local storage + blockchain scanning
- Security: AES-256 encrypted keystore, PIN protection, 6-digit recovery PIN
- Bilingual: Thai + English with one-tap switching
- Auto-update: Check GitHub Releases for latest version
Download: Latest Release
Desktop application to run TPIX Chain validator nodes.
- HD Wallet: BIP-39 seed phrase with multi-wallet management (128 slots)
- Living Identity: Security questions + recovery PIN protection
- QR Scanner: Camera-based address scanning for sending TPIX
- One-click setup: Auto-configuration with smart port/IP allocation
- Multi-node: Run multiple nodes on different ports
- Dashboard: Real-time network monitoring with SQLite persistence
- 3 Tiers: Light (10K TPIX), Sentinel (100K), Validator (1M)
- Rewards: Up to 15% APY from 1.4B reward pool
Guide: tpix.online/masternode/guide
Decentralized exchange at tpix.online — Uniswap V2 fork optimized for TPIX Chain.
- Spot trading with real-time charts
- Token swap with 0.3% fee (0.25% to LPs, 0.05% to protocol)
- Liquidity provision with LP token rewards
- Multi-chain support: TPIX Chain, BSC, Ethereum, Polygon
Self-hosted block explorer at explorer.tpix.online powered by Blockscout.
- Transaction & Address Search — Look up any tx, address, or token
- Smart Contract Verification — Verify Solidity source code
- Token Tracker — List all ERC-20 tokens on TPIX Chain
- API v2 — REST API for programmatic access
- Real-Time Stats — Transaction charts, network activity
Setup guide: docs/EXPLORER.md | Docker: infrastructure/blockscout/docker-compose.yml
On-chain carbon credit trading with IoT verification at tpix.online/carbon-credits.
- Verified Credits — VCS, Gold Standard, CDM, ACR standards
- IoT Integration — Real-time sensor verification
- Fractional Trading — Buy as little as 0.001 tCO₂e
- Zero Gas Fees — Trade and retire credits for free
- Retirement Certificates — On-chain NFT proof of carbon offset
Documentation: docs/CARBON-CREDIT.md | Whitepaper: tpix.online/carbon-credits/whitepaper
| Contract | Description |
|---|---|
TPIXIdentity |
Living Identity — on-chain wallet recovery without seed phrase |
TPIXDEXFactory |
Creates and manages trading pair contracts |
TPIXDEXRouter02 |
Handles multi-hop swaps and liquidity operations |
TPIXDEXPair |
Individual liquidity pool with ERC-20 LP tokens |
WTPIX |
Wrapped TPIX for ERC-20 compatibility |
TPIXTokenSale |
Public sale contract with vesting schedule |
NodeRegistry |
Validator node registration and management |
StakingPool |
TPIX staking for node operators |
RewardDistributor |
Block reward distribution to validators |
TPIXTokenFactory |
V1 ERC-20 token factory (standard/mintable/burnable) |
TPIXTokenFactoryV2 |
V2 coordinator for all ERC-20 types — 0xCdE5…dfF2 |
TPIXNFTFactory |
NFT coordinator (single + collection) — 0x3871…76F9 |
ERC20V2Creator |
Sub-factory: deploys enhanced ERC-20 tokens |
UtilityTokenCreator |
Sub-factory: deploys utility tokens (tax, anti-whale) |
RewardTokenCreator |
Sub-factory: deploys reward tokens (reflection, vesting) |
GovernanceTokenCreator |
Sub-factory: deploys governance tokens (ERC20Votes) |
StablecoinTokenCreator |
Sub-factory: deploys stablecoins (freeze, KYC) |
FactoryERC721Creator |
Sub-factory: deploys single NFTs (royalty, soulbound) |
NFTCollectionCreator |
Sub-factory: deploys NFT collections (mint, reveal) |
FactoryERC20V2 |
Enhanced ERC-20 with pausable, blacklist, mint cap, auto-burn |
UtilityToken |
ERC-20 with tax system, anti-whale, anti-bot |
RewardToken |
ERC-20 with reflection/dividend, vesting |
GovernanceToken |
ERC-20 with ERC20Votes, delegation, permit |
StablecoinToken |
ERC-20 with freeze, KYC allowlist, authority mint/burn |
FactoryERC721 |
Single NFT with ERC-2981 royalty, soulbound (SBT) |
NFTCollection |
NFT collection with mint config, delayed reveal, royalty |
A novel wallet recovery system that eliminates the need for seed phrases — no other blockchain wallet has this.
How it works:
- User sets 3-5 security questions, registers up to 3 GPS locations, and creates a 6-8 digit recovery PIN
- Each factor is stored as a one-way hash — never plaintext
- User loses device or forgets seed phrase
- User answers security questions (60%+) + stands at registered GPS location (±200m) — or uses recovery PIN as backup
- Smart contract starts 48-hour time-lock recovery
- Original owner can cancel within 48 hours (theft protection)
- After 48 hours, wallet control transfers to new address
GPS Privacy: Coordinates are rounded to ~111m grid then SHA-256 hashed. Only the hash is stored — no one can see your actual location, not even with full database access. See Whitepaper §10 for the full privacy model.
Deploy:
cd contracts
npm install
export DEPLOYER_KEY=0x...your_private_key...
npm run deploy:identityGas cost: FREE (TPIX Chain has zero gas fees)
The Token Factory uses a Coordinator + Sub-Factory Creator pattern to stay within EVM's 24KB contract size limit (EIP-170). Each token type has its own Creator contract that embeds the token bytecode, while the Coordinator provides a unified entry point with registry and nonce management.
TPIXTokenFactoryV2 (coordinator)
├── ERC20V2Creator → FactoryERC20V2
├── UtilityTokenCreator → UtilityToken
├── RewardTokenCreator → RewardToken
├── GovernanceTokenCreator → GovernanceToken
└── StablecoinTokenCreator → StablecoinToken
TPIXNFTFactory (coordinator)
├── FactoryERC721Creator → FactoryERC721
└── NFTCollectionCreator → NFTCollection
Deployed via GitHub Actions — compile on runner, SCP artifacts to server, deploy with validator key. See .github/workflows/deploy-factory-v2.yml.
| Application | Description |
|---|---|
| Decentralized Exchange | AMM-based DEX with zero gas trading |
| FoodPassport | Blockchain food traceability (farm-to-table) |
| IoT Smart Farm | AI + IoT sensors for precision agriculture |
| Delivery Platform | Multi-service delivery with TPIX cashback |
| AI Bot Marketplace | Buy/sell AI bots for trading & customer service |
| Hotel Booking | Decentralized travel booking with TPIX payment |
| E-Commerce | Multi-vendor marketplace with 5% cashback |
| Token Factory | Create custom ERC-20/ERC-721 tokens (10 types, 16 sub-options) |
| Carbon Credit | On-chain carbon credit trading with IoT verification |
| Thaiprompt Affiliate | Enterprise MLM platform (500,000+ users) |
| Allocation | Amount | Percentage |
|---|---|---|
| Master Node Rewards | 1,400,000,000 TPIX | 20.0% |
| Ecosystem Development | 1,750,000,000 TPIX | 25.0% |
| Team & Advisors | 700,000,000 TPIX | 10.0% |
| Token Sale | 700,000,000 TPIX | 10.0% |
| Liquidity & Market Making | 1,050,000,000 TPIX | 15.0% |
| Community & Rewards | 1,400,000,000 TPIX | 20.0% |
| Total | 7,000,000,000 TPIX | 100% |
| Phase | Price | Allocation | TGE Unlock | Vesting |
|---|---|---|---|---|
| Private Sale | $0.05 | 100M TPIX | 10% | 30d cliff, 180d linear |
| Pre-Sale | $0.08 | 200M TPIX | 15% | 14d cliff, 120d linear |
| Public Sale | $0.10 | 400M TPIX | 25% | No cliff, 90d linear |
| Tier | Stake Required | APY | Lock Period | Max Nodes | Role |
|---|---|---|---|---|---|
| Validator | 10,000,000 TPIX | 15-20% | 180 days | 21 | IBFT2 block sealer + governance |
| Guardian | 1,000,000 TPIX | 10-12% | 90 days | 100 | Premium masternode |
| Sentinel | 100,000 TPIX | 7-9% | 30 days | 500 | Standard masternode |
| Light | 10,000 TPIX | 4-6% | 7 days | Unlimited | Light node |
Reward Distribution: 20% Validator (IBFT2 sealers), 35% Guardian, 30% Sentinel, 15% Light. Total Reward Pool: 1.4 Billion TPIX over 3 years (ending 2028) with decreasing annual emission. Validator Governance: Validators form the chain's "board of directors" — vote on protocol changes, new admissions, and contract upgrades. Requires 10M TPIX + company KYC (PDPA-compliant).
| Year | Period | Emission | Per Block | Share |
|---|---|---|---|---|
| Year 1 | 2025-2026 | 600,000,000 TPIX | ~38.3 TPIX | 42.9% |
| Year 2 | 2026-2027 | 500,000,000 TPIX | ~31.9 TPIX | 35.7% |
| Year 3 | 2027-2028 | 300,000,000 TPIX | ~19.1 TPIX | 21.4% |
Visit tpix.online and connect your wallet. TPIX Chain is added automatically with icon (on supported wallets) via EIP-3085. No manual setup required.
| Field | Value |
|---|---|
| Network Name | TPIX Chain |
| RPC URL | https://rpc.tpix.online |
| Chain ID | 4289 |
| Currency Symbol | TPIX |
| Decimals | 18 |
| Block Explorer | https://explorer.tpix.online |
| Icon URL (if wallet asks) | https://tpix.online/images/tpix-logo-512.png |
Ethers.js v6:
const provider = new ethers.JsonRpcProvider('https://rpc.tpix.online', {
chainId: 4289,
name: 'TPIX Chain',
});Viem:
import { defineChain } from 'viem';
export const tpixChain = defineChain({
id: 4289,
name: 'TPIX Chain',
nativeCurrency: { name: 'TPIX', symbol: 'TPIX', decimals: 18 },
rpcUrls: { default: { http: ['https://rpc.tpix.online'] } },
blockExplorers: { default: { name: 'TPIX Explorer', url: 'https://explorer.tpix.online' } },
});Hardhat (hardhat.config.js):
networks: {
tpix: {
url: 'https://rpc.tpix.online',
chainId: 4289,
accounts: [process.env.DEPLOYER_KEY],
},
}All logo assets are open for use by integrators, exchanges, and listing services. Please do not modify the logo. Use the 512×512 PNG for wallet/app integrations and the SVG (when published) for scalable UI.
| Asset | Size | URL | Purpose |
|---|---|---|---|
| Primary PNG | 512×512, transparent | tpix.online/images/tpix-logo-512.png |
Wallet integration, chainlist icon |
| IPFS CID | 512×512, transparent | ipfs://bafybeiby5mwnwdi53fye4iurjxlddfzonsj67ejl4sjy7qda53za6jlgo4 |
Content-addressed (for ethereum-lists) |
| Legacy WebP | variable | tpix.online/tpixlogo.webp |
Web UI, legacy links |
For exchange listings (CoinGecko, CoinMarketCap, CEX partners), please use the Primary PNG — the content hash matches what is registered in ethereum-lists/chains.
| Phase | Period | Status | Milestones |
|---|---|---|---|
| Foundation | Q1-Q2 2023 | Done | Whitepaper, architecture, team formation |
| Blockchain | Q3-Q4 2023 | Done | Polygon Edge, TPIX coin, IBFT consensus, testnet |
| Integration | Q1-Q2 2024 | Done | Laravel services, REST API, block explorer |
| Ecosystem | Q3-Q4 2024 | Done | DEX, master node network, SDK development |
| Real-World | Q1-Q2 2025 | Done | FoodPassport, delivery, IoT, AI bots |
| Scale | Q3-Q4 2025 | Done | Cross-chain bridge, mobile wallet app, multi-wallet |
| Identity | Q1 2026 | Done | Living Identity recovery, GPS verification, on-chain identity contract |
| Enterprise | Q2 2026 | In Progress | Enterprise toolkit, government compliance |
| Global | Q3-Q4 2026 | Planned | ASEAN expansion, 100+ dApps, multi-language |
- Wallet: Flutter 3.38+, Dart 3.x, Android SDK 34+
- Master Node UI: Node.js 20+, Electron
- Contracts: Node.js 20+, Hardhat (Solidity 0.8.20 + 0.8.24), OpenZeppelin 5.x
cd wallet
flutter pub get
flutter build apk --releasecd masternode-ui
npm install
npm run buildcd contracts
npm install
# Deploy Living Identity contract to TPIX Chain
export DEPLOYER_KEY=0x...your_private_key...
npm run deploy:identity
# Verify deployment
export IDENTITY_CONTRACT=0x...deployed_address...
npm run verify| Resource | URL |
|---|---|
| TPIX TRADE (DEX) | tpix.online |
| Block Explorer | explorer.tpix.online |
| JSON-RPC Endpoint | https://rpc.tpix.online |
| Whitepaper | tpix.online/whitepaper |
| Carbon Credits | tpix.online/carbon-credits |
| Token Sale | tpix.online/token-sale |
| Master Node Guide | tpix.online/masternode/guide |
| Download Apps | tpix.online/download |
| Resource | URL |
|---|---|
| Whitepaper (MD) | docs/WHITEPAPER.md |
| Carbon Credit Docs | docs/CARBON-CREDIT.md |
| Explorer Setup | docs/EXPLORER.md |
| Resource | URL |
|---|---|
| ethereum-lists/chains PR | pull/8231 |
| Chain ID Registry | chainid.network/chain/4289 (post-merge) |
| Chainlist | chainlist.org/chain/4289 (post-merge) |
| IPFS Logo (CID) | bafybeiby5mwnwdi53fye4iurjxlddfzonsj67ejl4sjy7qda53za6jlgo4 |
MIT License — see LICENSE for details.
Developed by Xman Studio
xmanstudio.com
