/// <summary>
 /// Executes operations included in rawopertions param and transfers to the network. Raw operations can include "Send to" oprations or "Change key" operations.
 /// </summary>
 /// <param name="rawoperations">Executes operations included in rawopertions param and transfers to the network. Raw operations can include "Send to" oprations or "Change key" operations.</param>
 /// <remarks>For each Operation Object item, if there is an error, param valid will be false and param errors will show error description.Otherwise, operation is correct and will contain ophash param</remarks>
 /// <returns>Returns a JSON Array with Operation Object items, one for each operation in rawoperations param.</returns>
 public static Task <Operation[]> ExecuteOperationsAsync(this IPascalCoinClient client, string rawoperations)
 {
     return(Task.Run(() => client.ExecuteOperations(rawoperations)));
 }