verifyClaim method

Future verifyClaim(
  1. String claimer,
  2. BigInt quantity,
  3. String currency,
  4. BigInt pricePerToken,
  5. Map<String, dynamic> allowlistProof,
)

Implementation

Future<dynamic> verifyClaim(String claimer, BigInt quantity, String currency,
        BigInt pricePerToken, Map<String, dynamic> allowlistProof) async =>
    await _contract.call("verifyClaim",
        [claimer, quantity, currency, pricePerToken, allowlistProof]);