Packages

A simple wrapper to call Multichain JSON RPC API in Elixir way. Also bunch of helper which combine common Multichain command.

Current section

Files

Jump to
multichain mix.exs
Raw

mix.exs

defmodule Multichain.MixProject do
use Mix.Project
def project do
[
app: :multichain,
version: "0.0.2",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:httpoison, "~> 1.2"},
{:poison, "~> 3.1"},
{:ex_doc, "~> 0.18.0", only: :dev}
]
end
defp package do
[
files: ["lib", "mix.exs", "README", "LICENSE*"],
maintainers: ["Arif Yuliannur"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/virkillz/multichain-elixir.git"},
description:
"A simple wrapper to call Multichain JSON RPC API in Elixir way."
]
end
end