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);
 }
Пример #2
0
        public override async Task <ApplicationLog> ExecuteAsync(IClient client)
        {
            var applicationLog = new NeoGetApplicationLog(client);

            return(await applicationLog.SendRequestAsync(Settings.GetContractTransaction()));
        }