public override async Task <TransactionOutput> ExecuteAsync(IClient client)
        {
            var transactionOutput = new NeoGetTransactionOutput(client);

            return(await transactionOutput.SendRequestAsync(
                       "5175ae08bc12988cb55c7ec5978245763d946658383b2ff51899ac244c894f32")); // todo move to settings
        }
Ejemplo n.º 2
0
        public override async Task <TransactionOutput> ExecuteAsync(IClient client)
        {
            var transactionOutput = new NeoGetTransactionOutput(client);

            return(await transactionOutput.SendRequestAsync(
                       "f4250dab094c38d8265acc15c366dc508d2e14bf5699e12d9df26577ed74d657")); // todo move to settings
        }
        public override async Task <TransactionOutput> ExecuteAsync(IClient client)
        {
            var transactionOutput = new NeoGetTransactionOutput(client);

            return(await transactionOutput.SendRequestAsync(
                       "7f7f3b361e46b271e15c640d40994f759ce13f608ac53fd970b9d6db779dd589"));
        }
 public NeoApiTransactionService(IClient client) : base(client)
 {
     GetRawTransaction    = new NeoGetRawTransaction(client);
     SendRawTransaction   = new NeoSendRawTransaction(client);
     GetTransactionOutput = new NeoGetTransactionOutput(client);
     SendAssets           = new NeoSendAssets(client);
 }
 public NeoApiTransactionService(IClient client) : base(client)
 {
     GetApplicationLog           = new NeoGetApplicationLog(client);
     GetRawTransaction           = new NeoGetRawTransaction(client);
     GetRawTransactionSerialized = new NeoGetRawTransactionSerialized(client);
     SendRawTransaction          = new NeoSendRawTransaction(client);
     GetTransactionOutput        = new NeoGetTransactionOutput(client);
     SendToAddress = new NeoSendToAddress(client);
     SendMany      = new NeoSendMany(client);
     SendFrom      = new NeoSendFrom(client);
 }