Skip to content

Getting Started

Online Tabi chain API document

https://api21.tabichain.com/swagger/

Local Tabi chain API document of full node

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

Config the [api] section

Plain
[api]

# Enable defines if the API server should be enabled.
enable = true

# Swagger defines if swagger documentation should automatically be registered.
swagger = true

# Address defines the API server to listen on.
address = "tcp://0.0.0.0:1317"

open the link http://127.0.0.1:1317/swagger/ in your web browser

EVM Rpc

Online RPC service

https://rpc21.tabichain.com

Local RPC service of full node

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

Config the [json-rpc] section

Plain
[evm]
# controls whether an HTTP EVM server is enabled
http_enabled = true
http_port = 8545

access the rpc service:

http://127.0.0.1:8545