meshtensor-cli 9.18.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 (74) hide show
  1. meshtensor_cli/__init__.py +22 -0
  2. meshtensor_cli/cli.py +10742 -0
  3. meshtensor_cli/doc_generation_helper.py +4 -0
  4. meshtensor_cli/src/__init__.py +1085 -0
  5. meshtensor_cli/src/commands/__init__.py +0 -0
  6. meshtensor_cli/src/commands/axon/__init__.py +0 -0
  7. meshtensor_cli/src/commands/axon/axon.py +132 -0
  8. meshtensor_cli/src/commands/crowd/__init__.py +0 -0
  9. meshtensor_cli/src/commands/crowd/contribute.py +621 -0
  10. meshtensor_cli/src/commands/crowd/contributors.py +200 -0
  11. meshtensor_cli/src/commands/crowd/create.py +783 -0
  12. meshtensor_cli/src/commands/crowd/dissolve.py +219 -0
  13. meshtensor_cli/src/commands/crowd/refund.py +233 -0
  14. meshtensor_cli/src/commands/crowd/update.py +418 -0
  15. meshtensor_cli/src/commands/crowd/utils.py +124 -0
  16. meshtensor_cli/src/commands/crowd/view.py +991 -0
  17. meshtensor_cli/src/commands/governance/__init__.py +0 -0
  18. meshtensor_cli/src/commands/governance/governance.py +794 -0
  19. meshtensor_cli/src/commands/liquidity/__init__.py +0 -0
  20. meshtensor_cli/src/commands/liquidity/liquidity.py +699 -0
  21. meshtensor_cli/src/commands/liquidity/utils.py +202 -0
  22. meshtensor_cli/src/commands/proxy.py +700 -0
  23. meshtensor_cli/src/commands/stake/__init__.py +0 -0
  24. meshtensor_cli/src/commands/stake/add.py +799 -0
  25. meshtensor_cli/src/commands/stake/auto_staking.py +306 -0
  26. meshtensor_cli/src/commands/stake/children_hotkeys.py +865 -0
  27. meshtensor_cli/src/commands/stake/claim.py +770 -0
  28. meshtensor_cli/src/commands/stake/list.py +738 -0
  29. meshtensor_cli/src/commands/stake/move.py +1211 -0
  30. meshtensor_cli/src/commands/stake/remove.py +1466 -0
  31. meshtensor_cli/src/commands/stake/wizard.py +323 -0
  32. meshtensor_cli/src/commands/subnets/__init__.py +0 -0
  33. meshtensor_cli/src/commands/subnets/mechanisms.py +515 -0
  34. meshtensor_cli/src/commands/subnets/price.py +733 -0
  35. meshtensor_cli/src/commands/subnets/subnets.py +2908 -0
  36. meshtensor_cli/src/commands/sudo.py +1294 -0
  37. meshtensor_cli/src/commands/tc/__init__.py +0 -0
  38. meshtensor_cli/src/commands/tc/tc.py +190 -0
  39. meshtensor_cli/src/commands/treasury/__init__.py +0 -0
  40. meshtensor_cli/src/commands/treasury/treasury.py +194 -0
  41. meshtensor_cli/src/commands/view.py +354 -0
  42. meshtensor_cli/src/commands/wallets.py +2311 -0
  43. meshtensor_cli/src/commands/weights.py +467 -0
  44. meshtensor_cli/src/meshtensor/__init__.py +0 -0
  45. meshtensor_cli/src/meshtensor/balances.py +313 -0
  46. meshtensor_cli/src/meshtensor/chain_data.py +1263 -0
  47. meshtensor_cli/src/meshtensor/extrinsics/__init__.py +0 -0
  48. meshtensor_cli/src/meshtensor/extrinsics/mev_shield.py +174 -0
  49. meshtensor_cli/src/meshtensor/extrinsics/registration.py +1861 -0
  50. meshtensor_cli/src/meshtensor/extrinsics/root.py +550 -0
  51. meshtensor_cli/src/meshtensor/extrinsics/serving.py +255 -0
  52. meshtensor_cli/src/meshtensor/extrinsics/transfer.py +239 -0
  53. meshtensor_cli/src/meshtensor/meshtensor_interface.py +2598 -0
  54. meshtensor_cli/src/meshtensor/minigraph.py +254 -0
  55. meshtensor_cli/src/meshtensor/networking.py +12 -0
  56. meshtensor_cli/src/meshtensor/templates/main-filters.j2 +24 -0
  57. meshtensor_cli/src/meshtensor/templates/main-header.j2 +36 -0
  58. meshtensor_cli/src/meshtensor/templates/neuron-details.j2 +111 -0
  59. meshtensor_cli/src/meshtensor/templates/price-multi.j2 +113 -0
  60. meshtensor_cli/src/meshtensor/templates/price-single.j2 +99 -0
  61. meshtensor_cli/src/meshtensor/templates/subnet-details-header.j2 +49 -0
  62. meshtensor_cli/src/meshtensor/templates/subnet-details.j2 +32 -0
  63. meshtensor_cli/src/meshtensor/templates/subnet-metrics.j2 +57 -0
  64. meshtensor_cli/src/meshtensor/templates/subnets-table.j2 +28 -0
  65. meshtensor_cli/src/meshtensor/templates/table.j2 +267 -0
  66. meshtensor_cli/src/meshtensor/templates/view.css +1058 -0
  67. meshtensor_cli/src/meshtensor/templates/view.j2 +43 -0
  68. meshtensor_cli/src/meshtensor/templates/view.js +1053 -0
  69. meshtensor_cli/src/meshtensor/utils.py +2007 -0
  70. meshtensor_cli/version.py +23 -0
  71. meshtensor_cli-9.18.1.dist-info/METADATA +261 -0
  72. meshtensor_cli-9.18.1.dist-info/RECORD +74 -0
  73. meshtensor_cli-9.18.1.dist-info/WHEEL +4 -0
  74. meshtensor_cli-9.18.1.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,23 @@
1
+ import importlib.metadata
2
+ import re
3
+
4
+
5
+ def version_as_int(version):
6
+ match = re.match(r"^\d+\.\d+\.\d+", version)
7
+ if not match:
8
+ raise ValueError(f"Invalid version format: {version}")
9
+ core_version = match.group(0)
10
+ version_split = core_version.split(".")
11
+ version_info = tuple(int(part) for part in version_split)
12
+ version_int_base = 1000
13
+ assert max(version_info) < version_int_base
14
+
15
+ version_as_int_: int = sum(
16
+ e * (version_int_base**i) for i, e in enumerate(reversed(version_info))
17
+ )
18
+ assert version_as_int_ < 2**31 # fits in int32
19
+ return version_as_int_
20
+
21
+
22
+ __version__ = importlib.metadata.version("meshtensor-cli")
23
+ __version_as_int__ = version_as_int(__version__)
@@ -0,0 +1,261 @@
1
+ Metadata-Version: 2.4
2
+ Name: meshtensor-cli
3
+ Version: 9.18.1
4
+ Summary: Meshtensor CLI
5
+ Author: meshtensor.com
6
+ Requires-Python: >=3.9
7
+ Description-Content-Type: text/markdown
8
+ License-Expression: MIT
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: End Users/Desktop
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Scientific/Engineering
19
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Utilities
22
+ Requires-Dist: wheel
23
+ Requires-Dist: async-substrate-interface>=1.6.0
24
+ Requires-Dist: aiohttp~=3.13
25
+ Requires-Dist: backoff~=2.2.1
26
+ Requires-Dist: meshtensor-drand>=1.2.0
27
+ Requires-Dist: GitPython>=3.0.0
28
+ Requires-Dist: netaddr~=1.3.0
29
+ Requires-Dist: numpy>=2.0.1,<3.0.0
30
+ Requires-Dist: Jinja2
31
+ Requires-Dist: pycryptodome>=3.0.0,<4.0.0
32
+ Requires-Dist: PyYAML~=6.0
33
+ Requires-Dist: rich>=13.7,<15.0
34
+ Requires-Dist: scalecodec==1.2.12
35
+ Requires-Dist: typer>=0.16
36
+ Requires-Dist: meshtensor-wallet>=4.0.0
37
+ Requires-Dist: packaging
38
+ Requires-Dist: plotille>=5.0.0
39
+ Requires-Dist: plotly>=6.0.0
40
+ Requires-Dist: torch>=1.13.1,<3.0 ; extra == "cuda"
41
+ Project-URL: Repository, https://github.com/opentensor/meshcli
42
+ Project-URL: homepage, https://github.com/opentensor/meshcli
43
+ Provides-Extra: cuda
44
+
45
+ <div align="center">
46
+
47
+ # Meshtensor CLI <!-- omit in toc -->
48
+ [![Discord Chat](https://img.shields.io/discord/308323056592486420.svg)](https://discord.gg/meshtensor)
49
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
50
+ [![PyPI version](https://badge.fury.io/py/meshtensor_cli.svg)](https://badge.fury.io/py/meshtensor_cli)
51
+
52
+ ---
53
+
54
+ ## Internet-scale Neural Networks <!-- omit in toc -->
55
+
56
+ [SDK](https://github.com/opentensor/meshtensor/tree/master) • [Wallet](https://github.com/opentensor/btwallet) • [Research](https://meshtensor.com/whitepaper)
57
+
58
+ </div>
59
+
60
+ - [Documentation](#documentation)
61
+ - [Install on macOS and Linux](#install-on-macos-and-linux)
62
+ - [Install from source](#install-from-source)
63
+ - [Install on Windows](#install-on-windows)
64
+ - [Verify the installation](#verify-the-installation)
65
+ - [Configuration](#configuration)
66
+ - [Example config file](#example-config-file)
67
+ - [License](#license)
68
+
69
+ ---
70
+
71
+ The Meshtensor CLI, `meshcli`, is a powerful command line tool for the Meshtensor platform. You can use it on any macOS, Linux or WSL terminal to manage all common operations like creating a wallet, registering a subnet or a neuron, delegating your MESH, viewing Senate proposals and voting for them, and much more. Help information can be invoked for every command and option with `--help` option.
72
+
73
+ ![meshcli screenshot](./assets/meshcli-screenshot.png)
74
+
75
+ ---
76
+
77
+ ## Documentation
78
+
79
+ Installation steps are described below. For a full documentation on how to use `meshcli`, see the [Meshtensor CLI section](https://docs.meshtensor.com/meshcli) on the developer documentation site.
80
+
81
+ ---
82
+
83
+ ## Install on macOS and Linux
84
+
85
+ You can install `meshcli` on your local machine directly from source, PyPI, or Homebrew.
86
+ **Make sure you verify your installation after you install**.
87
+
88
+ ### For macOS users
89
+ Note that the macOS preinstalled CPython installation is compiled with LibreSSL instead of OpenSSL. There are a number
90
+ of issues with LibreSSL, and as such is not fully supported by the libraries used by meshcli. Thus we highly recommend, if
91
+ you are using a Mac, to first install Python from [Homebrew](https://brew.sh/). Additionally, the Rust FFI bindings
92
+ [if installing from precompiled wheels (default)] require the Homebrew-installed OpenSSL pacakge. If you choose to use
93
+ the preinstalled Python version from macOS, things may not work completely.
94
+
95
+
96
+ ### Install from [PyPI](https://pypi.org/project/meshtensor/)
97
+
98
+ Run
99
+ ```
100
+ pip install -U meshtensor-cli
101
+ ```
102
+
103
+ Alternatively, if you prefer to use [uv](https://pypi.org/project/uv/):
104
+ ```
105
+ uv pip install meshtensor-cli
106
+ ```
107
+
108
+ ### Install from [Homebrew](https://formulae.brew.sh/formula/meshcli#default)
109
+
110
+ ```shell
111
+ brew install meshcli
112
+ ```
113
+
114
+ ### Install from source
115
+
116
+ 1. Create and activate a virtual environment.
117
+
118
+ ```bash
119
+ python3 -m venv meshcli_venv
120
+ source meshcli_venv/bin/activate
121
+ ```
122
+
123
+ 2. Clone the Meshtensor CLI repo.
124
+
125
+ ```bash
126
+ git clone https://github.com/opentensor/meshcli.git
127
+ ```
128
+
129
+ 3. `cd` into `meshcli` directory.
130
+
131
+ ```bash
132
+ cd meshcli
133
+ ```
134
+
135
+ 4. Install
136
+
137
+
138
+ ```bash
139
+ pip3 install .
140
+ ```
141
+
142
+ ### Also install meshtensor (SDK)
143
+
144
+ If you prefer to install the meshcli alongside the meshtensor SDK, you can do this in a single command with
145
+
146
+ ```
147
+ pip install -U meshtensor[cli]
148
+ ```
149
+
150
+ ---
151
+
152
+ ## Install on Windows
153
+
154
+ To install and run Meshtensor SDK on Windows you must install [**WSL 2** (Windows Subsystem for Linux)](https://learn.microsoft.com/en-us/windows/wsl/about) on Windows and select [Ubuntu Linux distribution](https://github.com/ubuntu/WSL/blob/main/docs/guides/install-ubuntu-wsl2.md).
155
+
156
+ After you installed the above, follow the same installation steps described above in [Install on macOS and Linux](#install-on-macos-and-linux).
157
+
158
+ **ALERT**: **Limited support on Windows for Meshtensor operations**
159
+ While wallet transactions like delegating, transfer, registering, staking can be performed on a Windows machine using WSL 2, the subnet mining and subnet validating operations are not recommended and are not supported on Windows machines.
160
+
161
+ ---
162
+
163
+ ## Verify the installation
164
+
165
+ ```bash
166
+ meshcli --version
167
+ ```
168
+
169
+ The above command will show you the version of the `meshcli` you just installed.
170
+
171
+ ---
172
+
173
+ ## Configuration
174
+
175
+ You can set the commonly used values, such as your hotkey and coldkey names, the default chain URL or the network name you use, and more, in `config.yml`. You can override these values by explicitly passing them in the command line for any `meshcli` command.
176
+
177
+ ### Example config file
178
+
179
+ The default location of the config file is: `~/.meshtensor/config.yml`. An example of a `config.yml` is shown below:
180
+
181
+ ```yaml
182
+ network: local
183
+ use_cache: true
184
+ dashboard_path: null
185
+ disk_cache: true
186
+ rate_tolerance: null
187
+ safe_staking: true
188
+ wallet_hotkey: default
189
+ wallet_name: coldkey-user1
190
+ wallet_path: ~/.meshtensor/wallets
191
+ metagraph_cols:
192
+ ACTIVE: true
193
+ AXON: true
194
+ COLDKEY: true
195
+ CONSENSUS: true
196
+ DIVIDENDS: true
197
+ EMISSION: true
198
+ HOTKEY: true
199
+ INCENTIVE: true
200
+ RANK: true
201
+ STAKE: true
202
+ TRUST: true
203
+ UID: true
204
+ UPDATED: true
205
+ VAL: true
206
+ VTRUST: true
207
+ ```
208
+
209
+ **For more help:**
210
+
211
+ ```bash
212
+ meshcli config --help
213
+ ```
214
+
215
+ ### ENV VARS
216
+ BTCLI accepts a few environment variables that can alter how it works:
217
+ - USE_TORCH (default 0): If set to 1, will use torch instead of numpy
218
+ - DISK_CACHE (default 0, also settable in config): If set to 1 (or set in config), will use disk caching for various safe-cachable substrate
219
+ calls (such as block number to block hash mapping), which can speed up subsequent calls.
220
+ - BTCLI_CONFIG_PATH (default `~/.meshtensor/config.yml`): This will set the config file location, creating if it does not exist.
221
+ - BTCLI_DEBUG_FILE (default `~/.meshtensor/debug.txt`): The file stores the most recent's command's debug log.
222
+
223
+ ---
224
+
225
+ ## Debugging
226
+ If a command is failing with an odd error, you can usually rerun the command with `--verbose` for a more detailed output
227
+ of any errors/exceptions that occur. This should be done prior to reporting the issue, as it helps us substantially in
228
+ determining the root cause of issues.
229
+
230
+ Additionally, you can pull a debug log.
231
+
232
+ BTCLI will store a debug log for every command run. This file is overwritten for each new command run. The default location
233
+ of this file is `~/.meshtensor/debug.txt` and can be set with the `BTCLI_DEBUG_FILE` env var (see above section).
234
+
235
+ The debug log will **NOT** contain any sensitive data (private keys), and is intended to be sent to the developers
236
+ for debugging. This file contains basic information about the command being run, the config, and the back and forth of requests and responses
237
+ to and from the chain.
238
+
239
+ If you encounter an issue, and would like to save the file somewhere it won't be overwritten, run `meshcli --debug`,
240
+ and set the save file location. We recommend doing this first before anything, and then starting your debugging with
241
+ us on our [Discord](https://discord.gg/meshtensor), or by opening an issue on [GitHub](https://github.com/opentensor/meshcli/issues/new)
242
+ (where you can also upload your debug file).
243
+
244
+
245
+ Steps:
246
+ 1. Re-run the command with `--verbose` at the end, e.g. `meshcli st remove --verbose`
247
+ 2. Run `meshcli --debug` to save the debug log
248
+ 3. Report the issue on GitHub or Discord
249
+
250
+ ---
251
+
252
+ ## License
253
+ The MIT License (MIT)
254
+ Copyright © 2024 The Opentensor Foundation
255
+
256
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
257
+
258
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
259
+
260
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
261
+
@@ -0,0 +1,74 @@
1
+ meshtensor_cli/__init__.py,sha256=Lpv4NkbAQgwrfqFOnTMuR_S-fqGdaWCSLhxnFnGTHM0,1232
2
+ meshtensor_cli/cli.py,sha256=e5FC4MACOyAfN3hjiP6LdliIslSPRKOFPCsXGlcHsAo,409953
3
+ meshtensor_cli/doc_generation_helper.py,sha256=yVVJY5RlBfhoUz_vjDkwOgp84Kq--sPhApPW8R8hLck,92
4
+ meshtensor_cli/version.py,sha256=CN_dzOYYqIdv5N2fGtiGwt_p2g5702C2DVMoZlG7Vr4,721
5
+ meshtensor_cli/src/__init__.py,sha256=cW_e_amvZQJKzLgqhGcWrcQTHjrirQ6reDoII0bX_0c,48733
6
+ meshtensor_cli/src/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ meshtensor_cli/src/commands/proxy.py,sha256=ellTFM79kmcPZQVAmE65glF6KyK6rqtbktgxWBNyjwE,23898
8
+ meshtensor_cli/src/commands/sudo.py,sha256=p5v2sv82dWR90HcFKh2NoB-BbY5Bi9I6Y2T6vEjg49o,47581
9
+ meshtensor_cli/src/commands/view.py,sha256=Zv52vHVJLXhLokLU6p3ATyDufwOEFJSUe-hHGEzUaJE,12559
10
+ meshtensor_cli/src/commands/wallets.py,sha256=mWC1GQO4BhL9egPvYsaCgW0BHSV5JRLAGRD72u5Lrpg,81037
11
+ meshtensor_cli/src/commands/weights.py,sha256=C4Y3Y6stXjdGLHDkASwGcdJ3yLKadjuGntRn2S97TRE,16558
12
+ meshtensor_cli/src/commands/axon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ meshtensor_cli/src/commands/axon/axon.py,sha256=RgwSR7cxg0iOUUJ2tj-3Rif1Rap1LKeasL7X0lizVKo,4118
14
+ meshtensor_cli/src/commands/crowd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ meshtensor_cli/src/commands/crowd/contribute.py,sha256=l5VH-C-5zmwB7aI9dJLLGC2YOCiwlCks4H4YntUM4ew,23440
16
+ meshtensor_cli/src/commands/crowd/contributors.py,sha256=TMGn8Vmj9tzBU6QRjPzn_2sRydkFKZegN4qxJ2sgU98,6248
17
+ meshtensor_cli/src/commands/crowd/create.py,sha256=GcFwDPXd6NQRKAIMilo5wLsrovRQ1dddpeB54SkAsZw,30443
18
+ meshtensor_cli/src/commands/crowd/dissolve.py,sha256=FU_qrjCESFoc4MBeBj0G0-H_vcHg9mn51DF4WoLNH7o,7790
19
+ meshtensor_cli/src/commands/crowd/refund.py,sha256=mKMaymSvKNHUsObMcW7jhbO2XXRZZooaw_POuCalpzM,8664
20
+ meshtensor_cli/src/commands/crowd/update.py,sha256=8kNGApzS-mdrSgx7RpgzblNyQAm61l90F7SwXt6S12o,16671
21
+ meshtensor_cli/src/commands/crowd/utils.py,sha256=JMNNX3rVWTB_5N_JBXlAjEmPU8plQAHaFK6aiLDsoCk,4579
22
+ meshtensor_cli/src/commands/crowd/view.py,sha256=Ql9OAmDF6sj3gbACc2h4uA2skVI2_vjOSgpXZ07EbZs,36381
23
+ meshtensor_cli/src/commands/governance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ meshtensor_cli/src/commands/governance/governance.py,sha256=NHglwuuHlzkPlOE90SXZrLqnWFrUWsS3YP1AP7URSKc,26966
25
+ meshtensor_cli/src/commands/liquidity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ meshtensor_cli/src/commands/liquidity/liquidity.py,sha256=LBnDqc3B9yVS3cUWDKEalNpw5X9lSNK2Qtjj8zJcwuk,23938
27
+ meshtensor_cli/src/commands/liquidity/utils.py,sha256=pNCwE78xft4qakTa_2YYS9pd7z3wuY5g-jcc-0W7mqo,6474
28
+ meshtensor_cli/src/commands/stake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ meshtensor_cli/src/commands/stake/add.py,sha256=_5FzEVsbe5HV_59uYSchJ2P1UQm3HHHLUvEck42Ia5w,31568
30
+ meshtensor_cli/src/commands/stake/auto_staking.py,sha256=uc_1YO10d4OctGLJZm_ybjENGawvBRRvl4BeWVavQHE,10040
31
+ meshtensor_cli/src/commands/stake/children_hotkeys.py,sha256=53a2OwDHzbfsO-4snPrq_IzWzwLhwKq0RetJHDqyUsM,32581
32
+ meshtensor_cli/src/commands/stake/claim.py,sha256=CA9FKKD81tLHW-pQp4WYR-eT2-3IgmTARZEVYDKX1qI,26831
33
+ meshtensor_cli/src/commands/stake/list.py,sha256=0nFC4FDIdcBF2MExPbIAYsPyUKFdxtAQjw70Tqox3pw,31458
34
+ meshtensor_cli/src/commands/stake/move.py,sha256=oVGkw8TV_u1efV-5FIoQgt8Q4lKrYaBuU66R3jrYwNk,44462
35
+ meshtensor_cli/src/commands/stake/remove.py,sha256=p6xgv1o9WlYO4kS9XQuSoDWNt8u7CLPO4kzpa49OXeE,53316
36
+ meshtensor_cli/src/commands/stake/wizard.py,sha256=1sDqWiCLDqcPzUxpOh2quvNJZMtVV8JeWDR7UnkaHb4,11676
37
+ meshtensor_cli/src/commands/subnets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ meshtensor_cli/src/commands/subnets/mechanisms.py,sha256=b-9cJ_gO8DULpkKgzJaPMt6BV-S7coR5LVvdls5A-H0,16827
39
+ meshtensor_cli/src/commands/subnets/price.py,sha256=fPYmVmHJMts-pmU3udTTaiDd70IKPCh5iZXeszct4R4,26151
40
+ meshtensor_cli/src/commands/subnets/subnets.py,sha256=KOj5t3Mq4WrUx1dkdfv7pzCDvxn-UN8Vd4ta9uIiX3c,112606
41
+ meshtensor_cli/src/commands/tc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ meshtensor_cli/src/commands/tc/tc.py,sha256=A1PtfTFnxDPzKTwNCau9CrcAG2g3m_ALNda7__W0Kn0,5565
43
+ meshtensor_cli/src/commands/treasury/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ meshtensor_cli/src/commands/treasury/treasury.py,sha256=NN9anS68ApheOlJLB_fRlLjv27WMTnyf4xTgsNW-PaU,6103
45
+ meshtensor_cli/src/meshtensor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ meshtensor_cli/src/meshtensor/balances.py,sha256=OuboJ89yX0icAHzeqp4dKG92JvUX7PdCBavxTJQxwcE,11590
47
+ meshtensor_cli/src/meshtensor/chain_data.py,sha256=julcRvmVv1VbnPRuYCSpSH0N6HA8RISilTiXmIYH2Jg,46940
48
+ meshtensor_cli/src/meshtensor/meshtensor_interface.py,sha256=Y2IzKT-BSthkgDgs52hOO2ubbw1MdfSrS54wkxrtpK4,97788
49
+ meshtensor_cli/src/meshtensor/minigraph.py,sha256=plCt5NH3HuLlUh_11GhEGnHJC9eFfwJxn1qhxMr4uzw,10499
50
+ meshtensor_cli/src/meshtensor/networking.py,sha256=pZLMs8YXpZzDMLXWMBb_Bj6TVkm_q9khyY-lnbwVMuE,462
51
+ meshtensor_cli/src/meshtensor/utils.py,sha256=EbWb0eKIBPSwU_a8E6fDrsfXcuF4jz0Z5utSpeacpf4,65965
52
+ meshtensor_cli/src/meshtensor/extrinsics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ meshtensor_cli/src/meshtensor/extrinsics/mev_shield.py,sha256=6wAIGwhtnwQOgwYQSp8znw4_48u8LSbSRccyeH0DI7Q,6069
54
+ meshtensor_cli/src/meshtensor/extrinsics/registration.py,sha256=hvI5DPRcZaRd05-oPOQQDSSGNf3PB63HZo-w1p0GGIM,66465
55
+ meshtensor_cli/src/meshtensor/extrinsics/root.py,sha256=Sqkcxj3BVLtS0K96oPspQxNoF82n9zdm7fzZXR9s9FQ,21028
56
+ meshtensor_cli/src/meshtensor/extrinsics/serving.py,sha256=LAFxGQupjM8zx7PVl3tH9l4WB8ZgeEIwRWyGhoKS8EY,9229
57
+ meshtensor_cli/src/meshtensor/extrinsics/transfer.py,sha256=qfCRguBAKHziGrEZUaod5a3UAG_Ph4TCKXULLiJX8T4,10567
58
+ meshtensor_cli/src/meshtensor/templates/main-filters.j2,sha256=ZM0l2exr6FKqw86GRyHHtw-h8Y5Ckgx-SPc-48gZoxI,914
59
+ meshtensor_cli/src/meshtensor/templates/main-header.j2,sha256=aZwB9NeEjNr0pM5mPYTYeky_031zAu6yErIMiwTPcwE,1684
60
+ meshtensor_cli/src/meshtensor/templates/neuron-details.j2,sha256=O_Mhg2E04BzW_cSGIldObhVTSRX29gDNqnimW4ty9rY,4848
61
+ meshtensor_cli/src/meshtensor/templates/price-multi.j2,sha256=dRuD3pioBlCH8piJKwoyDjwuv_LycpRyr0hErCjx10o,3557
62
+ meshtensor_cli/src/meshtensor/templates/price-single.j2,sha256=AnVbO3Bt1fOUk7Cpj4zLDuVuGdwLW6sBdnwzp9ADdUc,3333
63
+ meshtensor_cli/src/meshtensor/templates/subnet-details-header.j2,sha256=7lW1Y7eUWTGjv1ogqtoS8XZlUEcx1TppRmqg6O3Vj-U,1972
64
+ meshtensor_cli/src/meshtensor/templates/subnet-details.j2,sha256=h0IaS0Qk2K3AtM4e2lcaeWZKW6zfWyFzr1_A4UNeprc,1159
65
+ meshtensor_cli/src/meshtensor/templates/subnet-metrics.j2,sha256=WMcWt1XBYA6i3rNEJBZMzm6EzNizJPS07poXpblPTmU,2135
66
+ meshtensor_cli/src/meshtensor/templates/subnets-table.j2,sha256=UCGVONAuTHHtofgVnaN1bH93O_lX3cdCweBiWEowoho,2031
67
+ meshtensor_cli/src/meshtensor/templates/table.j2,sha256=P2EFiksnO1cQsB8zjK6hVJwUryHTsLslzRE0YtobAV8,10601
68
+ meshtensor_cli/src/meshtensor/templates/view.css,sha256=OS0V_ixzdTU15FbNzpZW1m7-c64Km0oaluaoXsUZY3s,20812
69
+ meshtensor_cli/src/meshtensor/templates/view.j2,sha256=4ux3uyqz34v9VVAX17GezuPESk4z9n5kkd9HbnTsF_Y,1101
70
+ meshtensor_cli/src/meshtensor/templates/view.js,sha256=QIPnPp9SuYS9wcl7cwL8nFzd8idiDjNzrDjwwxpiVvY,45076
71
+ meshtensor_cli-9.18.1.dist-info/entry_points.txt,sha256=5V99iTNBs4BdCjNnj0_h2B85DGcjvYnUeXivL8r0FSQ,51
72
+ meshtensor_cli-9.18.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
73
+ meshtensor_cli-9.18.1.dist-info/METADATA,sha256=hG6y30ISh-DVz13Pdt_BTEdiRbNyzb4zg3Q5nwwsVJI,9954
74
+ meshtensor_cli-9.18.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: flit 3.12.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ meshcli=meshtensor_cli.cli:main
3
+