Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ It's worth noting that this is a forked version of dansinclair25's original [duc
- `/auth/<username>?password=<password>` - check username's password

- Transactions
- `/transactions` - return **all** transactions [example](#transactions)
- `/user_transactions/<username>` - return transactions related to username
- `/transactions` - return **all** transactions [example](#transactions), you can also use the URL parameter `?username=<username>` to return transactions of a specific username.
- `/user_transactions/<username>?limit=[Integer]` - return transactions related to username, use limit parameter to load more than 5 transaction at a time.
- `/id_transactions/<id>` - return a transaction with that id
- `/transactions/<hash>` - return a transaction with that hash [example](#transactionshash)
- `/transaction?username=<username>&password=<password>&recipient=<recipient>&amount=<amount>&memo=memo` - transfer funds from username to recipient

- Miners
- `/miners` - return **all** miners [example](#miners)
- `/miners` - return **all** miners [example](#miners), you can also use the URL parameter `?username=<username>` to return transactions of a specific username.
- `/miners/<username>` - return username's miners
- `/mining_key` - set or check user's mining key [example](#mining_key)

Expand Down