/// <summary>
 /// Returns information stored in a rawoperations param (obtained calling signchangekey or signsendto)
 /// </summary>
 /// <param name="rawoperations">HEXASTRING (obtained calling signchangekey or signsendto)</param>
 /// <returns>Returns a JSON Array with Operation Object items, one for each operation in rawoperations param. NOTE: Remember that rawoperations are operations that maybe are not correct</returns>
 public static Task <Operation[]> OperationsInfoAsync(this IPascalCoinClient client, string rawoperations)
 {
     return(Task.Run(() => client.OperationsInfo(rawoperations)));
 }