diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/_index.md | 8 | ||||
-rw-r--r-- | content/misc_docs.md | 3 |
2 files changed, 7 insertions, 4 deletions
diff --git a/content/_index.md b/content/_index.md index da3b751..8fdc345 100644 --- a/content/_index.md +++ b/content/_index.md | |||
@@ -37,7 +37,6 @@ The first transactions of a block is called the `coinbase`. They are the **autho | |||
37 | Gradecoin uses 2048 bit RSA keypairs. | 37 | Gradecoin uses 2048 bit RSA keypairs. |
38 | 38 | ||
39 | # Services | 39 | # Services |
40 | |||
41 | Please respect the system and others. | 40 | Please respect the system and others. |
42 | Keep your request rate below a reasonable limit. | 41 | Keep your request rate below a reasonable limit. |
43 | Programming a bot is absolutely fine as long as it's not aggressively sending requests. | 42 | Programming a bot is absolutely fine as long as it's not aggressively sending requests. |
@@ -75,6 +74,10 @@ I've trained them personally using state-of-the-art neural networks running on t | |||
75 | - Making a GET request to this auxiliary endpoint will provide the current configuration of the Gradecoin network in JSON form. | 74 | - Making a GET request to this auxiliary endpoint will provide the current configuration of the Gradecoin network in JSON form. |
76 | - The information about the individual fields can be found in the [misc Page](@/misc_docs.md). | 75 | - The information about the individual fields can be found in the [misc Page](@/misc_docs.md). |
77 | 76 | ||
77 | ## /version | ||
78 | - Shows the current version of Gradecoin. | ||
79 | - You can use this to compare the live version to the version on GitHub. | ||
80 | |||
78 | # Questions | 81 | # Questions |
79 | ## This all sound complicated! | 82 | ## This all sound complicated! |
80 | - I've drawn inspiration from [actual Bitcoin transactions](https://explorer.bitcoin.com/btc) and [warp](https://github.com/seanmonstar/warp/blob/master/examples/todos.rs). The system has only 3 interfaces. It's simple once you read everything over a couple of times. | 83 | - I've drawn inspiration from [actual Bitcoin transactions](https://explorer.bitcoin.com/btc) and [warp](https://github.com/seanmonstar/warp/blob/master/examples/todos.rs). The system has only 3 interfaces. It's simple once you read everything over a couple of times. |
@@ -114,8 +117,5 @@ At the end of the _simulation_, your Gradecoin balance will be your grade. I wil | |||
114 | 117 | ||
115 | If your favourite programming language is missing please let me know 🤷? | 118 | If your favourite programming language is missing please let me know 🤷? |
116 | 119 | ||
117 | ## Can my friends play? | ||
118 | Sure! They can get in contact with me until the end of the testnet phase. | ||
119 | |||
120 | ## How and or Why? | 120 | ## How and or Why? |
121 | - [Built](https://xkcd.com/2314/), [with](https://lofi.cafe/) [Rust](https://xkcd.com/2418/) | 121 | - [Built](https://xkcd.com/2314/), [with](https://lofi.cafe/) [Rust](https://xkcd.com/2418/) |
diff --git a/content/misc_docs.md b/content/misc_docs.md index 222601b..7d7b73d 100644 --- a/content/misc_docs.md +++ b/content/misc_docs.md | |||
@@ -31,3 +31,6 @@ The [/config](/config) endpoint will return the current parameters that Gradecoi | |||
31 | - Each key will be the fingerprint of a bot. | 31 | - Each key will be the fingerprint of a bot. |
32 | - Each value will be another JSON object. Currently, it only contains one self-explanatory field: `starting_balance`. | 32 | - Each value will be another JSON object. Currently, it only contains one self-explanatory field: `starting_balance`. |
33 | 33 | ||
34 | |||
35 | # Version | ||
36 | The [/version](/version) endpoint will return the current version that's currently live on this server. | ||