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