Пример #1
0
 public async Task<object> ExecuteTestAsync(IClient client)
 {
     var web3Sha3 = new Web3Sha3(client);
     return await web3Sha3.SendRequestAsync(new HexUTF8String("Monkey"));
 }
Пример #2
0
        public async Task <dynamic> ExecuteTestAsync(RpcClient client)
        {
            var web3Sha3 = new Web3Sha3(client);

            return(await web3Sha3.SendRequestAsync("Monkey"));
        }
Пример #3
0
        public async Task <object> ExecuteTestAsync(IClient client)
        {
            var web3Sha3 = new Web3Sha3(client);

            return(await web3Sha3.SendRequestAsync(new HexUTF8String("Monkey")));
        }
Пример #4
0
 public async Task<dynamic> ExecuteTestAsync(RpcClient client)
 {
     var web3Sha3 = new Web3Sha3(client);
     return await web3Sha3.SendRequestAsync( "Monkey");
 }