public Task <byte[]> PublicKeyToBitcoinAddressQueryAsync(byte[] a_publicKeyX, byte[] a_publicKeyY, byte a_nAddressType, BlockParameter blockParameter = null)
        {
            var publicKeyToBitcoinAddressFunction = new PublicKeyToBitcoinAddressFunction();

            publicKeyToBitcoinAddressFunction.A_publicKeyX   = a_publicKeyX;
            publicKeyToBitcoinAddressFunction.A_publicKeyY   = a_publicKeyY;
            publicKeyToBitcoinAddressFunction.A_nAddressType = a_nAddressType;

            return(ContractHandler.QueryAsync <PublicKeyToBitcoinAddressFunction, byte[]>(publicKeyToBitcoinAddressFunction, blockParameter));
        }
 public Task <byte[]> PublicKeyToBitcoinAddressQueryAsync(PublicKeyToBitcoinAddressFunction publicKeyToBitcoinAddressFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <PublicKeyToBitcoinAddressFunction, byte[]>(publicKeyToBitcoinAddressFunction, blockParameter));
 }