getSmartCodeEventByHeight method

Future getSmartCodeEventByHeight (int height)

Implementation

Future<dynamic> getSmartCodeEventByHeight(int height) async {
  var data = {
    'Action': 'getsmartcodeeventbyhash',
    'Version': '1.0.0',
    'Height': height.toString(),
  };
  return send(data);
}