getMerkleProof method

Future getMerkleProof (String hash)

Implementation

Future<dynamic> getMerkleProof(String hash) async {
  var data = {
    'Action': 'getmerkleproof',
    'Version': '1.0.0',
    'Hash': hash,
  };
  return send(data);
}