public async Task <object> ExecuteTestAsync(IClient client) { var ethGetStorageAt = new EthGetStorageAt(client); return (await ethGetStorageAt.SendRequestAsync("0x407d73d8a49eeb85d32cf465507dd71d507100c1", new HexBigInteger(2))); }
public override async Task <string> ExecuteAsync(IClient client) { var ethGetStorageAt = new EthGetStorageAt(client); return(await ethGetStorageAt.SendRequestAsync(Settings.GetContractAddress(), new HexBigInteger(1))); }
public async Task<dynamic> ExecuteTestAsync(RpcClient client) { var ethGetStorageAt = new EthGetStorageAt(client); return await ethGetStorageAt.SendRequestAsync( "0x407d73d8a49eeb85d32cf465507dd71d507100c1", new HexBigInteger(2)); }