Example #1
0
 public NeoApiNodeService(IClient client) : base(client)
 {
     GetConnectionCount = new NeoGetConnectionCount(client);
     GetRawMemPool      = new NeoGetRawMemPool(client);
     GetValidators      = new NeoGetValidators(client);
     GetVersion         = new NeoGetVersion(client);
 }
        public override async Task <string[]> ExecuteAsync(IClient client)
        {
            var memoryPool = new NeoGetRawMemPool(client);

            return(await memoryPool.SendRequestAsync());
        }
 public NeoApiNodeService(IClient client) : base(client)
 {
     GetConnectionCount = new NeoGetConnectionCount(client);
     GetRawMemPool      = new NeoGetRawMemPool(client);
 }