Packages

Coincheck client library for elixir

Current section

Files

Jump to
elixir_coincheck_client lib elixir_coincheck api withdraw_execute.ex
Raw

lib/elixir_coincheck/api/withdraw_execute.ex

defmodule ElixirCoincheckClient.API.WithdrawExecute do
import ElixirCoincheckClient.API.Base
def withdraw_execute(params) do
url = domain() <> "/withdraws"
HTTPoison.post!(url, Poison.encode!(params), headers(url, Poison.encode!(params)))
end
end