bittensor-cli 9.4.4__py3-none-any.whl → 9.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. bittensor_cli/cli.py +3 -10
  2. bittensor_cli/src/bittensor/templates/main-filters.j2 +24 -0
  3. bittensor_cli/src/bittensor/templates/main-header.j2 +36 -0
  4. bittensor_cli/src/bittensor/templates/neuron-details.j2 +111 -0
  5. bittensor_cli/src/bittensor/templates/price-multi.j2 +113 -0
  6. bittensor_cli/src/bittensor/templates/price-single.j2 +99 -0
  7. bittensor_cli/src/bittensor/templates/subnet-details-header.j2 +49 -0
  8. bittensor_cli/src/bittensor/templates/subnet-details.j2 +32 -0
  9. bittensor_cli/src/bittensor/templates/subnet-metrics.j2 +57 -0
  10. bittensor_cli/src/bittensor/templates/subnets-table.j2 +28 -0
  11. bittensor_cli/src/bittensor/templates/table.j2 +267 -0
  12. bittensor_cli/src/bittensor/templates/view.css +1058 -0
  13. bittensor_cli/src/bittensor/templates/view.j2 +43 -0
  14. bittensor_cli/src/bittensor/templates/view.js +1053 -0
  15. bittensor_cli/src/bittensor/utils.py +8 -38
  16. bittensor_cli/src/commands/stake/add.py +1 -1
  17. bittensor_cli/src/commands/stake/remove.py +1 -1
  18. bittensor_cli/src/commands/subnets/price.py +48 -289
  19. bittensor_cli/src/commands/sudo.py +10 -6
  20. bittensor_cli/src/commands/view.py +24 -2615
  21. bittensor_cli/src/commands/wallets.py +1 -7
  22. {bittensor_cli-9.4.4.dist-info → bittensor_cli-9.5.1.dist-info}/METADATA +5 -5
  23. bittensor_cli-9.5.1.dist-info/RECORD +48 -0
  24. bittensor_cli-9.4.4.dist-info/RECORD +0 -35
  25. {bittensor_cli-9.4.4.dist-info → bittensor_cli-9.5.1.dist-info}/WHEEL +0 -0
  26. {bittensor_cli-9.4.4.dist-info → bittensor_cli-9.5.1.dist-info}/entry_points.txt +0 -0
  27. {bittensor_cli-9.4.4.dist-info → bittensor_cli-9.5.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,43 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Bittensor CLI Interface</title>
6
+ <style>
7
+ {% include 'view.css' %}
8
+ </style>
9
+ </head>
10
+ <body>
11
+ <!-- Embedded JSON data used by JS -->
12
+ <div id="initial-data"
13
+ data-wallet-info='{wallet_info_json}'
14
+ data-subnets='{subnets_json}'>
15
+ </div>
16
+ <div id="splash-screen">
17
+ <div class="splash-content">
18
+ <div class="title-row">
19
+ <h1 class="splash-title">Btcli View</h1>
20
+ <span class="beta-text">Beta</span>
21
+ </div>
22
+ </div>
23
+ </div>
24
+
25
+ <!-- Main content area -->
26
+ <div id="main-content">
27
+ {% include 'main-header.j2' %}
28
+ {% include 'main-filters.j2' %}
29
+ {% include 'subnets-table.j2' %}
30
+ </div>
31
+
32
+ <!-- Subnet details page (hidden by default) -->
33
+ <div id="subnet-page" style="display: none;">
34
+ {% include 'subnet-details-header.j2' %}
35
+ {% include 'subnet-metrics.j2' %}
36
+ {% include 'neuron-details.j2' %}
37
+ </div>
38
+
39
+ <script>
40
+ {% include 'view.js' %}
41
+ </script>
42
+ </body>
43
+ </html>