diff options
author | Yigit Sever | 2021-04-15 13:35:06 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-15 13:35:06 +0300 |
commit | 6ddfaebe3ed45edb01d8c188fc5449b366ddcf55 (patch) | |
tree | 3109e4e703627a7967471d88949b96fd6a9723eb /site/content/transaction_docs.md | |
parent | 44c9e85fb2440e397514d5103f4647155ba5611b (diff) | |
download | gradecoin-6ddfaebe3ed45edb01d8c188fc5449b366ddcf55.tar.gz gradecoin-6ddfaebe3ed45edb01d8c188fc5449b366ddcf55.tar.bz2 gradecoin-6ddfaebe3ed45edb01d8c188fc5449b366ddcf55.zip |
Remove lorems and inpsumses
Diffstat (limited to 'site/content/transaction_docs.md')
-rw-r--r-- | site/content/transaction_docs.md | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/site/content/transaction_docs.md b/site/content/transaction_docs.md index 6607fe9..0526f4e 100644 --- a/site/content/transaction_docs.md +++ b/site/content/transaction_docs.md | |||
@@ -4,8 +4,23 @@ description = "Transaction documentation" | |||
4 | weight = 2 | 4 | weight = 2 |
5 | +++ | 5 | +++ |
6 | 6 | ||
7 | Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod | 7 | A transaction request between `source` and `target` to move `amount` Gradecoin. |
8 | tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At | ||
9 | vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd | ||
10 | ubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. | ||
11 | 8 | ||
9 | # Requests | ||
10 | |||
11 | ## GET | ||
12 | A HTTP `GET` request to [/transaction](/transaction) endpoint will return the current list of pending transactions. | ||
13 | |||
14 | ## POST | ||
15 | |||
16 | A HTTP `POST` request with Authorization using JWT to [/transaction](/transactions) will allow you to propose your own transactions. | ||
17 | |||
18 | |||
19 | # Fields | ||
20 | ``` | ||
21 | by: Fingerprint | ||
22 | source: Fingerprint | ||
23 | target: Fingerprint | ||
24 | amount: unsigned 16 bit integer | ||
25 | timestamp: ISO 8601 <date>T<time> | ||
26 | ``` | ||