get_blockchain_config method
Extract blockchain configuration from key block and also from zerostate.
Implementation
Future<ResultOfGetBlockchainConfig> get_blockchain_config(
ParamsOfGetBlockchainConfig params) async {
final res = await _tonCore.request(
'boc.get_blockchain_config', params.toString());
return ResultOfGetBlockchainConfig.fromMap(res);
}