Пример #1
0
 public EthApiCompilerService(IClient client) : base(client)
 {
     CompileLLL      = new EthCompileLLL(client);
     CompileSerpent  = new EthCompileSerpent(client);
     CompileSolidity = new EthCompileSolidity(client);
     GetCompilers    = new EthGetCompilers(client);
 }
Пример #2
0
 public EthCompilerService(RpcClient client) : base(client)
 {
     CompileLLL = new EthCompileLLL(client);
     CompileSerpent = new EthCompileSerpent(client);
     CompileSolidity = new EthCompileSolidity(client);
     GetCompilers = new EthGetCompilers(client);
 }
        public async Task <object> ExecuteTestAsync(IClient client)
        {
            var ethGetCompilers = new EthGetCompilers(client);

            return(await ethGetCompilers.SendRequestAsync());
        }
Пример #4
0
 public async Task<dynamic> ExecuteTestAsync(RpcClient client)
 {
     var ethGetCompilers = new EthGetCompilers(client);
     return await ethGetCompilers.SendRequestAsync();
 }
Пример #5
0
        public async Task <dynamic> ExecuteTestAsync(RpcClient client)
        {
            var ethGetCompilers = new EthGetCompilers(client);

            return(await ethGetCompilers.SendRequestAsync());
        }
        public override async Task <string[]> ExecuteAsync(IClient client)
        {
            var ethGetCompilers = new EthGetCompilers(client);

            return(await ethGetCompilers.SendRequestAsync());
        }