* Add ec_utils dep * Add base58 dep. Add search tags to zomp package. * Add nonsensical TLS feature. * Minor verup. Adding TLS support. * Correct option name * Patch increase
2169 lines
79 KiB
Erlang
2169 lines
79 KiB
Erlang
%%% @doc
|
|
%%% The Vanillae Erlang Interface to Aeternity
|
|
%%%
|
|
%%% This module is the high-level interface to the Aeternity blockchain system.
|
|
%%% The interface is split into three main sections:
|
|
%%% - Get/Set admin functions
|
|
%%% - AE node JSON query interface functions
|
|
%%% - AE contract call and serialization interface functions
|
|
%%%
|
|
%%% The get/set admin functions are for setting or checking things like the Aeternity
|
|
%%% "network ID" and list of addresses of AE nodes you want to use for answering
|
|
%%% queries to the blockchain (usually you will run these nodes in your own back end).
|
|
%%%
|
|
%%% The JSON query interface functions are the blockchain query functions themselves
|
|
%%% which are translated to network queries and return Erlang messages as responses.
|
|
%%%
|
|
%%% The contract call and serialization interface are the functions used to convert
|
|
%%% a desired call to a smart contract on the chain to call data serialized in a form
|
|
%%% that an Aeternity compatible wallet, SDK or (in the case of a web service) in-page
|
|
%%% code based on a JS library such as Sidekick (another component of Vanillae) can
|
|
%%% use to generate signature requests and signed transaction objects for submission
|
|
%%% to an Aeternity network node for inclusion in the transaction mempool.
|
|
%%%
|
|
%%% This module also includes the standard OTP "application" interface and start/stop
|
|
%%% helper functions.
|
|
%%% @end
|
|
|
|
-module(vanillae).
|
|
-vsn("0.4.1").
|
|
-behavior(application).
|
|
-author("Craig Everett <ceverett@tsuriai.jp>").
|
|
-copyright("Craig Everett <ceverett@tsuriai.jp>").
|
|
-license("GPL-3.0-or-later").
|
|
|
|
% Get/Set admin functions.
|
|
-export([network_id/0, network_id/1,
|
|
ae_nodes/0, ae_nodes/1,
|
|
tls/0, tls/1,
|
|
timeout/0, timeout/1]).
|
|
|
|
% AE node JSON query interface functions
|
|
-export([top_height/0, top_block/0,
|
|
kb_current/0, kb_current_hash/0, kb_current_height/0,
|
|
kb_pending/0,
|
|
kb_by_hash/1, kb_by_height/1,
|
|
% kb_insert/1,
|
|
mb_header/1, mb_txs/1, mb_tx_index/2, mb_tx_count/1,
|
|
gen_current/0, gen_by_id/1, gen_by_height/1,
|
|
acc/1, acc_at_height/2, acc_at_block_id/2,
|
|
acc_pending_txs/1,
|
|
next_nonce/1,
|
|
dry_run/1, dry_run/2, dry_run/3,
|
|
tx/1, tx_info/1,
|
|
post_tx/1,
|
|
contract/1, contract_code/1,
|
|
contract_poi/1,
|
|
% oracle/1, oracle_queries/1, oracle_queries_by_id/2,
|
|
name/1,
|
|
% channel/1,
|
|
peer_pubkey/0,
|
|
status/0,
|
|
status_chainends/0]).
|
|
|
|
% AE contract call and serialization interface functions
|
|
-export([read_aci/1,
|
|
min_gas/0,
|
|
min_gas_price/0,
|
|
min_fee/0,
|
|
contract_create/3,
|
|
contract_create/8,
|
|
prepare_contract/1,
|
|
aaci_lookup_spec/2,
|
|
contract_call/5,
|
|
contract_call/6,
|
|
contract_call/10,
|
|
decode_bytearray_fate/1, decode_bytearray/2,
|
|
verify_signature/3]).
|
|
|
|
|
|
% OTP Application Interface
|
|
-export([start/0, stop/0]).
|
|
-export([start/2, stop/1]).
|
|
|
|
|
|
%%% Types
|
|
|
|
-export_type([ae_node/0, network_id/0, ae_error/0]).
|
|
|
|
|
|
-type ae_node() :: {inet:ip_address(), inet:port_number()}.
|
|
-type network_id() :: string().
|
|
-type ae_error() :: not_started
|
|
| no_nodes
|
|
| timeout
|
|
| {timeout, Received :: binary()}
|
|
| inet:posix()
|
|
| {received, binary()}
|
|
| headers
|
|
| {headers, map()}
|
|
| bad_length
|
|
| gc_out_of_range.
|
|
-type pubkey() :: unicode:chardata(). % "ak_" ++ _
|
|
-type account_id() :: pubkey().
|
|
-type contract_id() :: unicode:chardata(). % "ct_" ++ _
|
|
-type peer_pubkey() :: string(). % "pp_" ++ _
|
|
-type keyblock_hash() :: string(). % "kh_" ++ _
|
|
-type contract_byte_array() :: string(). % "cb_" ++ _
|
|
-type microblock_hash() :: string(). % "mh_" ++ _
|
|
|
|
%-type block_state_hash() :: string(). % "bs_" ++ _
|
|
%-type proof_of_fraud_hash() :: string() | no_fraud. % "bf_" ++ _
|
|
%-type signature() :: string(). % "sg_" ++ _
|
|
%-type block_tx_hash() :: string(). % "bx_" ++ _
|
|
|
|
-type tx_hash() :: string(). % "th_" ++ _
|
|
|
|
%-type name_hash() :: string(). % "nm_" ++ _
|
|
%-type protocol_info() :: #{string() => term()}.
|
|
% #{"effective_at_height" => non_neg_integer(),
|
|
% "version" => pos_integer()}.
|
|
|
|
-type keyblock() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"beneficiary" => account_id(),
|
|
% "hash" => keyblock_hash(),
|
|
% "height" => pos_integer(),
|
|
% "info" => contract_byte_array(),
|
|
% "miner" => account_id(),
|
|
% "nonce" => non_neg_integer(),
|
|
% "pow" => [non_neg_integer()],
|
|
% "prev_hash" => microblock_hash(),
|
|
% "prev_key_hash" => keyblock_hash(),
|
|
% "state_hash" => block_state_hash(),
|
|
% "target" => non_neg_integer(),
|
|
% "time" => non_neg_integer(),
|
|
% "version" => 5}.
|
|
% </pre>
|
|
-type microblock_header() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"hash" => microblock_hash(),
|
|
% "height" => pos_integer(),
|
|
% "pof_hash" => proof_of_fraud_hash(),
|
|
% "prev_hash" => microblock_hash() | keyblock_hash(),
|
|
% "prev_key_hash" => keyblock_hash(),
|
|
% "signature" => signature(),
|
|
% "state_hash" => block_state_hash(),
|
|
% "time" => non_neg_integer(),
|
|
% "txs_hash" => block_tx_hash(),
|
|
% "version" => 1}.
|
|
% </pre>
|
|
-type transaction() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"block_hash" => microblock_hash(),
|
|
% "block_height" => pos_integer(),
|
|
% "hash" => tx_hash(),
|
|
% "signatures" => [signature()],
|
|
% "tx" =>
|
|
% #{"abi_version" => pos_integer(),
|
|
% "amount" => non_neg_integer(),
|
|
% "call_data" => contract_byte_array(),
|
|
% "code" => contract_byte_array(),
|
|
% "deposit" => non_neg_integer(),
|
|
% "fee" => pos_integer(),
|
|
% "gas" => pos_integer(),
|
|
% "gas_price" => pos_integer(),
|
|
% "nonce" => pos_integer(),
|
|
% "owner_id" => account_id(),
|
|
% "type" => string(),
|
|
% "version" => pos_integer(),
|
|
% "vm_version" => pos_integer()}}
|
|
% </pre>
|
|
-type generation() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"key_block" => keyblock(),
|
|
% "micro_blocks" => [microblock_hash()]}.
|
|
% </pre>
|
|
-type account() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"balance" => non_neg_integer(),
|
|
% "id" => account_id(),
|
|
% "kind" => "basic",
|
|
% "nonce" => pos_integer(),
|
|
% "payable" => true}.
|
|
% </pre>
|
|
-type contract_data() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"abi_version " => pos_integer(),
|
|
% "active" => boolean(),
|
|
% "deposit" => non_neg_integer(),
|
|
% "id" => contract_id(),
|
|
% "owner_id" => account_id() | contract_id(),
|
|
% "referrer_ids" => [],
|
|
% "vm_version" => pos_integer()}.
|
|
% </pre>
|
|
-type name_info() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"id" => name_hash(),
|
|
% "owner" => account_id(),
|
|
% "pointers" => [],
|
|
% "ttl" => non_neg_integer()}.
|
|
% </pre>
|
|
-type status() :: #{string() => term()}.
|
|
% <pre>
|
|
% #{"difficulty" => non_neg_integer(),
|
|
% "genesis_key_block_hash" => keyblock_hash(),
|
|
% "listening" => boolean(),
|
|
% "network_id" => string(),
|
|
% "node_revision" => string(),
|
|
% "node_version" => string(),
|
|
% "peer_connections" => #{"inbound" => non_neg_integer(),
|
|
% "outbound" => non_neg_integer()},
|
|
% "peer_count" => non_neg_integer(),
|
|
% "peer_pubkey" => peer_pubkey(),
|
|
% "pending_transactions_count" => 51,
|
|
% "protocols" => [protocol_info()],
|
|
% "solutions" => non_neg_integer(),
|
|
% "sync_progress" => float(),
|
|
% "syncing" => boolean(),
|
|
% "top_block_height" => non_neg_integer(),
|
|
% "top_key_block_hash" => keyblock_hash()}.
|
|
% </pre>
|
|
|
|
|
|
|
|
%%% Get/Set admin functions
|
|
|
|
-spec network_id() -> NetworkID
|
|
when NetworkID :: string() | none.
|
|
%% @doc
|
|
%% Returns the AE network ID or the atom `none' if it is unset.
|
|
%% Checking this is not normally necessary, but if network ID assignment is dynamic
|
|
%% in your system it may be necessary to call this before attempting to form
|
|
%% call data or perform other actions on chain that require a signature.
|
|
|
|
network_id() ->
|
|
vanillae_man:network_id().
|
|
|
|
|
|
-spec network_id(Identifier) -> ok | {error, Reason}
|
|
when Identifier :: string() | none,
|
|
Reason :: not_started.
|
|
%% @doc
|
|
%% Sets the network ID, or returns `not_started' if the service is not yet started.
|
|
|
|
network_id(Identifier) ->
|
|
vanillae_man:network_id(Identifier).
|
|
|
|
|
|
-spec ae_nodes() -> [ae_node()].
|
|
%% @doc
|
|
%% Returns the list of currently assigned nodes.
|
|
%% The normal reason to call this is in preparation for altering the nodes list or
|
|
%% checking the current list in debugging.
|
|
|
|
ae_nodes() ->
|
|
vanillae_man:ae_nodes().
|
|
|
|
|
|
-spec ae_nodes(List) -> ok | {error, Reason}
|
|
when List :: [ae_node()],
|
|
Reason :: {invalid, [term()]}.
|
|
%% @doc
|
|
%% Sets the AE nodes that are intended to be used as your interface to the AE peer
|
|
%% network. The common situation is that your project runs a non-mining AE node as
|
|
%% part of your backend infrastructure. Typically one or two nodes is plenty, but
|
|
%% this may need to expand depending on how much query load your application generates.
|
|
%% The Vanillae manager will load balance by round-robin distribution.
|
|
|
|
ae_nodes(List) when is_list(List) ->
|
|
vanillae_man:ae_nodes(List).
|
|
|
|
|
|
-spec tls() -> boolean().
|
|
%% @doc
|
|
%% Check whether TLS is in use.
|
|
|
|
tls() ->
|
|
vanillae_man:tls().
|
|
|
|
|
|
-spec tls(boolean()) -> ok.
|
|
%% @doc
|
|
%% Set TLS true or false. That's what a boolean is, by the way, `true' or `false'.
|
|
%% This is a condescending comment. That means I am talking down to you.
|
|
|
|
tls(Boolean) ->
|
|
vanillae_man:tls(Boolean).
|
|
|
|
|
|
|
|
-spec timeout() -> Timeout
|
|
when Timeout :: pos_integer() | infinity.
|
|
%% @doc
|
|
%% Returns the current request timeout setting in milliseconds.
|
|
|
|
timeout() ->
|
|
vanillae_man:timeout().
|
|
|
|
|
|
-spec timeout(MS) -> ok
|
|
when MS :: pos_integer() | infinity.
|
|
%% @doc
|
|
%% Sets the request timeout in milliseconds.
|
|
|
|
timeout(MS) ->
|
|
vanillae_man:timeout(MS).
|
|
|
|
|
|
|
|
%%% AE node JSON query interface functions
|
|
|
|
|
|
-spec top_height() -> {ok, Height} | {error, Reason}
|
|
when Height :: pos_integer(),
|
|
Reason :: ae_error().
|
|
%% @doc
|
|
%% Retrieve the current height of the chain.
|
|
%%
|
|
%% NOTE:
|
|
%% This will return the currently synced height, which may be different than the
|
|
%% actual current top of the entire chain if the node being queried is still syncing
|
|
%% (has not yet caught up with the chain).
|
|
|
|
top_height() ->
|
|
case top_block() of
|
|
{ok, #{"height" := Height}} -> {ok, Height};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec top_block() -> {ok, TopBlock} | {error, Reason}
|
|
when TopBlock :: microblock_header(),
|
|
Reason :: ae_error().
|
|
%% @doc
|
|
%% Returns the current block height as an integer.
|
|
|
|
top_block() ->
|
|
request("/v3/headers/top").
|
|
|
|
|
|
-spec kb_current() -> {ok, CurrentBlock} | {error, Reason}
|
|
when CurrentBlock :: keyblock(),
|
|
Reason :: ae_error().
|
|
%% @doc
|
|
%% Returns the current keyblock's metadata as a map.
|
|
|
|
kb_current() ->
|
|
request("/v3/key-blocks/current").
|
|
|
|
|
|
-spec kb_current_hash() -> {ok, Hash} | {error, Reason}
|
|
when Hash :: keyblock_hash(),
|
|
Reason :: ae_error().
|
|
%% @doc
|
|
%% Returns the current keyblock's hash.
|
|
%% Equivalent of calling:
|
|
%% ```
|
|
%% {ok, Current} = kb_current(),
|
|
%% maps:get("hash", Current),
|
|
%% '''
|
|
|
|
kb_current_hash() ->
|
|
case request("/v3/key-blocks/current/hash") of
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
{ok, #{"hash" := Hash}} -> {ok, Hash};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec kb_current_height() -> {ok, Height} | {error, Reason}
|
|
when Height :: pos_integer(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Returns the current keyblock's height as an integer.
|
|
%% Equivalent of calling:
|
|
%% ```
|
|
%% {ok, Current} = kb_current(),
|
|
%% maps:get("height", Current),
|
|
%% '''
|
|
|
|
kb_current_height() ->
|
|
case request("/v3/key-blocks/current/height") of
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
{ok, #{"height" := Height}} -> {ok, Height};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec kb_pending() -> {ok, keyblock_hash()} | {error, Reason}
|
|
when Reason :: string().
|
|
%% @doc
|
|
%% Request the hash of the pending keyblock of a mining node's beneficiary.
|
|
%% If the node queried is not configured for mining it will return
|
|
%% `{error, "Beneficiary not configured"}'
|
|
|
|
kb_pending() ->
|
|
result(request("/v3/key-blocks/pending")).
|
|
|
|
|
|
-spec kb_by_hash(ID) -> {ok, KeyBlock} | {error, Reason}
|
|
when ID :: keyblock_hash(),
|
|
KeyBlock :: keyblock(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Returns the keyblock identified by the provided hash.
|
|
|
|
kb_by_hash(ID) ->
|
|
result(request(["/v3/key-blocks/hash/", ID])).
|
|
|
|
|
|
-spec kb_by_height(Height) -> {ok, KeyBlock} | {error, Reason}
|
|
when Height :: non_neg_integer(),
|
|
KeyBlock :: keyblock(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Returns the keyblock identigied by the provided height.
|
|
|
|
kb_by_height(Height) ->
|
|
StringN = integer_to_list(Height),
|
|
result(request(["/v3/key-blocks/height/", StringN])).
|
|
|
|
|
|
%kb_insert(KeyblockData) ->
|
|
% request("/v3/key-blocks", KeyblockData).
|
|
|
|
|
|
-spec mb_header(ID) -> {ok, MB_Header} | {error, Reason}
|
|
when ID :: microblock_hash(),
|
|
MB_Header :: microblock_header(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Returns the header of the microblock indicated by the provided ID (hash).
|
|
|
|
mb_header(ID) ->
|
|
result(request(["/v3/micro-blocks/hash/", ID, "/header"])).
|
|
|
|
|
|
-spec mb_txs(ID) -> {ok, TXs} | {error, Reason}
|
|
when ID :: microblock_hash(),
|
|
TXs :: [transaction()],
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Returns a list of transactions included in the microblock.
|
|
|
|
mb_txs(ID) ->
|
|
case request(["/v3/micro-blocks/hash/", ID, "/transactions"]) of
|
|
{ok, #{"transactions" := TXs}} -> {ok, TXs};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec mb_tx_index(MicroblockID, Index) -> {ok, TX} | {error, Reason}
|
|
when MicroblockID :: microblock_hash(),
|
|
Index :: pos_integer(),
|
|
TX :: transaction(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve a single transaction from a microblock by index.
|
|
%% (Note that indexes start from 1, not zero.)
|
|
|
|
mb_tx_index(ID, Index) ->
|
|
StrHeight = integer_to_list(Index),
|
|
result(request(["/v3/micro-blocks/hash/", ID, "/transactions/index/", StrHeight])).
|
|
|
|
|
|
-spec mb_tx_count(ID) -> {ok, Count} | {error, Reason}
|
|
when ID :: microblock_hash(),
|
|
Count :: non_neg_integer(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve the number of transactions contained in the indicated microblock.
|
|
|
|
mb_tx_count(ID) ->
|
|
case request(["/v3/micro-blocks/hash/", ID, "/transactions/count"]) of
|
|
{ok, #{"count" := Count}} -> {ok, Count};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec gen_current() -> {ok, Generation} | {error, Reason}
|
|
when Generation :: generation(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve the generation data (keyblock and list of associated microblocks) for
|
|
%% the current generation.
|
|
|
|
gen_current() ->
|
|
result(request("/v3/generations/current")).
|
|
|
|
|
|
-spec gen_by_id(ID) -> {ok, Generation} | {error, Reason}
|
|
when ID :: keyblock_hash(),
|
|
Generation :: generation(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve generation data (keyblock and list of associated microblocks) by keyhash.
|
|
|
|
gen_by_id(ID) ->
|
|
result(request(["/v3/generations/hash/", ID])).
|
|
|
|
|
|
-spec gen_by_height(Height) -> {ok, Generation} | {error, Reason}
|
|
when Height :: non_neg_integer(),
|
|
Generation :: generation(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve generation data (keyblock and list of associated microblocks) by height.
|
|
|
|
gen_by_height(Height) ->
|
|
StrHeight = integer_to_list(Height),
|
|
result(request(["/v3/generations/height/", StrHeight])).
|
|
|
|
|
|
-spec acc(AccountID) -> {ok, Account} | {error, Reason}
|
|
when AccountID :: account_id(),
|
|
Account :: account(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve account data by account ID (public key).
|
|
|
|
acc(AccountID) ->
|
|
result(request(["/v3/accounts/", AccountID])).
|
|
|
|
|
|
-spec acc_at_height(AccountID, Height) -> {ok, Account} | {error, Reason}
|
|
when AccountID :: account_id(),
|
|
Height :: non_neg_integer(),
|
|
Account :: account(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve data for an account as that account existed at the given height.
|
|
|
|
acc_at_height(AccountID, Height) ->
|
|
StrHeight = integer_to_list(Height),
|
|
case request(["/v3/accounts/", AccountID, "/height/", StrHeight]) of
|
|
{ok, #{"reason" := "Internal server error"}} -> {error, gc_out_of_range};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Result -> Result
|
|
end.
|
|
|
|
|
|
-spec acc_at_block_id(AccountID, BlockID) -> {ok, Account} | {error, Reason}
|
|
when AccountID :: account_id(),
|
|
BlockID :: keyblock_hash() | microblock_hash(),
|
|
Account :: account(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve data for an account as that account existed at the moment the given
|
|
%% block represented the current state of the chain.
|
|
|
|
acc_at_block_id(AccountID, BlockID) ->
|
|
case request(["/v3/accounts/", AccountID, "/hash/", BlockID]) of
|
|
{ok, #{"reason" := "Internal server error"}} -> {error, gc_out_of_range};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Result -> Result
|
|
end.
|
|
|
|
|
|
-spec acc_pending_txs(AccountID) -> {ok, TXs} | {error, Reason}
|
|
when AccountID :: account_id(),
|
|
TXs :: [tx_hash()],
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve a list of transactions pending for the given account.
|
|
|
|
acc_pending_txs(AccountID) ->
|
|
request(["/v3/accounts/", AccountID, "/transactions/pending"]).
|
|
|
|
|
|
-spec next_nonce(AccountID) -> {ok, Nonce} | {error, Reason}
|
|
when AccountID :: account_id(),
|
|
Nonce :: non_neg_integer(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve the next nonce for the given account
|
|
|
|
next_nonce(AccountID) ->
|
|
% case request(["/v3/accounts/", AccountID, "/next-nonce"]) of
|
|
% {ok, #{"next_nonce" := Nonce}} -> {ok, Nonce};
|
|
% {ok, #{"reason" := "Account not found"}} -> {ok, 1};
|
|
% {ok, #{"reason" := Reason}} -> {error, Reason};
|
|
% Error -> Error
|
|
% end.
|
|
case request(["/v3/accounts/", AccountID]) of
|
|
{ok, #{"nonce" := Nonce}} -> {ok, Nonce + 1};
|
|
{ok, #{"reason" := "Account not found"}} -> {ok, 1};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec dry_run(TX) -> {ok, Result} | {error, Reason}
|
|
when TX :: binary() | string(),
|
|
Result :: term(), % FIXME
|
|
Reason :: term(). % FIXME
|
|
%% @doc
|
|
%% Execute a read-only transaction on the chain at the current height.
|
|
%% Equivalent of
|
|
%% ```
|
|
%% {ok, Hash} = vanillae:kb_current_hash(),
|
|
%% vanilla:dry_run(TX, Hash),
|
|
%% '''
|
|
%% NOTE:
|
|
%% For this function to work the Aeternity node you are sending the request
|
|
%% to must have its configuration set to `http: endpoints: dry-run: true'
|
|
|
|
dry_run(TX) ->
|
|
dry_run(TX, []).
|
|
|
|
|
|
-spec dry_run(TX, Accounts) -> {ok, Result} | {error, Reason}
|
|
when TX :: binary() | string(),
|
|
Accounts :: [pubkey()],
|
|
Result :: term(), % FIXME
|
|
Reason :: term(). % FIXME
|
|
%% @doc
|
|
%% Execute a read-only transaction on the chain at the current height with the
|
|
%% supplied accounts.
|
|
|
|
dry_run(TX, Accounts) ->
|
|
case kb_current_hash() of
|
|
{ok, Hash} -> dry_run(TX, Accounts, Hash);
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec dry_run(TX, Accounts, KBHash) -> {ok, Result} | {error, Reason}
|
|
when TX :: binary() | string(),
|
|
Accounts :: [pubkey()],
|
|
KBHash :: binary() | string(),
|
|
Result :: term(), % FIXME
|
|
Reason :: term(). % FIXME
|
|
%% @doc
|
|
%% Execute a read-only transaction on the chain at the height indicated by the
|
|
%% hash provided.
|
|
|
|
dry_run(TX, Accounts, KBHash) ->
|
|
KBB = to_binary(KBHash),
|
|
TXB = to_binary(TX),
|
|
DryData = #{top => KBB,
|
|
accounts => Accounts,
|
|
txs => [#{tx => TXB}],
|
|
tx_events => true},
|
|
JSON = zj:binary_encode(DryData),
|
|
request("/v3/dry-run", JSON).
|
|
|
|
-spec decode_bytearray_fate(EncodedStr) -> {ok, Result} | {error, Reason}
|
|
when EncodedStr :: binary() | string(),
|
|
Result :: none | term(),
|
|
Reason :: term().
|
|
|
|
%% @doc
|
|
%% Decode the "cb_XXXX" string that came out of a tx_info or dry_run, to
|
|
%% the Erlang representation of FATE objects used by aeb_fate_encoding. See
|
|
%% decode_bytearray/2 for an alternative that provides simpler outputs based on
|
|
%% information provided by an AACI.
|
|
|
|
decode_bytearray_fate(EncodedStr) ->
|
|
Encoded = unicode:characters_to_binary(EncodedStr),
|
|
{contract_bytearray, Binary} = aeser_api_encoder:decode(Encoded),
|
|
case Binary of
|
|
<<>> -> {ok, none};
|
|
<<"Out of gas">> -> {error, out_of_gas};
|
|
_ ->
|
|
% FIXME there may be other errors that are encoded directly into
|
|
% the byte array. We could try and catch to at least return
|
|
% *something* for cases that we don't already detect.
|
|
Object = aeb_fate_encoding:deserialize(Binary),
|
|
{ok, Object}
|
|
end.
|
|
|
|
-spec decode_bytearray(Type, EncodedStr) -> {ok, Result} | {error, Reason}
|
|
when Type :: term(),
|
|
EncodedStr :: binary() | string(),
|
|
Result :: none | term(),
|
|
Reason :: term().
|
|
|
|
%% @doc
|
|
%% Decode the "cb_XXXX" string that came out of a tx_info or dry_run, to the
|
|
%% same format used by contract_call/* and contract_create/*. The Type argument
|
|
%% must be the result type of the same function in the same AACI that was used
|
|
%% to create the transaction that EncodedStr came from.
|
|
|
|
decode_bytearray(Type, EncodedStr) ->
|
|
case decode_bytearray_fate(EncodedStr) of
|
|
{ok, none} -> {ok, none};
|
|
{ok, Object} -> coerce(Type, Object, from_fate);
|
|
{error, Reason} -> {error, Reason}
|
|
end.
|
|
|
|
to_binary(S) when is_binary(S) -> S;
|
|
to_binary(S) when is_list(S) -> list_to_binary(S).
|
|
|
|
|
|
-spec tx(ID) -> {ok, TX} | {error, Reason}
|
|
when ID :: tx_hash(),
|
|
TX :: transaction(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve a transaction by ID.
|
|
|
|
tx(ID) ->
|
|
request(["/v3/transactions/", ID]).
|
|
|
|
|
|
-spec tx_info(ID) -> {ok, Info} | {error, Reason}
|
|
when ID :: tx_hash(),
|
|
Info :: term(), % FIXME
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve TX metadata by ID.
|
|
|
|
tx_info(ID) ->
|
|
result(request(["/v3/transactions/", ID, "/info"])).
|
|
|
|
-spec post_tx(Data) -> {ok, Result} | {error, Reason}
|
|
when Data :: term(), % FIXME
|
|
Result :: term(), % FIXME
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Post a transaction to the chain.
|
|
|
|
post_tx(Data) ->
|
|
JSON = zj:binary_encode(#{tx => Data}),
|
|
request("/v3/transactions", JSON).
|
|
|
|
|
|
-spec contract(ID) -> {ok, ContractData} | {error, Reason}
|
|
when ID :: contract_id(),
|
|
ContractData :: contract_data(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve a contract's metadata by ID.
|
|
|
|
contract(ID) ->
|
|
result(request(["/v3/contracts/", ID])).
|
|
|
|
|
|
-spec contract_code(ID) -> {ok, Bytecode} | {error, Reason}
|
|
when ID :: contract_id(),
|
|
Bytecode :: contract_byte_array(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve the code of a contract as represented on chain.
|
|
|
|
contract_code(ID) ->
|
|
case request(["/v3/contracts/", ID, "/code"]) of
|
|
{ok, #{"bytecode" := Bytecode}} -> {ok, Bytecode};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
-spec contract_poi(ID) -> {ok, Bytecode} | {error, Reason}
|
|
when ID :: contract_id(),
|
|
Bytecode :: contract_byte_array(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve the POI of a contract stored on chain.
|
|
|
|
contract_poi(ID) ->
|
|
request(["/v3/contracts/", ID, "/poi"]).
|
|
|
|
% TODO
|
|
%oracle(ID) ->
|
|
% request(["/v3/oracles/", ID]).
|
|
|
|
% TODO
|
|
%oracle_queries(ID) ->
|
|
% request(["/v3/oracles/", ID, "/queries"]).
|
|
|
|
% TODO
|
|
%oracle_queries_by_id(OracleID, QueryID) ->
|
|
% request(["/v3/oracles/", OracleID, "/queries/", QueryID]).
|
|
|
|
|
|
-spec name(Name) -> {ok, Info} | {error, Reason}
|
|
when Name :: string(), % _ ++ ".chain"
|
|
Info :: name_info(),
|
|
Reason :: ae_error() | string().
|
|
%% @doc
|
|
%% Retrieve a name's chain information.
|
|
|
|
name(Name) ->
|
|
result(request(["/v3/names/", Name])).
|
|
|
|
|
|
% TODO
|
|
%channel(ID) ->
|
|
% request(["/v3/channels/", ID]).
|
|
|
|
|
|
% FIXME: This should take a specific peer address:port otherwise it will be pointlessly
|
|
% random.
|
|
-spec peer_pubkey() -> {ok, Pubkey} | {error, Reason}
|
|
when Pubkey :: peer_pubkey(),
|
|
Reason :: term(). % FIXME
|
|
%% @doc
|
|
%% Returns the given node's public key, assuming there an AE node is reachable at
|
|
%% the given address.
|
|
|
|
peer_pubkey() ->
|
|
case request("/v3/peers/pubkey") of
|
|
{ok, #{"pubkey" := Pubkey}} -> {ok, Pubkey};
|
|
{ok, #{"reason" := Reason}} -> {error, Reason};
|
|
Error -> Error
|
|
end.
|
|
|
|
|
|
% TODO: Make a status/1 that allows the caller to query a specific node rather than
|
|
% a random one from the pool.
|
|
-spec status() -> {ok, Status} | {error, Reason}
|
|
when Status :: status(),
|
|
Reason :: ae_error().
|
|
%% @doc
|
|
%% Retrieve the node's status and meta it currently has about the chain.
|
|
|
|
status() ->
|
|
request("/v3/status").
|
|
|
|
|
|
-spec status_chainends() -> {ok, ChainEnds} | {error, Reason}
|
|
when ChainEnds :: [keyblock_hash()],
|
|
Reason :: ae_error().
|
|
%% @doc
|
|
%% Retrieve the latest keyblock hashes
|
|
|
|
status_chainends() ->
|
|
request("/v3/status/chain-ends").
|
|
|
|
|
|
request(Path) ->
|
|
vanillae_man:request(unicode:characters_to_list(Path)).
|
|
|
|
|
|
request(Path, Payload) ->
|
|
vanillae_man:request(unicode:characters_to_list(Path), Payload).
|
|
|
|
|
|
result({ok, #{"reason" := Reason}}) -> {error, Reason};
|
|
result(Received) -> Received.
|
|
|
|
|
|
|
|
%%% Contract calls
|
|
|
|
-spec contract_create(CreatorID, Path, InitArgs) -> Result
|
|
when CreatorID :: unicode:chardata(),
|
|
Path :: file:filename(),
|
|
InitArgs :: [string()],
|
|
Result :: {ok, CreateTX} | {error, Reason},
|
|
CreateTX :: binary(),
|
|
Reason :: file:posix() | term().
|
|
%% @doc
|
|
%% This function reads the source of a Sophia contract (an .aes file)
|
|
%% and returns the unsigned create contract call data with default values.
|
|
%% For more control over exactly what those values are, use create_contract/8.
|
|
|
|
contract_create(CreatorID, Path, InitArgs) ->
|
|
case next_nonce(CreatorID) of
|
|
{ok, Nonce} ->
|
|
Amount = 0,
|
|
Gas = 100000,
|
|
GasPrice = min_gas_price(),
|
|
Fee = min_fee(),
|
|
contract_create(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Path, InitArgs);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
|
|
-spec contract_create(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Path, InitArgs) -> Result
|
|
when CreatorID :: pubkey(),
|
|
Nonce :: pos_integer(),
|
|
Amount :: non_neg_integer(),
|
|
Gas :: pos_integer(),
|
|
GasPrice :: pos_integer(),
|
|
Fee :: non_neg_integer(),
|
|
Path :: file:filename(),
|
|
InitArgs :: [string()],
|
|
Result :: {ok, CreateTX} | {error, Reason},
|
|
CreateTX :: binary(),
|
|
Reason :: term().
|
|
%% @doc
|
|
%% Create a "create contract" call using the supplied values.
|
|
%%
|
|
%% Contract creation is an even more opaque process than contract calls if you're new
|
|
%% to Aeternity.
|
|
%%
|
|
%% The meaning of each argument is as follows:
|
|
%% <ul>
|
|
%% <li>
|
|
%% <b>CreatorID:</b>
|
|
%% This is the <em>public</em> key of the entity who will be posting the contract
|
|
%% to the chain.
|
|
%% The key must be encoded as a string prefixed with `"ak_"' (or `<<"ak_">>' in the
|
|
%% case of a binary string, which is also acceptable).
|
|
%% The returned call will still need to be signed by the caller's <em>private</em>
|
|
%% key.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Nonce:</b>
|
|
%% This is a sequential integer value that ensures that the hash value of two
|
|
%% sequential signed calls with the same contract ID, function and arguments can
|
|
%% never be the same.
|
|
%% This avoids replay attacks and ensures indempotency despite the distributed
|
|
%% nature of the blockchain network).
|
|
%% Every CallerID on the chain has a "next nonce" value that can be discovered by
|
|
%% querying your Aeternity node (via `vanillae:next_nonce(CallerID)', for example).
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Amount:</b>
|
|
%% All Aeternity transactions can carry an "amount" spent from the origin account
|
|
%% (in this case the `CallerID') to the destination. In a "Spend" transaction this
|
|
%% is the only value that really matters, but in a contract call the utility is
|
|
%% quite different, as you can pay money <em>into</em> a contract and have that
|
|
%% contract hold it (for future payouts, to be held in escrow, as proof of intent
|
|
%% to purchase or engage in an auction, whatever). Typically this value is 0, but
|
|
%% of course there are very good reasons why it should be set to a non-zero value
|
|
%% in the case of calls related to contract-governed payment systems.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Gas:</b>
|
|
%% This number sets a limit on the maximum amount of computation the caller is willing
|
|
%% to pay for on the chain.
|
|
%% Both storage and thunks are costly as the entire Aeternity network must execute,
|
|
%% verify, store and replicate all state changes to the chain.
|
|
%% Each byte stored on the chain carries a cost of 20 gas, which is not an issue if
|
|
%% you are storing persistent values of some state trasforming computation, but
|
|
%% high enough to discourage frivolous storage of media on the chain (which would be
|
|
%% a burden to the entire network).
|
|
%% Computation is less expensive, but still costs and is calculated very similarly
|
|
%% to the Erlang runtime's per-process reduction budget.
|
|
%% The maximum amount of gas that a microblock is permitted to carry (its maximum
|
|
%% computational weight, so to speak) is 6,000,000.
|
|
%% Typical contract calls range between about 100 to 15,000 gas, so the default gas
|
|
%% limit set by the `contract_call/6' function is only 20,000.
|
|
%% Setting the gas limit to 6,000,000 or more will cause your contract call to fail.
|
|
%% All transactions cost some gas with the exception of stateless or read-only
|
|
%% calls to your Aeternity node (executed as "dry run" calls and not propagated to
|
|
%% the network).
|
|
%% The gas consumed by the contract call transaction is multiplied by the `GasPrice'
|
|
%% provided and rolled into the block reward paid out to the node that mines the
|
|
%% transaction into a microblock.
|
|
%% Unused gas is refunded to the caller.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>GasPrice:</b>
|
|
%% This is a factor that is used calculate a value in aettos (the smallest unit of
|
|
%% Aeternity's currency value) for the gas consumed. In times of high contention
|
|
%% in the mempool increasing the gas price increases the value of mining a given
|
|
%% transaction, thus making miners more likely to prioritize the high value ones.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Fee:</b>
|
|
%% This value should really be caled `Bribe' or `Tip'.
|
|
%% This is a flat fee in aettos that is paid into the block reward, thereby allowing
|
|
%% an additional way to prioritize a given transaction above others, even if the
|
|
%% transaction will not consume much gas.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>ACI:</b>
|
|
%% This is the compiled contract's metadata. It provides the information necessary
|
|
%% for the contract call data to be formed in a way that the Aeternity runtime will
|
|
%% understand.
|
|
%% This ACI data must be already formatted in the native Erlang format as an .aci
|
|
%% file rather than as the JSON serialized format produced by the Sophia CLI tool.
|
|
%% The easiest way to create native ACI data is to use the Aeternity Launcher,
|
|
%% a GUI tool with a "Developers' Workbench" feature that can assist with this.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>ConID:</b>
|
|
%% This is the on-chain address of the contract instance that is to be called.
|
|
%% Note, this is different from the `name' of the contract, as a single contract may
|
|
%% be deployed multiple times.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Fun:</b>
|
|
%% This is the name of the entrypoint function to be called on the contract,
|
|
%% provided as a string (not a binary string, but a textual string as a list).
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Args:</b>
|
|
%% This is a list of the arguments to provide to the function, listed in order
|
|
%% according to the function's spec, and represented as strings (that is, an integer
|
|
%% argument of `10' must be cast to the textual representation `"10"').
|
|
%% </li>
|
|
%% </ul>
|
|
%% As should be obvious from the above description, it is pretty helpful to have a
|
|
%% source copy of the contract you intend to call so that you can re-generate the ACI
|
|
%% if you do not already have a copy, and can check the spec of a function before
|
|
%% trying to form a contract call.
|
|
|
|
contract_create(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Path, InitArgs) ->
|
|
case aeso_compiler:file(Path, [{aci, json}]) of
|
|
{ok, Compiled} ->
|
|
contract_create2(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Compiled, InitArgs);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
contract_create2(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Compiled, InitArgs) ->
|
|
AACI = prepare_aaci(maps:get(aci, Compiled)),
|
|
case encode_call_data(AACI, "init", InitArgs) of
|
|
{ok, CallData} ->
|
|
contract_create3(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Compiled, CallData);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
contract_create3(CreatorID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Compiled, CallData) ->
|
|
PK = unicode:characters_to_binary(CreatorID),
|
|
try
|
|
{account_pubkey, OwnerID} = aeser_api_encoder:decode(PK),
|
|
contract_create4(OwnerID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Compiled, CallData)
|
|
catch
|
|
Error:Reason -> {Error, Reason}
|
|
end.
|
|
|
|
contract_create4(OwnerID, Nonce,
|
|
Amount, Gas, GasPrice, Fee,
|
|
Compiled, CallData) ->
|
|
Code = aeser_contract_code:serialize(Compiled),
|
|
VM = 7,
|
|
ABI = 3,
|
|
<<CTVersion:32>> = <<VM:16, ABI:16>>,
|
|
ContractCreateVersion = 1,
|
|
TTL = 0,
|
|
Type = contract_create_tx,
|
|
Fields =
|
|
[{owner_id, aeser_id:create(account, OwnerID)},
|
|
{nonce, Nonce},
|
|
{code, Code},
|
|
{ct_version, CTVersion},
|
|
{fee, Fee},
|
|
{ttl, TTL},
|
|
{deposit, 0},
|
|
{amount, Amount},
|
|
{gas, Gas},
|
|
{gas_price, GasPrice},
|
|
{call_data, CallData}],
|
|
Template =
|
|
[{owner_id, id},
|
|
{nonce, int},
|
|
{code, binary},
|
|
{ct_version, int},
|
|
{fee, int},
|
|
{ttl, int},
|
|
{deposit, int},
|
|
{amount, int},
|
|
{gas, int},
|
|
{gas_price, int},
|
|
{call_data, binary}],
|
|
TXB = aeser_chain_objects:serialize(Type, ContractCreateVersion, Template, Fields),
|
|
try
|
|
{ok, aeser_api_encoder:encode(transaction, TXB)}
|
|
catch
|
|
error:Reason -> {error, Reason}
|
|
end.
|
|
|
|
|
|
-spec read_aci(Path) -> Result
|
|
when Path :: file:filename(),
|
|
Result :: {ok, ACI} | {error, Reason},
|
|
ACI :: tuple(), % FIXME: Change to correct Sophia record
|
|
Reason :: file:posix() | bad_aci.
|
|
%% @doc
|
|
%% This function reads the contents of an .aci file produced by AEL (the Aeternity
|
|
%% Launcher). ACI data is required for the contract call encoder to function properly.
|
|
%% ACI data is can be generated and stored in JSON data, and the Sophia CLI tool
|
|
%% can perform this action. Unfortunately, JSON is not the way that ACI data is
|
|
%% represented internally, and here we need the actual native representation. For
|
|
%% that reason Aeternity's GUI launcher (AEL) has a "Developer's Workbench" tool
|
|
%% that can produce an .aci file from a contract's source code and store it in the
|
|
%% native Erlang format.
|
|
%%
|
|
%% ACI encding/decoding and contract call encoding is significantly complex enough that
|
|
%% this provides for a pretty large savings in complexity for this library, dramatically
|
|
%% reduces runtime dependencies, and makes call encoding much more efficient (as a
|
|
%% huge number of steps are completely eliminated by this).
|
|
|
|
read_aci(Path) ->
|
|
case file:read_file(Path) of
|
|
{ok, Bin} ->
|
|
case zx_lib:b_to_ts(Bin) of
|
|
error -> {error, bad_aci};
|
|
OK -> OK
|
|
end;
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
|
|
-spec contract_call(CallerID, AACI, ConID, Fun, Args) -> Result
|
|
when CallerID :: unicode:chardata(),
|
|
AACI :: map(),
|
|
ConID :: unicode:chardata(),
|
|
Fun :: string(),
|
|
Args :: [string()],
|
|
Result :: {ok, CallTX} | {error, Reason},
|
|
CallTX :: binary(),
|
|
Reason :: term().
|
|
%% @doc
|
|
%% Form a contract call using hardcoded default values for `Gas', `GasPrice', `Fee',
|
|
%% and `Amount' to simplify the call (10 args is a bit much for normal calls!).
|
|
%% The values used are 20k for `Gas' and `Fee', the `GasPrice' is fixed at 1b (the
|
|
%% default "miner minimum" defined in default configs), and the `Amount' is 0.
|
|
%%
|
|
%% For details on the meaning of these and other argument values see the doc comment
|
|
%% for contract_call/10.
|
|
|
|
contract_call(CallerID, AACI, ConID, Fun, Args) ->
|
|
case next_nonce(CallerID) of
|
|
{ok, Nonce} ->
|
|
Gas = min_gas(),
|
|
GasPrice = min_gas_price(),
|
|
Fee = min_fee(),
|
|
Amount = 0,
|
|
contract_call(CallerID, Nonce,
|
|
Gas, GasPrice, Fee, Amount,
|
|
AACI, ConID, Fun, Args);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
|
|
-spec contract_call(CallerID, Gas, AACI, ConID, Fun, Args) -> Result
|
|
when CallerID :: unicode:chardata(),
|
|
Gas :: pos_integer(),
|
|
AACI :: map(),
|
|
ConID :: unicode:chardata(),
|
|
Fun :: string(),
|
|
Args :: [string()],
|
|
Result :: {ok, CallTX} | {error, Reason},
|
|
CallTX :: binary(),
|
|
Reason :: term().
|
|
%% @doc
|
|
%% Just like contract_call/5, but allows you to specify the amount of gas
|
|
%% without getting into a major adventure with the other arguments.
|
|
%%
|
|
%% For details on the meaning of these and other argument values see the doc comment
|
|
%% for contract_call/10.
|
|
|
|
contract_call(CallerID, Gas, AACI, ConID, Fun, Args) ->
|
|
case next_nonce(CallerID) of
|
|
{ok, Nonce} ->
|
|
GasPrice = min_gas_price(),
|
|
Fee = min_fee(),
|
|
Amount = 0,
|
|
contract_call(CallerID, Nonce,
|
|
Gas, GasPrice, Fee, Amount,
|
|
AACI, ConID, Fun, Args);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
|
|
-spec contract_call(CallerID, Nonce,
|
|
Gas, GasPrice, Fee, Amount,
|
|
AACI, ConID, Fun, Args) -> Result
|
|
when CallerID :: unicode:chardata(),
|
|
Nonce :: pos_integer(),
|
|
Gas :: pos_integer(),
|
|
GasPrice :: pos_integer(),
|
|
Fee :: non_neg_integer(),
|
|
Amount :: non_neg_integer(),
|
|
AACI :: map(),
|
|
ConID :: unicode:chardata(),
|
|
Fun :: string(),
|
|
Args :: [string()],
|
|
Result :: {ok, CallTX} | {error, Reason},
|
|
CallTX :: binary(),
|
|
Reason :: term().
|
|
%% @doc
|
|
%% Form a contract call using the supplied values.
|
|
%%
|
|
%% Contract call formation is a rather opaque process if you're new to Aeternity or
|
|
%% smart contract execution in general.
|
|
%%
|
|
%% The meaning of each argument is as follows:
|
|
%% <ul>
|
|
%% <li>
|
|
%% <b>CallerID:</b>
|
|
%% This is the <em>public</em> key of the entity making the contract call.
|
|
%% The key must be encoded as a string prefixed with `"ak_"' (or `<<"ak_">>' in the
|
|
%% case of a binary string, which is also acceptable).
|
|
%% The returned call will still need to be signed by the caller's <em>private</em>
|
|
%% key.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Nonce:</b>
|
|
%% This is a sequential integer value that ensures that the hash value of two
|
|
%% sequential signed calls with the same contract ID, function and arguments can
|
|
%% never be the same.
|
|
%% This avoids replay attacks and ensures indempotency despite the distributed
|
|
%% nature of the blockchain network).
|
|
%% Every CallerID on the chain has a "next nonce" value that can be discovered by
|
|
%% querying your Aeternity node (via `vanillae:next_nonce(CallerID)', for example).
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Gas:</b>
|
|
%% This number sets a limit on the maximum amount of computation the caller is willing
|
|
%% to pay for on the chain.
|
|
%% Both storage and thunks are costly as the entire Aeternity network must execute,
|
|
%% verify, store and replicate all state changes to the chain.
|
|
%% Each byte stored on the chain carries a cost of 20 gas, which is not an issue if
|
|
%% you are storing persistent values of some state trasforming computation, but
|
|
%% high enough to discourage frivolous storage of media on the chain (which would be
|
|
%% a burden to the entire network).
|
|
%% Computation is less expensive, but still costs and is calculated very similarly
|
|
%% to the Erlang runtime's per-process reduction budget.
|
|
%% The maximum amount of gas that a microblock is permitted to carry (its maximum
|
|
%% computational weight, so to speak) is 6,000,000.
|
|
%% Typical contract calls range between about 100 to 15,000 gas, so the default gas
|
|
%% limit set by the `contract_call/6' function is only 20,000.
|
|
%% Setting the gas limit to 6,000,000 or more will cause your contract call to fail.
|
|
%% All transactions cost some gas with the exception of stateless or read-only
|
|
%% calls to your Aeternity node (executed as "dry run" calls and not propagated to
|
|
%% the network).
|
|
%% The gas consumed by the contract call transaction is multiplied by the `GasPrice'
|
|
%% provided and rolled into the block reward paid out to the node that mines the
|
|
%% transaction into a microblock.
|
|
%% Unused gas is refunded to the caller.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>GasPrice:</b>
|
|
%% This is a factor that is used calculate a value in aettos (the smallest unit of
|
|
%% Aeternity's currency value) for the gas consumed. In times of high contention
|
|
%% in the mempool increasing the gas price increases the value of mining a given
|
|
%% transaction, thus making miners more likely to prioritize the high value ones.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Fee:</b>
|
|
%% This value should really be caled `Bribe' or `Tip'.
|
|
%% This is a flat fee in aettos that is paid into the block reward, thereby allowing
|
|
%% an additional way to prioritize a given transaction above others, even if the
|
|
%% transaction will not consume much gas.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Amount:</b>
|
|
%% All Aeternity transactions can carry an "amount" spent from the origin account
|
|
%% (in this case the `CallerID') to the destination. In a "Spend" transaction this
|
|
%% is the only value that really matters, but in a contract call the utility is
|
|
%% quite different, as you can pay money <em>into</em> a contract and have that
|
|
%% contract hold it (for future payouts, to be held in escrow, as proof of intent
|
|
%% to purchase or engage in an auction, whatever). Typically this value is 0, but
|
|
%% of course there are very good reasons why it should be set to a non-zero value
|
|
%% in the case of calls related to contract-governed payment systems.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>ACI:</b>
|
|
%% This is the compiled contract's metadata. It provides the information necessary
|
|
%% for the contract call data to be formed in a way that the Aeternity runtime will
|
|
%% understand.
|
|
%% This ACI data must be already formatted in the native Erlang format as an .aci
|
|
%% file rather than as the JSON serialized format produced by the Sophia CLI tool.
|
|
%% The easiest way to create native ACI data is to use the Aeternity Launcher,
|
|
%% a GUI tool with a "Developers' Workbench" feature that can assist with this.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>ConID:</b>
|
|
%% This is the on-chain address of the contract instance that is to be called.
|
|
%% Note, this is different from the `name' of the contract, as a single contract may
|
|
%% be deployed multiple times.
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Fun:</b>
|
|
%% This is the name of the entrypoint function to be called on the contract,
|
|
%% provided as a string (not a binary string, but a textual string as a list).
|
|
%% </li>
|
|
%% <li>
|
|
%% <b>Args:</b>
|
|
%% This is a list of the arguments to provide to the function, listed in order
|
|
%% according to the function's spec, and represented as strings (that is, an integer
|
|
%% argument of `10' must be cast to the textual representation `"10"').
|
|
%% </li>
|
|
%% </ul>
|
|
%% As should be obvious from the above description, it is pretty helpful to have a
|
|
%% source copy of the contract you intend to call so that you can re-generate the ACI
|
|
%% if you do not already have a copy, and can check the spec of a function before
|
|
%% trying to form a contract call.
|
|
|
|
contract_call(CallerID, Nonce, Gas, GP, Fee, Amount, AACI, ConID, Fun, Args) ->
|
|
case encode_call_data(AACI, Fun, Args) of
|
|
{ok, CD} -> contract_call2(CallerID, Nonce, Gas, GP, Fee, Amount, ConID, CD);
|
|
Error -> Error
|
|
end.
|
|
|
|
contract_call2(CallerID, Nonce, Gas, GasPrice, Fee, Amount, ConID, CallData) ->
|
|
CallerBin = unicode:characters_to_binary(CallerID),
|
|
try
|
|
{account_pubkey, PK} = aeser_api_encoder:decode(CallerBin),
|
|
contract_call3(PK, Nonce, Gas, GasPrice, Fee, Amount, ConID, CallData)
|
|
catch
|
|
Error:Reason -> {Error, Reason}
|
|
end.
|
|
|
|
contract_call3(PK, Nonce, Gas, GasPrice, Fee, Amount, ConID, CallData) ->
|
|
ConBin = unicode:characters_to_binary(ConID),
|
|
try
|
|
{contract_pubkey, CK} = aeser_api_encoder:decode(ConBin),
|
|
contract_call4(PK, Nonce, Gas, GasPrice, Fee, Amount, CK, CallData)
|
|
catch
|
|
Error:Reason -> {Error, Reason}
|
|
end.
|
|
|
|
contract_call4(PK, Nonce, Gas, GasPrice, Fee, Amount, CK, CallData) ->
|
|
ABI = 3,
|
|
TTL = 0,
|
|
CallVersion = 1,
|
|
Type = contract_call_tx,
|
|
Fields =
|
|
[{caller_id, aeser_id:create(account, PK)},
|
|
{nonce, Nonce},
|
|
{contract_id, aeser_id:create(contract, CK)},
|
|
{abi_version, ABI},
|
|
{fee, Fee},
|
|
{ttl, TTL},
|
|
{amount, Amount},
|
|
{gas, Gas},
|
|
{gas_price, GasPrice},
|
|
{call_data, CallData}],
|
|
Template =
|
|
[{caller_id, id},
|
|
{nonce, int},
|
|
{contract_id, id},
|
|
{abi_version, int},
|
|
{fee, int},
|
|
{ttl, int},
|
|
{amount, int},
|
|
{gas, int},
|
|
{gas_price, int},
|
|
{call_data, binary}],
|
|
TXB = aeser_chain_objects:serialize(Type, CallVersion, Template, Fields),
|
|
try
|
|
{ok, aeser_api_encoder:encode(transaction, TXB)}
|
|
catch
|
|
error:Reason -> {error, Reason}
|
|
end.
|
|
|
|
|
|
-spec prepare_contract(File) -> {ok, AACI} | {error, Reason}
|
|
when File :: file:filename(),
|
|
AACI :: map(),
|
|
Reason :: term().
|
|
%% @doc
|
|
%% Compile a contract and extract the function spec meta for use in future formation
|
|
%% of calldata
|
|
|
|
prepare_contract(File) ->
|
|
case aeso_compiler:file(File, [{aci, json}]) of
|
|
{ok, #{aci := ACI}} -> {ok, prepare_aaci(ACI)};
|
|
Error -> Error
|
|
end.
|
|
|
|
prepare_aaci(ACI) ->
|
|
% NOTE this will also pick up the main contract; as a result the main
|
|
% contract extraction later on shouldn't bother with typedefs.
|
|
Contracts = [ContractDef || #{contract := ContractDef} <- ACI],
|
|
Types = simplify_contract_types(Contracts, #{}),
|
|
|
|
[{NameBin, SpecDefs}] =
|
|
[{N, F}
|
|
|| #{contract := #{kind := contract_main,
|
|
functions := F,
|
|
name := N}} <- ACI],
|
|
Name = binary_to_list(NameBin),
|
|
Specs = simplify_specs(SpecDefs, #{}, Types),
|
|
{aaci, Name, Specs, Types}.
|
|
|
|
simplify_contract_types([], Types) ->
|
|
Types;
|
|
simplify_contract_types([Next | Rest], Types) ->
|
|
TypeDefs = maps:get(typedefs, Next),
|
|
NameBin = maps:get(name, Next),
|
|
Name = binary_to_list(NameBin),
|
|
Types2 = maps:put(Name, {[], contract}, Types),
|
|
Types3 = case maps:find(state, Next) of
|
|
{ok, StateDefACI} ->
|
|
StateDefOpaque = opaque_type([], StateDefACI),
|
|
maps:put(Name ++ ".state", {[], StateDefOpaque}, Types2);
|
|
error ->
|
|
Types2
|
|
end,
|
|
Types4 = simplify_typedefs(TypeDefs, Types3, Name ++ "."),
|
|
simplify_contract_types(Rest, Types4).
|
|
|
|
simplify_typedefs([], Types, _NamePrefix) ->
|
|
Types;
|
|
simplify_typedefs([Next | Rest], Types, NamePrefix) ->
|
|
#{name := NameBin, vars := ParamDefs, typedef := T} = Next,
|
|
Name = NamePrefix ++ binary_to_list(NameBin),
|
|
Params = [binary_to_list(Param) || #{name := Param} <- ParamDefs],
|
|
Type = opaque_type(Params, T),
|
|
NewTypes = maps:put(Name, {Params, Type}, Types),
|
|
simplify_typedefs(Rest, NewTypes, NamePrefix).
|
|
|
|
simplify_specs([], Specs, _Types) ->
|
|
Specs;
|
|
simplify_specs([Next | Rest], Specs, Types) ->
|
|
#{name := NameBin, arguments := ArgDefs, returns := ResultDef} = Next,
|
|
Name = binary_to_list(NameBin),
|
|
ArgTypes = [simplify_args(Arg, Types) || Arg <- ArgDefs],
|
|
{ok, ResultType} = type(ResultDef, Types),
|
|
NewSpecs = maps:put(Name, {ArgTypes, ResultType}, Specs),
|
|
simplify_specs(Rest, NewSpecs, Types).
|
|
|
|
simplify_args(#{name := NameBin, type := TypeDef}, Types) ->
|
|
Name = binary_to_list(NameBin),
|
|
% FIXME We should make this error more informative, and continue
|
|
% propogating it up, so that the user can provide their own ACI and find
|
|
% out whether it worked or not. At that point ACI -> AACI could almost be a
|
|
% module or package of its own.
|
|
{ok, Type} = type(TypeDef, Types),
|
|
{Name, Type}.
|
|
|
|
% Type preparation has two goals. First, we need a data structure that can be
|
|
% traversed quickly, to take sophia-esque erlang expressions and turn them into
|
|
% fate-esque erlang expressions that aebytecode can serialize. Second, we need
|
|
% partially substituted names, so that error messages can be generated for why
|
|
% "foobar" is not valid as the third field of a `bazquux`, because the third
|
|
% field is supposed to be `option(integer)`, not `string`.
|
|
%
|
|
% To achieve this we need three representations of each type expression, which
|
|
% together form an 'annotated type'. First, we need the fully opaque name,
|
|
% "bazquux", then we need the normalized name, which is an opaque name with the
|
|
% bare-minimum substitution needed to make the outer-most type-constructor an
|
|
% identifiable built-in, ADT, or record type, and then we need the flattened
|
|
% type, which is the raw {variant, [{Name, Fields}, ...]} or
|
|
% {record, [{Name, Type}]} expression that can be used in actual Sophia->FATE
|
|
% coercion. The type sub-expressions in these flattened types will each be
|
|
% fully annotated as well, i.e. they will each contain *all three* of the above
|
|
% representations, so that coercion of subexpressions remains fast AND
|
|
% informative.
|
|
%
|
|
% In a lot of cases the opaque type given will already be normalized, in which
|
|
% case either the normalized field or the non-normalized field of an annotated
|
|
% type can simple be the atom `already_normalized`, which means error messages
|
|
% can simply render the normalized type expression and know that the error will
|
|
% make sense.
|
|
|
|
type(T, Types) ->
|
|
O = opaque_type([], T),
|
|
flatten_opaque_type(O, Types).
|
|
|
|
opaque_type(Params, NameBin) when is_binary(NameBin) ->
|
|
Name = opaque_type_name(NameBin),
|
|
case not is_atom(Name) and lists:member(Name, Params) of
|
|
false -> Name;
|
|
true -> {var, Name}
|
|
end;
|
|
opaque_type(Params, #{record := FieldDefs}) ->
|
|
Fields = [{binary_to_list(Name), opaque_type(Params, Type)}
|
|
|| #{name := Name, type := Type} <- FieldDefs],
|
|
{record, Fields};
|
|
opaque_type(Params, #{variant := VariantDefs}) ->
|
|
ConvertVariant = fun(Pair) ->
|
|
[{Name, Types}] = maps:to_list(Pair),
|
|
{binary_to_list(Name), [opaque_type(Params, Type) || Type <- Types]}
|
|
end,
|
|
Variants = lists:map(ConvertVariant, VariantDefs),
|
|
{variant, Variants};
|
|
opaque_type(Params, #{tuple := TypeDefs}) ->
|
|
{tuple, [opaque_type(Params, Type) || Type <- TypeDefs]};
|
|
opaque_type(Params, Pair) when is_map(Pair) ->
|
|
[{Name, TypeArgs}] = maps:to_list(Pair),
|
|
{opaque_type_name(Name), [opaque_type(Params, Arg) || Arg <- TypeArgs]}.
|
|
|
|
% atoms for builtins, lists for user defined types
|
|
opaque_type_name(<<"int">>) -> integer;
|
|
opaque_type_name(<<"address">>) -> address;
|
|
opaque_type_name(<<"contract">>) -> contract;
|
|
opaque_type_name(<<"bool">>) -> boolean;
|
|
opaque_type_name(<<"option">>) -> option;
|
|
opaque_type_name(<<"list">>) -> list;
|
|
opaque_type_name(<<"map">>) -> map;
|
|
opaque_type_name(<<"string">>) -> string;
|
|
opaque_type_name(Name) -> binary_to_list(Name).
|
|
|
|
flatten_opaque_type(T, Types) ->
|
|
case normalize_opaque_type(T, Types) of
|
|
{ok, AlreadyNormalized, NOpaque, NExpanded} ->
|
|
flatten_opaque_type2(T, AlreadyNormalized, NOpaque, NExpanded, Types);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
flatten_opaque_type2(T, AlreadyNormalized, NOpaque, NExpanded, Types) ->
|
|
case flatten_normalized_type(NExpanded, Types) of
|
|
{ok, Flat} ->
|
|
case AlreadyNormalized of
|
|
true -> {ok, {T, already_normalized, Flat}};
|
|
false -> {ok, {T, NOpaque, Flat}}
|
|
end;
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
flatten_opaque_types([T | Rest], Types, Acc) ->
|
|
case flatten_opaque_type(T, Types) of
|
|
{ok, Type} -> flatten_opaque_types(Rest, Types, [Type | Acc]);
|
|
Error -> Error
|
|
end;
|
|
flatten_opaque_types([], _Types, Acc) ->
|
|
{ok, lists:reverse(Acc)}.
|
|
|
|
flatten_opaque_bindings([{Name, T} | Rest], Types, Acc) ->
|
|
case flatten_opaque_type(T, Types) of
|
|
{ok, Type} -> flatten_opaque_bindings(Rest, Types, [{Name, Type} | Acc]);
|
|
Error -> Error
|
|
end;
|
|
flatten_opaque_bindings([], _Types, Acc) ->
|
|
{ok, lists:reverse(Acc)}.
|
|
|
|
flatten_opaque_variants([{Name, Elems} | Rest], Types, Acc) ->
|
|
case flatten_opaque_types(Elems, Types, []) of
|
|
{ok, ElemsFlat} -> flatten_opaque_variants(Rest, Types, [{Name, ElemsFlat} | Acc]);
|
|
Error -> Error
|
|
end;
|
|
flatten_opaque_variants([], _Types, Acc) ->
|
|
{ok, lists:reverse(Acc)}.
|
|
|
|
flatten_normalized_type(PrimitiveType, _Types) when is_atom(PrimitiveType) ->
|
|
{ok, PrimitiveType};
|
|
flatten_normalized_type({variant, VariantsOpaque}, Types) ->
|
|
case flatten_opaque_variants(VariantsOpaque, Types, []) of
|
|
{ok, Variants} -> {ok, {variant, Variants}};
|
|
Error -> Error
|
|
end;
|
|
flatten_normalized_type({record, FieldsOpaque}, Types) ->
|
|
case flatten_opaque_bindings(FieldsOpaque, Types, []) of
|
|
{ok, Fields} -> {ok, {record, Fields}};
|
|
Error -> Error
|
|
end;
|
|
flatten_normalized_type({T, ElemsOpaque}, Types) ->
|
|
case flatten_opaque_types(ElemsOpaque, Types, []) of
|
|
{ok, Elems} -> {ok, {T, Elems}};
|
|
Error -> Error
|
|
end.
|
|
|
|
normalize_opaque_type(T, Types) ->
|
|
case type_is_expanded(T) of
|
|
false -> normalize_opaque_type(T, Types, true);
|
|
true -> {ok, true, T, T}
|
|
end.
|
|
|
|
% FIXME detect infinite loops
|
|
% FIXME detect builtins with the wrong number of arguments
|
|
% FIXME should nullary types have an empty list of arguments added before now?
|
|
normalize_opaque_type({option, [T]}, _Types, IsFirst) ->
|
|
% Just like user-made ADTs, 'option' is considered part of the type, and so
|
|
% options are considered normalised.
|
|
{ok, IsFirst, {option, [T]}, {variant, [{"None", []}, {"Some", [T]}]}};
|
|
normalize_opaque_type(T, Types, IsFirst) when is_list(T) ->
|
|
normalize_opaque_type({T, []}, Types, IsFirst);
|
|
normalize_opaque_type({T, TypeArgs}, Types, IsFirst) when is_list(T) ->
|
|
case maps:find(T, Types) of
|
|
%{error, invalid_aci}; % FIXME more info
|
|
error ->
|
|
{ok, IsFirst, {T, TypeArgs}, {unknown_type, TypeArgs}};
|
|
{ok, {TypeParamNames, Definition}} ->
|
|
Bindings = lists:zip(TypeParamNames, TypeArgs),
|
|
normalize_opaque_type2(T, TypeArgs, Types, IsFirst, Bindings, Definition)
|
|
end.
|
|
|
|
normalize_opaque_type2(T, TypeArgs, Types, IsFirst, Bindings, Definition) ->
|
|
SubResult =
|
|
case Bindings of
|
|
[] -> {ok, Definition};
|
|
_ -> substitute_opaque_type(Bindings, Definition)
|
|
end,
|
|
case SubResult of
|
|
% Type names were already normalized if they were ADTs or records,
|
|
% since for those connectives the name is considered part of the type.
|
|
{ok, NextT = {variant, _}} ->
|
|
{ok, IsFirst, {T, TypeArgs}, NextT};
|
|
{ok, NextT = {record, _}} ->
|
|
{ok, IsFirst, {T, TypeArgs}, NextT};
|
|
% Everything else has to be substituted down to a built-in connective
|
|
% to be considered normalized.
|
|
{ok, NextT} ->
|
|
normalize_opaque_type3(NextT, Types);
|
|
Error ->
|
|
Error
|
|
end.
|
|
|
|
% while this does look like normalize_opaque_type/2, it sets IsFirst to false
|
|
% instead of true, and is part of the loop, instead of being an initial
|
|
% condition for the loop.
|
|
normalize_opaque_type3(NextT, Types) ->
|
|
case type_is_expanded(NextT) of
|
|
false -> normalize_opaque_type(NextT, Types, false);
|
|
true -> {ok, false, NextT, NextT}
|
|
end.
|
|
|
|
% Strings indicate names that should be substituted. Atoms indicate built in
|
|
% types, which don't need to be expanded, except for option.
|
|
type_is_expanded({option, _}) -> false;
|
|
type_is_expanded(X) when is_atom(X) -> true;
|
|
type_is_expanded({X, _}) when is_atom(X) -> true;
|
|
type_is_expanded(_) -> false.
|
|
|
|
% Skip traversal if there is nothing to substitute. This will often be the
|
|
% most common case.
|
|
substitute_opaque_type(Bindings, {var, VarName}) ->
|
|
case lists:keyfind(VarName, 1, Bindings) of
|
|
false -> {error, invalid_aci};
|
|
{_, TypeArg} -> {ok, TypeArg}
|
|
end;
|
|
substitute_opaque_type(Bindings, {Connective, Args}) ->
|
|
case substitute_opaque_types(Bindings, Args, []) of
|
|
{ok, Result} -> {ok, {Connective, Result}};
|
|
Error -> Error
|
|
end;
|
|
substitute_opaque_type(_Bindings, Type) -> {ok, Type}.
|
|
|
|
substitute_opaque_types(Bindings, [Next | Rest], Acc) ->
|
|
case substitute_opaque_type(Bindings, Next) of
|
|
{ok, Result} -> substitute_opaque_types(Bindings, Rest, [Result | Acc]);
|
|
Error -> Error
|
|
end;
|
|
substitute_opaque_types(_Bindings, [], Acc) ->
|
|
{ok, lists:reverse(Acc)}.
|
|
|
|
coerce_bindings(VarTypes, Terms, Direction) ->
|
|
DefLength = length(VarTypes),
|
|
ArgLength = length(Terms),
|
|
if
|
|
DefLength =:= ArgLength -> coerce_zipped_bindings(lists:zip(VarTypes, Terms), Direction, arg);
|
|
DefLength > ArgLength -> {error, too_few_args};
|
|
DefLength < ArgLength -> {error, too_many_args}
|
|
end.
|
|
|
|
coerce_zipped_bindings(Bindings, Direction, Tag) ->
|
|
coerce_zipped_bindings(Bindings, Direction, Tag, [], []).
|
|
|
|
coerce_zipped_bindings([Next | Rest], Direction, Tag, Good, Broken) ->
|
|
{{ArgName, Type}, Term} = Next,
|
|
case coerce(Type, Term, Direction) of
|
|
{ok, NewTerm} ->
|
|
coerce_zipped_bindings(Rest, Direction, Tag, [NewTerm | Good], Broken);
|
|
{error, Errors} ->
|
|
Wrapped = wrap_errors({Tag, ArgName}, Errors),
|
|
coerce_zipped_bindings(Rest, Direction, Tag, Good, [Wrapped | Broken])
|
|
end;
|
|
coerce_zipped_bindings([], _, _, Good, []) ->
|
|
{ok, lists:reverse(Good)};
|
|
coerce_zipped_bindings([], _, _, _, Broken) ->
|
|
{error, combine_errors(Broken)}.
|
|
|
|
wrap_errors(Location, Errors) ->
|
|
F = fun({Error, Path}) ->
|
|
{Error, [Location | Path]}
|
|
end,
|
|
lists:map(F, Errors).
|
|
|
|
combine_errors(Broken) ->
|
|
F = fun(NextErrors, Acc) ->
|
|
NextErrors ++ Acc
|
|
end,
|
|
lists:foldl(F, [], Broken).
|
|
|
|
coerce({_, _, integer}, S, _) when is_integer(S) ->
|
|
{ok, S};
|
|
coerce({O, N, integer}, S, to_fate) when is_list(S) ->
|
|
try
|
|
Val = list_to_integer(S),
|
|
{ok, Val}
|
|
catch
|
|
error:badarg -> single_error({invalid, O, N, S})
|
|
end;
|
|
coerce({O, N, address}, S, to_fate) ->
|
|
try
|
|
case aeser_api_encoder:decode(unicode:characters_to_binary(S)) of
|
|
{account_pubkey, Key} -> {ok, {address, Key}};
|
|
_ -> single_error({invalid, O, N, S})
|
|
end
|
|
catch
|
|
error:_ -> single_error({invalid, O, N, S})
|
|
end;
|
|
coerce({_, _, address}, {address, Bin}, from_fate) ->
|
|
Address = aeser_api_encoder:encode(account_pubkey, Bin),
|
|
{ok, unicode:characters_to_list(Address)};
|
|
coerce({O, N, contract}, S, to_fate) ->
|
|
try
|
|
case aeser_api_encoder:decode(unicode:characters_to_binary(S)) of
|
|
{contract_pubkey, Key} -> {ok, {contract, Key}};
|
|
_ -> single_error({invalid, O, N, S})
|
|
end
|
|
catch
|
|
error:_ -> single_error({invalid, O, N, S})
|
|
end;
|
|
coerce({_, _, contract}, {contract, Bin}, from_fate) ->
|
|
Address = aeser_api_encoder:encode(contract_pubkey, Bin),
|
|
{ok, unicode:characters_to_list(Address)};
|
|
coerce({_, _, boolean}, true, _) ->
|
|
{ok, true};
|
|
coerce({_, _, boolean}, false, _) ->
|
|
{ok, false};
|
|
coerce({O, N, boolean}, S, _) ->
|
|
single_error({invalid, O, N, S});
|
|
coerce({O, N, string}, Str, Direction) ->
|
|
Result = case Direction of
|
|
to_fate -> unicode:characters_to_binary(Str);
|
|
from_fate -> unicode:characters_to_list(Str)
|
|
end,
|
|
case Result of
|
|
{error, _, _} ->
|
|
single_error({invalid, O, N, Str});
|
|
{incomplete, _, _} ->
|
|
single_error({invalid, O, N, Str});
|
|
StrBin ->
|
|
{ok, StrBin}
|
|
end;
|
|
coerce({_, _, {list, [Type]}}, Data, Direction) when is_list(Data) ->
|
|
coerce_list(Type, Data, Direction);
|
|
coerce({_, _, {map, [KeyType, ValType]}}, Data, Direction) when is_map(Data) ->
|
|
coerce_map(KeyType, ValType, Data, Direction);
|
|
coerce({O, N, {tuple, ElementTypes}}, Data, to_fate) when is_tuple(Data) ->
|
|
ElementList = tuple_to_list(Data),
|
|
coerce_tuple(O, N, ElementTypes, ElementList, to_fate);
|
|
coerce({O, N, {tuple, ElementTypes}}, {tuple, Data}, from_fate) ->
|
|
ElementList = tuple_to_list(Data),
|
|
coerce_tuple(O, N, ElementTypes, ElementList, from_fate);
|
|
coerce({O, N, {variant, Variants}}, Data, to_fate) when is_tuple(Data), tuple_size(Data) > 0 ->
|
|
[Name | Terms] = tuple_to_list(Data),
|
|
case lookup_variant(Name, Variants) of
|
|
{Tag, TermTypes} ->
|
|
coerce_variant2(O, N, Variants, Name, Tag, TermTypes, Terms, to_fate);
|
|
not_found ->
|
|
ValidNames = [Valid || {Valid, _} <- Variants],
|
|
single_error({invalid_variant, O, N, Name, ValidNames})
|
|
end;
|
|
coerce({O, N, {variant, Variants}}, Name, to_fate) when is_list(Name) ->
|
|
coerce({O, N, {variant, Variants}}, {Name}, to_fate);
|
|
coerce({O, N, {variant, Variants}}, {variant, _, Tag, Tuple}, from_fate) ->
|
|
Terms = tuple_to_list(Tuple),
|
|
{Name, TermTypes} = lists:nth(Tag + 1, Variants),
|
|
coerce_variant2(O, N, Variants, Name, Tag, TermTypes, Terms, from_fate);
|
|
coerce({O, N, {record, MemberTypes}}, Map, to_fate) when is_map(Map) ->
|
|
coerce_map_to_record(O, N, MemberTypes, Map);
|
|
coerce({O, N, {record, MemberTypes}}, {tuple, Tuple}, from_fate) ->
|
|
coerce_record_to_map(O, N, MemberTypes, Tuple);
|
|
coerce({O, N, {unknown_type, _}}, Data, _) ->
|
|
case N of
|
|
already_normalized ->
|
|
Message = "Warning: Unknown type ~p. Using term ~p as is.~n",
|
|
io:format(Message, [O, Data]);
|
|
_ ->
|
|
Message = "Warning: Unknown type ~p (i.e. ~p). Using term ~p as is.~n",
|
|
io:format(Message, [O, N, Data])
|
|
end,
|
|
{ok, Data};
|
|
coerce({O, N, _}, Data, from_fate) ->
|
|
case N of
|
|
already_normalized ->
|
|
io:format("Warning: Unimplemented type ~p.~nUsing term as is:~n~p~n", [O, Data]);
|
|
_ ->
|
|
io:format("Warning: Unimplemented type ~p (i.e. ~p).~nUsing term as is:~n~p~n", [O, N, Data])
|
|
end,
|
|
{ok, Data};
|
|
coerce({O, N, _}, Data, _) -> single_error({invalid, O, N, Data}).
|
|
|
|
coerce_list(Type, Elements, Direction) ->
|
|
% 0 index since it represents a sophia list
|
|
coerce_list(Type, Elements, Direction, 0, [], []).
|
|
|
|
coerce_list(Type, [Next | Rest], Direction, Index, Good, Broken) ->
|
|
case coerce(Type, Next, Direction) of
|
|
{ok, Coerced} -> coerce_list(Type, Rest, Direction, Index + 1, [Coerced | Good], Broken);
|
|
{error, Errors} ->
|
|
Wrapped = wrap_errors({index, Index}, Errors),
|
|
coerce_list(Type, Rest, Direction, Index + 1, Good, [Wrapped | Broken])
|
|
end;
|
|
coerce_list(_Type, [], _, _, Good, []) ->
|
|
{ok, lists:reverse(Good)};
|
|
coerce_list(_, [], _, _, _, Broken) ->
|
|
{error, combine_errors(Broken)}.
|
|
|
|
coerce_map(KeyType, ValType, Data, Direction) ->
|
|
coerce_map(KeyType, ValType, maps:iterator(Data), Direction, #{}, []).
|
|
|
|
coerce_map(KeyType, ValType, Remaining, Direction, Good, Broken) ->
|
|
case maps:next(Remaining) of
|
|
{K, V, RemainingAfter} ->
|
|
coerce_map2(KeyType, ValType, RemainingAfter, Direction, Good, Broken, K, V);
|
|
none ->
|
|
coerce_map_finish(Good, Broken)
|
|
end.
|
|
|
|
coerce_map2(KeyType, ValType, Remaining, Direction, Good, Broken, K, V) ->
|
|
case coerce(KeyType, K, Direction) of
|
|
{ok, KFATE} ->
|
|
coerce_map3(KeyType, ValType, Remaining, Direction, Good, Broken, K, V, KFATE);
|
|
{error, Errors} ->
|
|
Wrapped = wrap_errors(map_key, Errors),
|
|
% Continue as if the key coerced successfully, so that we can give
|
|
% errors for both the key and the value.
|
|
coerce_map3(KeyType, ValType, Remaining, Direction, Good, [Wrapped | Broken], K, V, error)
|
|
end.
|
|
|
|
coerce_map3(KeyType, ValType, Remaining, Direction, Good, Broken, K, V, KFATE) ->
|
|
case coerce(ValType, V, Direction) of
|
|
{ok, VFATE} ->
|
|
NewGood = Good#{KFATE => VFATE},
|
|
coerce_map(KeyType, ValType, Remaining, Direction, NewGood, Broken);
|
|
{error, Errors} ->
|
|
Wrapped = wrap_errors({map_value, K}, Errors),
|
|
coerce_map(KeyType, ValType, Remaining, Direction, Good, [Wrapped | Broken])
|
|
end.
|
|
|
|
coerce_map_finish(Good, []) ->
|
|
{ok, Good};
|
|
coerce_map_finish(_, Broken) ->
|
|
{error, combine_errors(Broken)}.
|
|
|
|
lookup_variant(Name, Variants) -> lookup_variant(Name, Variants, 0).
|
|
|
|
lookup_variant(Name, [{Name, Terms} | _], Tag) ->
|
|
{Tag, Terms};
|
|
lookup_variant(Name, [_ | Rest], Tag) ->
|
|
lookup_variant(Name, Rest, Tag + 1);
|
|
lookup_variant(_Name, [], _Tag) ->
|
|
not_found.
|
|
|
|
coerce_tuple(O, N, TermTypes, Terms, Direction) ->
|
|
case coerce_tuple_elements(TermTypes, Terms, Direction, tuple_element) of
|
|
{ok, Converted} ->
|
|
case Direction of
|
|
to_fate -> {ok, {tuple, list_to_tuple(Converted)}};
|
|
from_fate -> {ok, list_to_tuple(Converted)}
|
|
end;
|
|
{error, too_few_terms} ->
|
|
single_error({tuple_too_few_terms, O, N, list_to_tuple(Terms)});
|
|
{error, too_many_terms} ->
|
|
single_error({tuple_too_many_terms, O, N, list_to_tuple(Terms)});
|
|
Errors -> Errors
|
|
end.
|
|
|
|
% Wraps a single error in a list, along with an empty path, so that other
|
|
% accumulating error handlers can work with it.
|
|
single_error(Reason) ->
|
|
{error, [{Reason, []}]}.
|
|
|
|
coerce_variant2(O, N, Variants, Name, Tag, TermTypes, Terms, Direction) ->
|
|
% FIXME: we could go through and add the variant tag to the adt_element
|
|
% paths?
|
|
case coerce_tuple_elements(TermTypes, Terms, Direction, adt_element) of
|
|
{ok, Converted} ->
|
|
case Direction of
|
|
to_fate ->
|
|
Arities = [length(VariantTerms)
|
|
|| {_, VariantTerms} <- Variants],
|
|
{ok, {variant, Arities, Tag, list_to_tuple(Converted)}};
|
|
from_fate ->
|
|
{ok, list_to_tuple([Name | Converted])}
|
|
end;
|
|
{error, too_few_terms} ->
|
|
single_error({adt_too_few_terms, O, N, Name, TermTypes, Terms});
|
|
{error, too_many_terms} ->
|
|
single_error({adt_too_many_terms, O, N, Name, TermTypes, Terms});
|
|
Errors -> Errors
|
|
end.
|
|
|
|
coerce_tuple_elements(Types, Terms, Direction, Tag) ->
|
|
% The sophia standard library uses 0 indexing for lists, and fst/snd/thd
|
|
% for tuples... Not sure how we should report errors in tuples, then.
|
|
coerce_tuple_elements(Types, Terms, Direction, Tag, 0, [], []).
|
|
|
|
coerce_tuple_elements([Type | Types], [Term | Terms], Direction, Tag, Index, Good, Broken) ->
|
|
case coerce(Type, Term, Direction) of
|
|
{ok, Value} ->
|
|
coerce_tuple_elements(Types, Terms, Direction, Tag, Index + 1, [Value | Good], Broken);
|
|
{error, Errors} ->
|
|
Wrapped = wrap_errors({Tag, Index}, Errors),
|
|
coerce_tuple_elements(Types, Terms, Direction, Tag, Index + 1, Good, [Wrapped | Broken])
|
|
end;
|
|
coerce_tuple_elements([], [], _, _, _, Good, []) ->
|
|
{ok, lists:reverse(Good)};
|
|
coerce_tuple_elements([], [], _, _, _, _, Broken) ->
|
|
{error, combine_errors(Broken)};
|
|
coerce_tuple_elements(_, [], _, _, _, _, _) ->
|
|
{error, too_few_terms};
|
|
coerce_tuple_elements([], _, _, _, _, _, _) ->
|
|
{error, too_many_terms}.
|
|
|
|
coerce_map_to_record(O, N, MemberTypes, Map) ->
|
|
case zip_record_fields(MemberTypes, Map) of
|
|
{ok, Zipped} ->
|
|
case coerce_zipped_bindings(Zipped, to_fate, field) of
|
|
{ok, Converted} ->
|
|
{ok, {tuple, list_to_tuple(Converted)}};
|
|
Errors ->
|
|
Errors
|
|
end;
|
|
{error, {missing_fields, Missing}} ->
|
|
single_error({missing_fields, O, N, Missing});
|
|
{error, {unexpected_fields, Unexpected}} ->
|
|
Names = [Name || {Name, _} <- maps:to_list(Unexpected)],
|
|
single_error({unexpected_fields, O, N, Names})
|
|
end.
|
|
|
|
coerce_record_to_map(O, N, MemberTypes, Tuple) ->
|
|
Names = [Name || {Name, _} <- MemberTypes],
|
|
Types = [Type || {_, Type} <- MemberTypes],
|
|
Terms = tuple_to_list(Tuple),
|
|
% FIXME: We could go through and change the record_element paths into field
|
|
% paths?
|
|
case coerce_tuple_elements(Types, Terms, from_fate, record_element) of
|
|
{ok, Converted} ->
|
|
Map = maps:from_list(lists:zip(Names, Converted)),
|
|
{ok, Map};
|
|
{error, too_few_terms} ->
|
|
single_error({record_too_few_terms, O, N, Tuple});
|
|
{error, too_many_terms} ->
|
|
single_error({record_too_many_terms, O, N, Tuple});
|
|
Errors ->
|
|
Errors
|
|
end.
|
|
|
|
zip_record_fields(Fields, Map) ->
|
|
case lists:mapfoldl(fun zip_record_field/2, {Map, []}, Fields) of
|
|
{_, {_, Missing = [_|_]}} ->
|
|
{error, {missing_fields, lists:reverse(Missing)}};
|
|
{_, {Remaining, _}} when map_size(Remaining) > 0 ->
|
|
{error, {unexpected_fields, Remaining}};
|
|
{Zipped, _} ->
|
|
{ok, Zipped}
|
|
end.
|
|
|
|
zip_record_field({Name, Type}, {Remaining, Missing}) ->
|
|
case maps:take(Name, Remaining) of
|
|
{Term, RemainingAfter} ->
|
|
ZippedTerm = {{Name, Type}, Term},
|
|
{ZippedTerm, {RemainingAfter, Missing}};
|
|
error ->
|
|
{missing, {Remaining, [Name | Missing]}}
|
|
end.
|
|
|
|
-spec aaci_lookup_spec(AACI, Fun) -> {ok, Type} | {error, Reason}
|
|
when AACI :: {aaci, term(), term(), term()}, % FIXME
|
|
Fun :: binary() | string(),
|
|
Type :: {term(), term()}, % FIXME
|
|
Reason :: bad_fun_name.
|
|
|
|
%% @doc
|
|
%% Look up the type information of a given function, in the AACI provided by
|
|
%% prepare_contract/1. This type information, particularly the return type, is
|
|
%% useful for calling decode_bytearray/2.
|
|
|
|
aaci_lookup_spec({aaci, _, FunDefs, _}, Fun) ->
|
|
case maps:find(Fun, FunDefs) of
|
|
A = {ok, _} -> A;
|
|
error -> {error, bad_fun_name}
|
|
end.
|
|
|
|
-spec min_gas_price() -> integer().
|
|
%% @doc
|
|
%% This function always returns 1,000,000,000 in the current version.
|
|
%%
|
|
%% This is the minimum gas price returned by aec_tx_pool:minimum_miner_gas_price(),
|
|
%% (the default set in aeternity_config_schema.json).
|
|
%%
|
|
%% Surely there can be some more nuance to this, but until a "gas station" type
|
|
%% market/chain survey service exists we will use this naive value as a default
|
|
%% and users can call contract_call/10 if they want more fine-tuned control over the
|
|
%% price. This won't really matter much until the chain has a high enough TPS that
|
|
%% contention becomes an issue.
|
|
|
|
min_gas_price() ->
|
|
1000000000.
|
|
|
|
|
|
-spec min_gas() -> integer().
|
|
%% @doc
|
|
%% This function always returns 20,000 in the current version.
|
|
%%
|
|
%% There is no actual minimum gas price, but this figure provides a lower limit toward
|
|
%% successful completion of general contract calls while not too severely limiting the
|
|
%% number of TXs that may appear in a single microblock based on the per-block gas
|
|
%% maximum (6,000,000 / 20,000 = 300 TXs in a microblock -- which at the moment seems
|
|
%% like plenty).
|
|
|
|
min_gas() ->
|
|
20000.
|
|
|
|
|
|
-spec min_fee() -> integer().
|
|
%% @doc
|
|
%% This function always returns 200,000,000,000,000 in the current version.
|
|
%%
|
|
%% This is the minimum fee amount currently accepted -- it is up to callers whether
|
|
%% they want to customize this value higher (or possibly lower, though as things stand
|
|
%% that would only work on an independent AE-based network, not the actual Aeternity
|
|
%% mainnet or testnet).
|
|
|
|
min_fee() ->
|
|
200000000000000.
|
|
|
|
|
|
encode_call_data({aaci, _ContractName, FunDefs, _TypeDefs}, Fun, Args) ->
|
|
case maps:find(Fun, FunDefs) of
|
|
{ok, {ArgDef, _ResultDef}} -> encode_call_data2(ArgDef, Fun, Args);
|
|
error -> {error, bad_fun_name}
|
|
end.
|
|
|
|
encode_call_data2(ArgDef, Fun, Args) ->
|
|
case coerce_bindings(ArgDef, Args, to_fate) of
|
|
{ok, Coerced} -> aeb_fate_abi:create_calldata(Fun, Coerced);
|
|
Errors -> Errors
|
|
end.
|
|
|
|
|
|
-spec verify_signature(Sig, Message, PubKey) -> Result
|
|
when Sig :: binary(),
|
|
Message :: iodata(),
|
|
PubKey :: pubkey(),
|
|
Result :: {ok, Outcome :: boolean()}
|
|
| {error, Reason :: term()}.
|
|
%% @doc
|
|
%% Verify a message signature given the signature, the message that was signed, and the
|
|
%% public half of the key that was used to sign.
|
|
%%
|
|
%% The result of a complete signature check is a boolean value return in an `{ok, Outcome}'
|
|
%% tuple, and any `{error, Reason}' return value is an indication that something about the
|
|
%% check failed before verification was able to pass or fail (bad key encoding or similar).
|
|
|
|
verify_signature(Sig, Message, PubKey) ->
|
|
case aeser_api_encoder:decode(PubKey) of
|
|
{account_pubkey, PK} -> verify_signature2(Sig, Message, PK);
|
|
Other -> {error, {bad_key, Other}}
|
|
end.
|
|
|
|
verify_signature2(Sig, Message, PK) ->
|
|
% Superhero salts/hashes the message before signing it, in order to protect
|
|
% the user from accidentally signing a transaction disguised as a message.
|
|
% In order to verify the signature, we have to duplicate superhero's
|
|
% salt/hash procedure here.
|
|
%
|
|
% Salt the message then hash with blake2b. See:
|
|
% 1. Erlang Blake2 blake2b/2 function: https://github.com/aeternity/eblake2/blob/60a079f00d72d1bfcc25de8e6996d28f912db3fd/src/eblake2.erl#L23-L25
|
|
% 2. SDK salting step: https://github.com/aeternity/aepp-sdk-js/blob/370f1e30064ad0239ba59931908d9aba0a2e86b6/src/utils/crypto.ts#L171-L175
|
|
% 3. SDK hashing: https://github.com/aeternity/aepp-sdk-js/blob/370f1e30064ad0239ba59931908d9aba0a2e86b6/src/utils/crypto.ts#L83-L85
|
|
Prefix = <<"aeternity Signed Message:\n">>,
|
|
{ok, PSize} = vencode(byte_size(Prefix)),
|
|
{ok, MSize} = vencode(byte_size(Message)),
|
|
Smashed = iolist_to_binary([PSize, Prefix, MSize, Message]),
|
|
{ok, Hashed} = eblake2:blake2b(32, Smashed),
|
|
Signature = <<(binary_to_integer(Sig, 16)):(64 * 8)>>,
|
|
Result = ecu_eddsa:sign_verify_detached(Signature, Hashed, PK),
|
|
{ok, Result}.
|
|
|
|
|
|
% This is Bitcoin's variable-length unsigned integer encoding
|
|
% See: https://en.bitcoin.it/wiki/Protocol_documentation#Variable_length_integer
|
|
vencode(N) when N < 0 ->
|
|
{error, {negative_N, N}};
|
|
vencode(N) when N < 16#FD ->
|
|
{ok, <<N>>};
|
|
vencode(N) when N =< 16#FFFF ->
|
|
NBytes = eu(N, 2),
|
|
{ok, <<16#FD, NBytes/binary>>};
|
|
vencode(N) when N =< 16#FFFF_FFFF ->
|
|
NBytes = eu(N, 4),
|
|
{ok, <<16#FE, NBytes/binary>>};
|
|
vencode(N) when N < (2 bsl 64) ->
|
|
NBytes = eu(N, 8),
|
|
{ok, <<16#FF, NBytes/binary>>}.
|
|
|
|
|
|
% eu = encode unsigned (little endian with a given byte width)
|
|
% means add zero bytes to the end as needed
|
|
eu(N, Size) ->
|
|
Bytes = binary:encode_unsigned(N, little),
|
|
NExtraZeros = Size - byte_size(Bytes),
|
|
ExtraZeros = << <<0>> || _ <- lists:seq(1, NExtraZeros) >>,
|
|
<<Bytes/binary, ExtraZeros/binary>>.
|
|
|
|
|
|
%%% Debug functionality
|
|
|
|
% debug_network() ->
|
|
% request("/v3/debug/network").
|
|
%
|
|
% /v3/debug/contracts/create
|
|
% /v3/debug/contracts/call
|
|
% /v3/debug/oracles/register
|
|
% /v3/debug/oracles/extend
|
|
% /v3/debug/oracles/query
|
|
% /v3/debug/oracles/respond
|
|
% /v3/debug/names/preclaim
|
|
% /v3/debug/names/claim
|
|
% /v3/debug/names/update
|
|
% /v3/debug/names/transfer
|
|
% /v3/debug/names/revoke
|
|
% /v3/debug/transactions/spend
|
|
% /v3/debug/channels/create
|
|
% /v3/debug/channels/deposit
|
|
% /v3/debug/channels/withdraw
|
|
% /v3/debug/channels/snapshot/solo
|
|
% /v3/debug/channels/set-delegates
|
|
% /v3/debug/channels/close/mutual
|
|
% /v3/debug/channels/close/solo
|
|
% /v3/debug/channels/slash
|
|
% /v3/debug/channels/settle
|
|
% /v3/debug/transactions/pending
|
|
% /v3/debug/names/commitment-id
|
|
% /v3/debug/accounts/beneficiary
|
|
% /v3/debug/accounts/node
|
|
% /v3/debug/peers
|
|
% /v3/debug/transactions/dry-run
|
|
% /v3/debug/transactions/paying-for
|
|
% /v3/debug/check-tx/pool/{hash}
|
|
% /v3/debug/token-supply/height/{height}
|
|
% /v3/debug/crash
|
|
|
|
|
|
-spec start() -> ok | {error, Reason :: term()}.
|
|
%% @doc
|
|
%% Public function for manually starting the Vanillae application.
|
|
%%
|
|
%% NOTE:
|
|
%% To start it as a subordinate service within your own supervision tree rather than
|
|
%% as a peer Erlang application within your node, add the vanillae_sup to your own
|
|
%% supervision tree.
|
|
|
|
start() ->
|
|
application:start(vanillae).
|
|
|
|
|
|
-spec stop() -> ok | {error, Reason :: term()}.
|
|
%% @doc
|
|
%% Public function for manually stopping the Vanillae application.
|
|
|
|
stop() ->
|
|
application:stop(vanillae).
|
|
|
|
|
|
-spec start(normal, term()) -> {ok, pid()}.
|
|
%% @private
|
|
|
|
start(normal, _Args) ->
|
|
vanillae_sup:start_link().
|
|
|
|
|
|
-spec stop(term()) -> ok.
|
|
%% @private
|
|
|
|
stop(_State) ->
|
|
ok.
|