Technical Documentation

Overview

Telebit Blockchain is an EVM-compatible blockchain built on the Cosmos SDK with Ethermint integration. It provides full Ethereum Virtual Machine support while benefiting from the Cosmos ecosystem's interoperability features through IBC (Inter-Blockchain Communication).

Cosmos SDK

v0.47.8

Ethermint

v18.1.0

Consensus

Proof of Authority

Token Economics

Token Name Telebit (TBT)
Total Supply 1,800,000,000 TBT
Base Denomination atbt (atto-TBT)
Decimals 18
Conversion 1 TBT = 10^18 atbt
Minimum Gas Price 0.0000001 TBT

CLI Commands

Initialize Node

telebitd init <moniker> --chain-id telebit_136919-1

Create Wallet

telebitd keys add <wallet-name> --keyring-backend test --algo eth_secp256k1

Start Node

telebitd start --minimum-gas-prices=100000000000atbt --json-rpc.api eth,txpool,personal,net,debug,web3

Query Balance

telebitd query bank balances <address>

Send Tokens

telebitd tx bank send <from> <to> <amount>atbt --chain-id telebit_136919-1

API Endpoints

Endpoint Port Description
Tendermint RPC 26657 Tendermint consensus RPC
P2P 26656 Peer-to-peer networking
REST API 1317 Cosmos REST API
gRPC 9090 gRPC server
EVM JSON-RPC 8080 Ethereum JSON-RPC (HTTP)
EVM WebSocket 8099 Ethereum JSON-RPC (WebSocket)

EVM Integration

The chain supports full EVM compatibility, allowing you to deploy Solidity smart contracts and interact with the chain using standard Ethereum tools like Hardhat, Truffle, or Remix.

Supported Features

  • - ERC-20 tokens
  • - ERC-721 NFTs
  • - ERC-1155 multi-tokens
  • - Smart contract deployment
  • - Web3.js / Ethers.js support

RPC Methods

  • - eth_*
  • - net_*
  • - web3_*
  • - personal_*
  • - txpool_*