public Task <string> PublicKeyToEthereumAddressQueryAsync(byte[] a_publicKeyX, byte[] a_publicKeyY, BlockParameter blockParameter = null)
        {
            var publicKeyToEthereumAddressFunction = new PublicKeyToEthereumAddressFunction();

            publicKeyToEthereumAddressFunction.A_publicKeyX = a_publicKeyX;
            publicKeyToEthereumAddressFunction.A_publicKeyY = a_publicKeyY;

            return(ContractHandler.QueryAsync <PublicKeyToEthereumAddressFunction, string>(publicKeyToEthereumAddressFunction, blockParameter));
        }
 public Task <string> PublicKeyToEthereumAddressQueryAsync(PublicKeyToEthereumAddressFunction publicKeyToEthereumAddressFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <PublicKeyToEthereumAddressFunction, string>(publicKeyToEthereumAddressFunction, blockParameter));
 }