upvest v0.1.1 Upvest.Clientele.Transaction View Source
Handles operations related to user transactions
You can:
- Create new transaction
- List all transactions
- List specific number of transactions
For more details see https://doc.upvest.co/reference#kms_transaction_list
Link to this section Summary
Functions
List all Transaction
List specific number of Transaction
Retrive a(n) Transaction by its ID
Link to this section Types
Link to this section Functions
Link to this function
create(client, password, wallet_id, asset_id, quantity, fee, recipient)
View Sourcecreate( Upvest.Client.t(), binary(), binary(), binary(), non_neg_integer(), non_neg_integer(), binary() ) :: {:ok, Upvest.Clientele.Transaction.t()} | {:error, Upvest.error()}
Link to this function
list(client)
View Sourcelist(Upvest.Client.t()) :: {:ok, [Upvest.Clientele.Transaction.t()]} | {:error, Upvest.error()}
List all Transaction
Link to this function
list_n(client, count)
View Sourcelist_n(Upvest.Client.t(), non_neg_integer()) :: {:ok, [Upvest.Clientele.Transaction.t()]} | {:error, Upvest.error()}
List specific number of Transaction
Link to this function
retrieve(client, id)
View Sourceretrieve(Upvest.Client.t(), binary()) :: {:ok, Upvest.Clientele.Transaction.t()} | {:error, Upvest.error()}
Retrive a(n) Transaction by its ID