TWIX DOCUMENTATION · SITE BUILD v4.0.0

One handbook.
The complete TWIX build.

This is the canonical human-readable reference for TWIX Mainnet and the public platform around it. It distinguishes consensus components, applications, historical research and policy so similarly named surfaces are not conflated.

TWIX MAINNET · LIVECHAIN · twix-1EVM · 1415006552SITE · v4.0.0EXPLORER · v0.3.0DATA ATTESTATION · v0.2.0
OVERVIEW

What TWIX is.

TWIX Mainnet is an independent Cosmos SDK network with native Ethereum-compatible execution. Cosmos-facing and EVM-facing tools operate against the same chain state. The production chain ID is twix-1; the EVM chain ID is 1415006552 / 0x54574958.

Primary ruleCurrent Mainnet state, consensus validators and public endpoints belong to the Mainnet layer. Data Attestation and Trading Tools are applications. The earlier Cosmos Hub Meta Account work is a Research archive.
PLATFORM ARCHITECTURE

Four layers, one public identity.

01 · CONSENSUS

TWIX Mainnet

Cosmos consensus, staking, governance, bank state and native EVM execution.

02 · VISIBILITY

Explorer & network pages

Human-readable and indexed views of chain state, validators, proposals and tokenomics.

03 · APPLICATIONS

Data Attestation & Trading Tools

Applications built around or anchored to TWIX. They do not produce blocks.

04 · REFERENCE

Docs, manifests & Research

Canonical integration data plus preserved historical experiments and source packages.

Wallet / dApp
     │ HTTPS / WSS
     ▼
TWIX public edge ──────► Explorer / Docs / Apps
     │ restricted proxy
     ▼
TWIX node services
     │
     ├─ Cosmos consensus + staking + governance
     └─ Native EVM execution
PUBLIC ROUTE MAP

Where everything lives.

SurfaceRoutePurpose
Mainnet/Production network overview and live status.
Network/network.htmlCanonical chain IDs, endpoints, wallet setup, genesis and P2P identity.
Consensus Validators/validators.htmlLive validator set, bonded TWIX, commission and jail status.
Explorerexplorer.twixchain.comIndexed blocks, transactions, contracts, validators, governance, charts and tokenomics.
Ecosystem/ecosystem.htmlOrganized directory of network services and applications.
Governance/governance.htmlMainnet governance entry point with direct Explorer proposal access.
Mainnet Security/mainnet-security.htmlCurrent public exposure, consensus boundaries and hardening posture.
Trading Tools/twix-trading-tools.htmlNon-custodial market and risk calculators.
Developer Center/developers.htmlRPC quickstart and integration snippets.
Documentation/docs.htmlThis complete technical handbook.
Data Attestationvalidator.twixchain.comTDAP signed-device records and anchored commitments; not consensus validation.
Xeteria Integration/xeteria.htmlTWIX-aware wallet and application integration direction.
Privacy / Terms/privacy.html · /terms.htmlPublic policy and usage boundaries for the TWIX web surface.
Research Archive/research.htmlHistorical Cosmos Hub Meta Account and binding work.
NETWORK IDENTITY

Canonical constants.

NetworkTWIX Mainnet
Cosmos chain IDtwix-1
EVM chain ID1415006552
EVM chain ID · hex0x54574958
Daemontwixd v0.1.0
Account prefixtwix
Validator prefixtwixvaloper
BIP-44 coin type60
HD pathm/44'/60'/0'/0/0

Genesis SHA-256: 9ef3c22a4820d0c32ad3418f4c848382e88064f8083db373375d0b3f4978d8b0. Block 1 hash: 8AE55F99837AFB6836DE279A1914B9828C2E70A5D23CACC2AE873F3856BBBE8A.

NATIVE ASSET

TWIX is native chain currency.

The display unit is TWIX. The base denomination is atwix with 18 decimals:

1 TWIX = 1,000,000,000,000,000,000 atwix

Native TWIX pays gas and participates in Cosmos staking. It is not an ERC-20 contract. Any future wrapped representation must be treated as a representation of native supply, not additional native issuance.

CONSENSUS & VALIDATORS

The public validator set.

Consensus validators produce and attest blocks under the Cosmos staking/consensus model. Public validator information includes operator address, moniker, staking status, bonded tokens, commission and jail state.

Naming boundaryThe service at validator.twixchain.com is TWIX Data Attestation. It handles signed physical records and does not validate blocks. Consensus validator information is at /validators.html and in the Explorer.
PUBLIC ENDPOINTS

Canonical network access.

InterfaceEndpointUse
Cosmos RPChttps://rpc.twixchain.comComet status, blocks and standard consensus queries.
Cosmos RESThttps://api.twixchain.comCosmos SDK module queries including staking and governance.
EVM JSON-RPChttps://evm.twixchain.comEthereum-compatible wallet and developer RPC.
EVM WebSocketwss://ws.twixchain.comEVM WebSocket transport and supported subscriptions.
curl -s https://rpc.twixchain.com/status

curl -s https://evm.twixchain.com \
  -H 'Content-Type: application/json' \
  --data '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'

Raw backend services and unsafe administrative namespaces are intentionally not part of the public interface.

WALLETS

MetaMask and Keplr.

MetaMask / EIP-1193

{
  "chainId": "0x54574958",
  "chainName": "TWIX Mainnet",
  "rpcUrls": ["https://evm.twixchain.com"],
  "nativeCurrency": {"name":"TWIX","symbol":"TWIX","decimals":18}
}

Keplr

Keplr uses twix-1, coin type 60, TWIX Bech32 prefixes, atwix with 18 decimals, and the EVM-signing feature flags published in /keplr-chain.json.

TWIX EXPLORER · v0.3.0

Indexed visibility across both execution worlds.

The Explorer indexes TWIX Mainnet into protected SQLite storage outside the public webroot. Public pages cover blocks, transactions, contracts, addresses, validators, governance proposals, tokenomics and charts.

Explorer installation and diagnostics endpoints remain operational/admin surfaces and are protected separately from normal public browsing.

GOVERNANCE

On-chain policy, not marketing copy.

TWIX uses Cosmos governance for network parameter changes. The website queries chain state and deliberately distinguishes proposal intent from executed configuration.

TOKENOMICS

Live state and policy are labeled separately.

The Explorer tokenomics dashboard reports native supply, bonded stake, community-pool state and supply snapshots. The tokenomics policy file contains a seven-bucket economic model, security-release schedule, fee-policy target and representation rules. Policy values are not represented as deployed controls unless the chain enforces them.

DEVELOPER SURFACE

Cosmos and Ethereum tooling against the same mainnet.

Use standard Cosmos RPC/REST clients on the Cosmos side and Ethereum JSON-RPC tooling such as ethers, web3 or Foundry on the EVM side. The public interface intentionally omits dangerous administrative namespaces.

# EVM chain identity
cast chain-id --rpc-url https://evm.twixchain.com

# Cosmos node status
curl -s https://rpc.twixchain.com/status

# Bonded validators
curl -s 'https://api.twixchain.com/cosmos/staking/v1beta1/validators?status=BOND_STATUS_BONDED'
MACHINE-READABLE MANIFESTS

One source of truth for integrations.

FilePurpose
/.well-known/twix-network.jsonCanonical full network identity.
/network.jsonHuman/site companion network manifest.
/evm-network.jsonEIP-1193 / wallet_addEthereumChain-compatible object.
/keplr-chain.jsonKeplr chain configuration.
/wallet-network.jsonUnified Cosmos + EVM wallet identity.
TWIX DATA ATTESTATION · PLATFORM v0.2.0 · TDAP v0.1

Signed physical records anchored to TWIX.

validator.twixchain.com hosts the TWIX Data Attestation Protocol application. Devices or gateways create Ed25519 identities locally, canonicalize readings, sign record commitments, and submit them to the Device API. Records can be batched into SHA-256 Merkle roots and optionally anchored through an EVM transaction.

Consensus isolationThe Data Attestation service does not use the TWIX consensus validator private key. Device keys identify devices; anchoring uses a separate application wallet.
APIPath
Ingest/api/ingest.php
Status/api/status.php
Metrics/api/metrics.php
Device/api/device.php?id={device_id}
Proof/api/proof.php?hash={record_hash}
Batch/api/batch.php?root={merkle_root}
OpenAPI/api/openapi.json
TRADING TOOLS

Analysis without custody or execution.

The toolkit contains seven public calculators and labs. The live-market tools use a same-origin whitelisted proxy with direct public-provider fallbacks; no private trading API key is required.

ToolPurposeData mode
Options LabModel educational options scenarios and payoff relationships.User inputs
Prediction MarketsExplore probabilities, implied odds, potential returns and exposure.User inputs
Staking CalculatorProject native-token reward growth under nominal APR and selected compounding.User inputs
Token Trade OptimiserCompare historical trade models with transaction costs, slippage and terminal token-equivalent value.Kraken / Binance via TWIX proxy + fallback
TWIX InterceptCalculate a market meeting/intercept zone using price structure and available confluence signals.Kraken / Binance via TWIX proxy + fallback
Perpetual Hedge LabModel long/short hedge ratios, net exposure and scenario P/L.User inputs
Prediction Signal LabTranslate probability edge and signal strength into modelled sizing.User inputs
BoundaryThese tools model scenarios. They do not connect a wallet for order execution, custody funds or provide investment advice.
XETERIA

Wallet integration direction.

The Xeteria page documents the intended TWIX-aware wallet integration path across Cosmos and EVM interfaces. It is deliberately labeled as an integration direction where functionality has not yet been claimed as fully shipped.

SECURITY BOUNDARIES

Expose what users need. Keep privileged surfaces private.

Public HTTPS/WSS reverse proxies front the intended interfaces. Raw backend ports, unsafe Comet RPC and EVM administrative/debug namespaces are not part of the public launch surface. Consensus validator metadata is public; consensus signing material is not.

PUBLIC

RPC / REST / EVM

Standard read and transaction interfaces through hardened TLS endpoints.

RESTRICTED

Raw node services

Backend ports and privileged namespaces stay outside the public firewall surface.

SEPARATED

Application keys

Data Attestation device/anchor keys are separate from consensus signing keys.

PROTECTED

Runtime data

Explorer and Data Attestation databases and secrets live outside public_html.

WEBSITE & PWA

Static-first public site with dynamic read-only helpers.

The main site is predominantly static HTML/CSS/JavaScript for resilience and straightforward hosting. A service worker caches stable pages/assets but deliberately bypasses PHP, Explorer and Data Attestation runtime routes so live status and market data are not frozen into stale PWA responses.

Manifest/site.webmanifest
Service worker/sw.js
Registration/register-sw.js
Main CSS/assets/css/twix.css
Main JS/assets/js/mainnet.js
Docs CSS / JS/assets/css/docs.css · /assets/js/docs.js
DEPLOYMENT LAYOUT

Public code and protected state are separated.

public_html/
├── assets/                  shared site CSS / JS
├── downloads/research/      preserved research packages
├── explorer/                Explorer application code
├── validator/               Data Attestation application code
├── .well-known/             canonical network manifest
├── docs.html                complete handbook
├── validators.html          consensus validator directory
├── validators-data.php      read-only staking data adapter
├── status.php               read-only network status adapter
└── network / wallet manifests

../explorer-data/             protected Explorer DB/config (not public)
../validator-data/            protected TDAP DB/keys/config (not public)

The /explorer/ and /validator/ directories remain compatible deployment sources while the root .htaccess redirects those paths to their dedicated public subdomains.

DIAGNOSTICS & OPERATIONS

Read-only public checks; protected admin diagnostics.

The public adapters default to the canonical TWIX TLS endpoints. Server administrators can override upstreams without editing public code by setting TWIX_RPC_URL, TWIX_REST_URL and TWIX_EVM_URL; the validator directory uses TWIX_REST_URL.

RouteBehavior
/status.phpNormalized read-only TWIX status for the public site.
/validators-data.phpNormalized read-only staking validator dataset with short caching.
/twix-tools-diagnostics.htmlPublic browser diagnostics for the trading toolkit.
explorer/diagnostics.phpProtected operational diagnostics; not anonymous server disclosure.
validator/diagnostics.phpProtected Data Attestation environment diagnostics.
RESEARCH ARCHIVE

The Cosmos Hub work remains evidence, not current configuration.

The archive preserves Meta Account, EIP-191 binding, CosmWasm runtime, security and peer-review material from the earlier Cosmos Hub research line. Archive pages use their own navigation and explicit warnings so users do not confuse ATOM/Cosmos Hub experiments with TWIX Mainnet.

GLOSSARY

Names used across the platform.

TWIX Mainnet
The production twix-1 Cosmos/EVM network.
Consensus Validator
A Cosmos validator participating in staking/consensus and block production.
TWIX Data Attestation
The application at validator.twixchain.com for signed physical-data records. Not a consensus validator.
TWIX Explorer
The indexed public chain-history application at explorer.twixchain.com.
atwix
The 18-decimal base denomination of native TWIX.
Research Archive
Historical Cosmos Hub Meta Account and binding experiments preserved for review.