public Task <string> GetEthAddressFromSignatureQueryAsync(string claimToAddr, bool claimAddrChecksum, byte v, byte[] r, byte[] s, BlockParameter blockParameter = null)
        {
            var getEthAddressFromSignatureFunction = new GetEthAddressFromSignatureFunction();

            getEthAddressFromSignatureFunction.ClaimToAddr       = claimToAddr;
            getEthAddressFromSignatureFunction.ClaimAddrChecksum = claimAddrChecksum;
            getEthAddressFromSignatureFunction.V = v;
            getEthAddressFromSignatureFunction.R = r;
            getEthAddressFromSignatureFunction.S = s;

            return(ContractHandler.QueryAsync <GetEthAddressFromSignatureFunction, string>(getEthAddressFromSignatureFunction, blockParameter));
        }
 public Task <string> GetEthAddressFromSignatureQueryAsync(GetEthAddressFromSignatureFunction getEthAddressFromSignatureFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetEthAddressFromSignatureFunction, string>(getEthAddressFromSignatureFunction, blockParameter));
 }