Get all blockchain configuration parameters
cURL
curl --request GET \ --url https://toncenter.com/api/v2/getConfigAll
200
Example
{ "ok": true, "result": { "@type": "configInfo", "config": { "@type": "tvm.cell", "bytes": "<string>" } } }
import asyncio from toncenter.rest import ToncenterRestClient from toncenter.types import Network async def main() -> None: async with ToncenterRestClient(network=Network.MAINNET) as client: result = await client.v2.configuration.get_config_all() print(result.model_dump_json(indent=4)) if __name__ == "__main__": asyncio.run(main())
Block seqno
OK
true
Show child attributes