📝 finalize documentation for v1
parent
55b6939914
commit
4af1d136d0
|
|
@ -3,4 +3,5 @@
|
||||||
0.05: Lot of cleanup
|
0.05: Lot of cleanup
|
||||||
0.06: Creating app v1
|
0.06: Creating app v1
|
||||||
0.07: Finishing touches for v1
|
0.07: Finishing touches for v1
|
||||||
0.09: Clean up
|
0.09: Clean up
|
||||||
|
0.10: Finalize documentation for v1
|
||||||
|
|
@ -21,6 +21,18 @@ Martin Zwigl
|
||||||
|
|
||||||
## Parts Infos
|
## Parts Infos
|
||||||
|
|
||||||
|
### App-Loader web-interface
|
||||||
|
|
||||||
|
- Binance
|
||||||
|
- Find docs here [Binance API](https://www.binance.com/en/binance-api)
|
||||||
|
- For Binance use symbols like BTC,ETH,STORJ
|
||||||
|
- For the calc counterpart use USDT (I don't know why USD is measured on the stablecoin) or EUR or other fiat currency
|
||||||
|
- Coinstats
|
||||||
|
- Find docs here [Coinstats API](https://openapi.coinstats.app/)
|
||||||
|
- Get an API key at the website. Free is worth 1Mio token, which in turn is worth around 250k - 300k requests per month
|
||||||
|
- Supply crypto token in the form of its IDs like bitcoin,ethereum,storj
|
||||||
|
- It is not necessary to re-upload the app when uploading data. Data is read with app start
|
||||||
|
|
||||||
### Clock-Info
|
### Clock-Info
|
||||||
|
|
||||||
- Updates prices with the free Binance API
|
- Updates prices with the free Binance API
|
||||||
|
|
@ -49,7 +61,6 @@ Martin Zwigl
|
||||||
|
|
||||||
## Possible Improvements / TODOs
|
## Possible Improvements / TODOs
|
||||||
|
|
||||||
- Pause HTTP request cycle during show of Details or Lows/Highs
|
|
||||||
- Better choosing of fonts for more space
|
- Better choosing of fonts for more space
|
||||||
- set UI properly to have back button next to widgets
|
- set UI properly to have back button next to widgets
|
||||||
- clean-up code structure
|
- clean-up code structure
|
||||||
|
|
@ -6,13 +6,13 @@
|
||||||
<h3>Settings for Crypto-Coin Info</h3>
|
<h3>Settings for Crypto-Coin Info</h3>
|
||||||
<p>Input for coins to request and calculate against pair.</p>
|
<p>Input for coins to request and calculate against pair.</p>
|
||||||
<p>
|
<p>
|
||||||
<label for="traceTokens">Traceable tokens - comma delimited</label><br>
|
<label for="traceTokens">Trace from Binance eg. BTC,ETH,STORj</label><br>
|
||||||
<input id="traceTokens" onkeyup="checkInput()" style="width:90%; margin: 3px"></input>
|
<input id="traceTokens" onkeyup="checkInput()" style="width:90%; margin: 3px"></input>
|
||||||
|
|
||||||
<label for="calcPair">Calc price against what currency</label><br>
|
<label for="calcPair">Calc price against what currency eg. USDT or EUR</label><br>
|
||||||
<input id="calcPair" onkeyup="checkInput()" style="width:90%; margin: 3px"></input>
|
<input id="calcPair" onkeyup="checkInput()" style="width:90%; margin: 3px"></input>
|
||||||
|
|
||||||
<label for="csTokens">Traceable tokens - comma delimited (from CoinStats)</label><br>
|
<label for="csTokens">Trace from Coinstats eg. bitcoin,ethereum,storj</label><br>
|
||||||
<input id="csTokens" onkeyup="checkInput()" style="width:90%; margin: 3px"></input>
|
<input id="csTokens" onkeyup="checkInput()" style="width:90%; margin: 3px"></input>
|
||||||
|
|
||||||
<label for="csApiKey">CoinStats API Key</label><br>
|
<label for="csApiKey">CoinStats API Key</label><br>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ "id": "coin_info",
|
{ "id": "coin_info",
|
||||||
"name": "Crypto-Coins Info",
|
"name": "Crypto-Coins Info",
|
||||||
"shortName":"Coins Info",
|
"shortName":"Coins Info",
|
||||||
"version": "0.09",
|
"version": "0.10",
|
||||||
"description": "Crypto-Coins Infos with the help of the Binance API",
|
"description": "Crypto-Coins Infos with the help of the Binance API",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "clkinfo",
|
"tags": "clkinfo",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue