⚠️Blast API (blastapi.io) ends Oct 31. Migrate to Dwellir and skip Alchemy's expensive compute units.
Switch Today →
Skip to main content

system_properties - JSON-RPC Method

Description

Returns chain properties such as SS58 address prefix and native token information.

Returns

FieldTypeDescription
ss58FormatnumberSS58 network prefix
tokenSymbolstringNative token symbol (TAO)
tokenDecimalsnumberNative token decimals (9)

Example Response

{
"ss58Format": 42,
"tokenDecimals": 9,
"tokenSymbol": "TAO"
}

Code Examples

curl https://api-bittensor-mainnet.n.dwellir.com/YOUR_API_KEY -X POST -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "system_properties",
"params": [],
"id": 1
}'