💢
Tabi | Documentation
TabiGithubSocial
  • 🛠️Introduction
    • Overview
    • 💢About Tabichain
    • Whitepaper
    • Tabi's Core
    • Captain Nodes
  • 💡User Guide
    • Tutorials: Add Tabichain to wallet
    • About Testnet v2
      • Infrastructure on Testnet V2
  • 🔍Basic
    • Public Endpoints
    • Block Explorer
    • Faucet
    • Smart Contract
  • 🛠️Developer Guide
    • Getting Started
    • API Documentation
    • Run Tabichain Nodes
      • Deploy Testnet-V2 full node
      • Full node command line manual
      • Differences and Similarities Between Full Node
    • Tools
      • Tools and Plugins
      • Tabi Graph
      • Tabi Link Oracle
    • Polymorphic Virtual Machine
    • TLink Introduction
  • $seedTABI
Powered by GitBook
On this page
  • Tabi chain API document
  • EVM Rpc
  1. Developer Guide

Getting Started

PreviousSmart ContractNextRun Tabichain Nodes

Last updated 5 months ago

Tabi chain API document

Online Tabi chain API document

Local Tabi chain API document of full node

~$ cd .tabid/config
~/.tabid/config$ vi app.toml

Config the [api] section

[api]
# Enable defines if the API server should be enabled
enable = true

# Swagger defines if swagger documentation shold automatically be registered
swagger = true

open the link in your web browser

EVM Rpc

Online RPC service

Local RPC service of full node

~$ cd 
~$ cd .tabid
~/.tabid$ vi config/app.toml

Config the [json-rpc] section

[json-rpc]
# Enable defines if the gRPC server should be enabled.
enable = true

access the rpc service:

🛠️
https://api.testnetv2.tabichain.com/swagger/
http://127.0.0.1:1317/swagger/
https://rpc.testnetv2.tabichain.com
http://127.0.0.1:8545