/// <summary> /// Transfer tokens from a Mobius managed address to a specified address. You must have a high /// enough balance to cover the transaction fees — on Ethereum this means paying the gas costs. /// Currently Mobius does not charge any fees itself. /// </summary> /// <param name="managedRequests">The request.</param> /// <returns>The response that was returned by the API.</returns> public Task <TransferManagedResponse> TransferManagedAsync(TransferManagedRequest managedRequest) { return(PostAsync <TransferManagedRequest, TransferManagedResponse>(@"transfer/managed", managedRequest)); }
/// <summary> /// Transfer tokens from a Mobius managed address to a specified address. You must have a high /// enough balance to cover the transaction fees — on Ethereum this means paying the gas costs. /// Currently Mobius does not charge any fees itself. /// </summary> /// <param name="managedRequests">The request.</param> /// <returns>The response that was returned by the API.</returns> public TransferManagedResponse TransferManaged(TransferManagedRequest managedRequest) { return(Post <TransferManagedRequest, TransferManagedResponse>(@"transfer/managed", managedRequest)); }