hive-nectar 0.0.2__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.
Potentially problematic release.
This version of hive-nectar might be problematic. Click here for more details.
- hive_nectar-0.0.2.dist-info/METADATA +182 -0
- hive_nectar-0.0.2.dist-info/RECORD +86 -0
- hive_nectar-0.0.2.dist-info/WHEEL +4 -0
- hive_nectar-0.0.2.dist-info/entry_points.txt +2 -0
- hive_nectar-0.0.2.dist-info/licenses/LICENSE.txt +23 -0
- nectar/__init__.py +32 -0
- nectar/account.py +4371 -0
- nectar/amount.py +475 -0
- nectar/asciichart.py +270 -0
- nectar/asset.py +82 -0
- nectar/block.py +446 -0
- nectar/blockchain.py +1178 -0
- nectar/blockchaininstance.py +2284 -0
- nectar/blockchainobject.py +221 -0
- nectar/blurt.py +563 -0
- nectar/cli.py +6285 -0
- nectar/comment.py +1217 -0
- nectar/community.py +513 -0
- nectar/constants.py +111 -0
- nectar/conveyor.py +309 -0
- nectar/discussions.py +1709 -0
- nectar/exceptions.py +149 -0
- nectar/hive.py +546 -0
- nectar/hivesigner.py +420 -0
- nectar/imageuploader.py +72 -0
- nectar/instance.py +129 -0
- nectar/market.py +1013 -0
- nectar/memo.py +449 -0
- nectar/message.py +357 -0
- nectar/nodelist.py +444 -0
- nectar/price.py +557 -0
- nectar/profile.py +65 -0
- nectar/rc.py +308 -0
- nectar/snapshot.py +726 -0
- nectar/steem.py +582 -0
- nectar/storage.py +53 -0
- nectar/transactionbuilder.py +622 -0
- nectar/utils.py +545 -0
- nectar/version.py +2 -0
- nectar/vote.py +557 -0
- nectar/wallet.py +472 -0
- nectar/witness.py +617 -0
- nectarapi/__init__.py +11 -0
- nectarapi/exceptions.py +123 -0
- nectarapi/graphenerpc.py +589 -0
- nectarapi/node.py +178 -0
- nectarapi/noderpc.py +229 -0
- nectarapi/rpcutils.py +97 -0
- nectarapi/version.py +2 -0
- nectarbase/__init__.py +14 -0
- nectarbase/ledgertransactions.py +75 -0
- nectarbase/memo.py +243 -0
- nectarbase/objects.py +429 -0
- nectarbase/objecttypes.py +22 -0
- nectarbase/operationids.py +102 -0
- nectarbase/operations.py +1297 -0
- nectarbase/signedtransactions.py +48 -0
- nectarbase/transactions.py +11 -0
- nectarbase/version.py +2 -0
- nectargrapheneapi/__init__.py +6 -0
- nectargraphenebase/__init__.py +27 -0
- nectargraphenebase/account.py +846 -0
- nectargraphenebase/aes.py +52 -0
- nectargraphenebase/base58.py +192 -0
- nectargraphenebase/bip32.py +494 -0
- nectargraphenebase/bip38.py +134 -0
- nectargraphenebase/chains.py +149 -0
- nectargraphenebase/dictionary.py +3 -0
- nectargraphenebase/ecdsasig.py +326 -0
- nectargraphenebase/objects.py +123 -0
- nectargraphenebase/objecttypes.py +6 -0
- nectargraphenebase/operationids.py +3 -0
- nectargraphenebase/operations.py +23 -0
- nectargraphenebase/prefix.py +11 -0
- nectargraphenebase/py23.py +38 -0
- nectargraphenebase/signedtransactions.py +201 -0
- nectargraphenebase/types.py +419 -0
- nectargraphenebase/unsignedtransactions.py +283 -0
- nectargraphenebase/version.py +2 -0
- nectarstorage/__init__.py +38 -0
- nectarstorage/base.py +306 -0
- nectarstorage/exceptions.py +16 -0
- nectarstorage/interfaces.py +237 -0
- nectarstorage/masterpassword.py +239 -0
- nectarstorage/ram.py +30 -0
- nectarstorage/sqlite.py +334 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hive-nectar
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Unofficial Python library for HIVE
|
|
5
|
+
Project-URL: Homepage, http://www.github.com/thecrazygm/nectar
|
|
6
|
+
Project-URL: Download, https://github.com/thecrazygm/nectar/tarball/0.00.01
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/thecrazygm/nectar/issues
|
|
8
|
+
Author-email: Michael Garcia <thecrazygm@gmail.com>
|
|
9
|
+
Maintainer-email: Michael Garcia <thecrazygm@gmail.com>
|
|
10
|
+
License: The MIT License (MIT)
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2015 Fabian Schuh
|
|
13
|
+
2018, 2019 Holger Nahrstaedt
|
|
14
|
+
2025, Michael Garcia
|
|
15
|
+
|
|
16
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
17
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
18
|
+
in the Software without restriction, including without limitation the rights
|
|
19
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
20
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
21
|
+
furnished to do so, subject to the following conditions:
|
|
22
|
+
|
|
23
|
+
The above copyright notice and this permission notice shall be included in
|
|
24
|
+
all copies or substantial portions of the Software.
|
|
25
|
+
|
|
26
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
27
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
28
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
29
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
30
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
31
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
32
|
+
THE SOFTWARE.
|
|
33
|
+
License-File: LICENSE.txt
|
|
34
|
+
Keywords: api,hive,library,rpc
|
|
35
|
+
Classifier: Development Status :: 4 - Beta
|
|
36
|
+
Classifier: Intended Audience :: Developers
|
|
37
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
38
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
39
|
+
Classifier: Operating System :: OS Independent
|
|
40
|
+
Classifier: Programming Language :: Python
|
|
41
|
+
Classifier: Programming Language :: Python :: 3
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
45
|
+
Requires-Python: >=3.12
|
|
46
|
+
Requires-Dist: appdirs
|
|
47
|
+
Requires-Dist: asn1crypto
|
|
48
|
+
Requires-Dist: click
|
|
49
|
+
Requires-Dist: click-shell
|
|
50
|
+
Requires-Dist: diff-match-patch
|
|
51
|
+
Requires-Dist: ecdsa
|
|
52
|
+
Requires-Dist: prettytable
|
|
53
|
+
Requires-Dist: pycryptodomex
|
|
54
|
+
Requires-Dist: requests
|
|
55
|
+
Requires-Dist: ruamel-yaml
|
|
56
|
+
Requires-Dist: scrypt
|
|
57
|
+
Requires-Dist: websocket-client
|
|
58
|
+
Description-Content-Type: text/markdown
|
|
59
|
+
|
|
60
|
+
# nectar - Unofficial Python Library for HIVE
|
|
61
|
+
|
|
62
|
+
nectar is an unofficial python library for HIVE, which is
|
|
63
|
+
created from the remains of [beem](https://github.com/holgern/beem) which was derived from [python-bitshares](https://github.com/xeroc/python-bitshares)
|
|
64
|
+
The library name is derived from a nectar of a flower.
|
|
65
|
+
|
|
66
|
+
nectar includes [python-graphenelib](https://github.com/xeroc/python-graphenelib).
|
|
67
|
+
|
|
68
|
+
[](https://pypi.python.org/pypi/hive-nectar/)
|
|
69
|
+
|
|
70
|
+
[](https://pypi.python.org/pypi/hive-nectar/)
|
|
71
|
+
|
|
72
|
+
## Current build status
|
|
73
|
+
|
|
74
|
+
# Support & Documentation
|
|
75
|
+
|
|
76
|
+
You may find help in the [nectar-discord-channel](). The discord channel can also be used to discuss things about nectar.
|
|
77
|
+
|
|
78
|
+
A complete library documentation is available at
|
|
79
|
+
[temporary]()
|
|
80
|
+
|
|
81
|
+
# About nectar
|
|
82
|
+
|
|
83
|
+
- High unit test coverage
|
|
84
|
+
- Complete documentation of nectar-cli and all classes including all functions
|
|
85
|
+
- hivesigner integration
|
|
86
|
+
- Works on read-only systems
|
|
87
|
+
- Own BlockchainObject class with cache
|
|
88
|
+
- Contains all broadcast operations
|
|
89
|
+
- Estimation of virtual account operation index from date or block number
|
|
90
|
+
- the command line tool nectar-cli uses click and has more commands
|
|
91
|
+
- NodeRPC can be used to execute even not implemented RPC-Calls
|
|
92
|
+
- More complete implemention
|
|
93
|
+
|
|
94
|
+
# Installation
|
|
95
|
+
|
|
96
|
+
The minimal working python version is 3.12.x
|
|
97
|
+
|
|
98
|
+
nectar can be installed parallel to beem.
|
|
99
|
+
|
|
100
|
+
For Debian and Ubuntu, please ensure that the following packages are installed:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
sudo apt-get install build-essential libssl-dev python3-dev python3-pip python3-setuptools
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
The following package speeds up nectar-cli:
|
|
107
|
+
|
|
108
|
+
> sudo apt-get install python3-gmpy2
|
|
109
|
+
|
|
110
|
+
For Fedora and RHEL-derivatives, please ensure that the following
|
|
111
|
+
packages are installed:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
sudo yum install gcc openssl-devel python-devel
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
For OSX, please do the following:
|
|
118
|
+
|
|
119
|
+
brew install openssl
|
|
120
|
+
export CFLAGS="-I$(brew --prefix openssl)/include $CFLAGS"
|
|
121
|
+
export LDFLAGS="-L$(brew --prefix openssl)/lib $LDFLAGS"
|
|
122
|
+
|
|
123
|
+
For Termux on Android, please install the following packages:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
pkg install clang openssl python
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Signing and Verify can be fasten (200 %) by installing cryptography (you
|
|
130
|
+
may need to replace pip3 by pip):
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
pip3 install -U cryptography
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
or (you may need to replace pip3 by pip):
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
pip3 install -U secp256k1prp
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Install or update nectar by pip(you may need to replace pip3 by pip):
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
pip3 install -U nectar
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
You can install nectar from this repository if you want the latest but
|
|
149
|
+
possibly non-compiling version:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
git clone https://github.com/thecrazygm/nectar.git
|
|
153
|
+
cd nectar
|
|
154
|
+
uv sync
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
Run tests after install:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
pytest
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
## Ledger support
|
|
164
|
+
|
|
165
|
+
For Ledger (Nano S) signing, the following package must be installed:
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
pip3 install ledgerblue
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
# Changelog
|
|
172
|
+
|
|
173
|
+
Can be found in CHANGELOG.md.
|
|
174
|
+
|
|
175
|
+
# License
|
|
176
|
+
|
|
177
|
+
This library is licensed under the MIT License.
|
|
178
|
+
|
|
179
|
+
# Acknowledgements
|
|
180
|
+
|
|
181
|
+
[beem](https://github.com/holgern/beem) was created by Holger Nahrstaedt
|
|
182
|
+
[python-bitshares](https://github.com/xeroc/python-bitshares) and [python-graphenelib](https://github.com/xeroc/python-graphenelib) were created by Fabian Schuh (xeroc).
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
nectar/__init__.py,sha256=YH9ietjJFhFxTPwQ3K9iw8VJZ__CNK5QTQeGcw1iKzk,503
|
|
2
|
+
nectar/account.py,sha256=-DLNSWirx8wtrCxIOap18JNQUUIN9WSBelpZ1bj6Qvc,172350
|
|
3
|
+
nectar/amount.py,sha256=Zpk-BAoRt1QjwO32CIBmXpCBIhyU1qHm_skYPjfboXg,18235
|
|
4
|
+
nectar/asciichart.py,sha256=DwPyZAqne6o9L_PPRtlw6Xj0QdOZ-aId1lpOnmbyc6Q,8828
|
|
5
|
+
nectar/asset.py,sha256=spGsJmlVQeZ6-oYhcwmQKsI3gpGmrpCzimYO1Qv4MtA,2725
|
|
6
|
+
nectar/block.py,sha256=7nXVaYt8_tu9TJD6Zcr4Vo3owK8Rv8VKueWygawml3U,16064
|
|
7
|
+
nectar/blockchain.py,sha256=BBXPc3UQ5kM-sjptQnvDosIhRXCK4gN3N1mXBSi1XzQ,49061
|
|
8
|
+
nectar/blockchaininstance.py,sha256=mrHuhHsR7h-becNe_bE8WieFqMFyz49s-LecmC_k134,93119
|
|
9
|
+
nectar/blockchainobject.py,sha256=ZlWeOWGMoHyATgw20YfPV47OYlwuOpO75hmf0c9IC_4,7095
|
|
10
|
+
nectar/blurt.py,sha256=cZoUyAdr_HdUTm8K3N-PyaFYfpBL_WmomFWeWTHbeIA,23070
|
|
11
|
+
nectar/cli.py,sha256=jYi_EGZKeML7fvVX3g59uqWsUPL2e72NkxM4qFFrjLM,227475
|
|
12
|
+
nectar/comment.py,sha256=qSCdkfOiYbFZHCp9rvU2wKpL9B7avMYuitcSYqldd2k,46514
|
|
13
|
+
nectar/community.py,sha256=XyxIfdpIWart70MM2ojlZTfbKcRYr6qxGcWtEQNHfuI,17990
|
|
14
|
+
nectar/constants.py,sha256=lrspBwCz9BE0YZY10DMS98oPwwxgmI0LzFdlQ7v53Ig,4974
|
|
15
|
+
nectar/conveyor.py,sha256=dpvaVLaR48Tn56fkCUl5MoDQDcR3eLcrIKYm6ctZkRM,11265
|
|
16
|
+
nectar/discussions.py,sha256=n-4GnYvnDc5AwFdUHSA9wTfdCmLWHb9h06U4vWq05q4,66439
|
|
17
|
+
nectar/exceptions.py,sha256=fTwnJo0VxKrCLV6okNSkInyQLHOj0uaoBD8syq1h9Fw,2639
|
|
18
|
+
nectar/hive.py,sha256=ota3Ttp_K2Eyy34UyWnAdYhI8eEX1uS-CvzalaFqSvc,22254
|
|
19
|
+
nectar/hivesigner.py,sha256=olHHuLtBrjN8PgXfGTeMNzshwi7WtzdcrLuyYLBeIhk,13998
|
|
20
|
+
nectar/imageuploader.py,sha256=kQd-IKrF9K4D5F-vnm8iRC3AuJa-fpozTpKUkKSr0ig,2722
|
|
21
|
+
nectar/instance.py,sha256=oUAycW1q5ynM3M4O9a0drgY7e8UBExTj69aMxrOjxwg,3905
|
|
22
|
+
nectar/market.py,sha256=mlKKsq6DQ4WCLaqNnuuwbJM4qUiejy5pGdXIPKK2Sug,41972
|
|
23
|
+
nectar/memo.py,sha256=lTIuPrX-kPynOa-9q6kJHRzb9BfJjSf0kdpipwEXnY8,17777
|
|
24
|
+
nectar/message.py,sha256=lVGaydsxh8oMTS90khho3DtqxhzgIrt4NmjxwyP0X3k,13019
|
|
25
|
+
nectar/nodelist.py,sha256=3OPrfVVaI6Wza-yuqDfryoCgCA4dDUL64x6wwYqPSFA,15219
|
|
26
|
+
nectar/price.py,sha256=WV1ix2cuWHPIFq4cFJZD37ud-9BDBpvlv4BznI_cGTI,21270
|
|
27
|
+
nectar/profile.py,sha256=t-pqC2DZxzvTV2XLU6iZWT1NdHuk77A_iiisbA0QIOM,1921
|
|
28
|
+
nectar/rc.py,sha256=BAc88X1mObL2FQSm4ABhBsRfWDBHkee0SCigZ6QlA2c,12825
|
|
29
|
+
nectar/snapshot.py,sha256=_5hsrmJDpPoWTYtQGZ2grMMuuGBInOGS0ip9gv5-RJo,31696
|
|
30
|
+
nectar/steem.py,sha256=JwfO-dp7HT3mVEZVunHNp87gFbdO8e1tcpXQs_MygJ8,23916
|
|
31
|
+
nectar/storage.py,sha256=yYsWc12fOUKEAkSn5wKGS-wSvsac3sMVn6uzLu_pn8c,1855
|
|
32
|
+
nectar/transactionbuilder.py,sha256=j5PD3Wm_w9gHnKJ1Ug3sxz3RWPclWt-MQIO5ox027X8,25443
|
|
33
|
+
nectar/utils.py,sha256=OGeLuO_nYDAvcX-onrm4xjn1L0binq8Glelgg6RdlSo,18882
|
|
34
|
+
nectar/version.py,sha256=xZm1kmbtx0EfryeD0naP3gA4gA6tzC3boYrEaFQeaoU,77
|
|
35
|
+
nectar/vote.py,sha256=sO_ukJMEcUO_WI-D2EwbAiiRLApRQ1fyiwyX7YSAiOk,20222
|
|
36
|
+
nectar/wallet.py,sha256=pgbiLJbwXKMiR7EOtuVFee6s3nAdpILHVQ5iPNy7zhs,16222
|
|
37
|
+
nectar/witness.py,sha256=88XYjhTRNhyu9hfIG0sm3Pg1hC9eooo3HhW5EhcaYps,23600
|
|
38
|
+
nectarapi/__init__.py,sha256=c0J2Z-lHOvkSch9bZS3LVQZjKku2XxnYMZToq7OAkfI,157
|
|
39
|
+
nectarapi/exceptions.py,sha256=FnS4-ywWDxEAtV65Hd-4XxAV7j1wRgtQRLIvIGxA0Xs,1824
|
|
40
|
+
nectarapi/graphenerpc.py,sha256=H3u8ybNqa4RgWD4PqbfnEPkdCXOj1Mn3IGAyuUe4KdY,23495
|
|
41
|
+
nectarapi/node.py,sha256=aLeah07A1zLnHDpvnYl-K5oopUfXxwSJ212QsyKMLJA,5464
|
|
42
|
+
nectarapi/noderpc.py,sha256=FxJz1KbjU6FbNdyp7ovOSZ8TbmD_xqQclKjeBP42Jls,10093
|
|
43
|
+
nectarapi/rpcutils.py,sha256=0nKCrEeNHFSEU3AjaOGNh-2pjc8qw4mRA9lCrBkP1FQ,2910
|
|
44
|
+
nectarapi/version.py,sha256=xZm1kmbtx0EfryeD0naP3gA4gA6tzC3boYrEaFQeaoU,77
|
|
45
|
+
nectarbase/__init__.py,sha256=U18vyJDvtsto3gHN9Fp3DHlcPd954sG06duHc72pNjs,234
|
|
46
|
+
nectarbase/ledgertransactions.py,sha256=97WXhNhcjNDf_XjXDD08lBMzYmvHC63oZMLRQqVNvWY,2545
|
|
47
|
+
nectarbase/memo.py,sha256=_-y9bxGr1DyEaD2-twVJ5Y-1ttFD-VJLyVAYzlT2ijw,7570
|
|
48
|
+
nectarbase/objects.py,sha256=ukBsUft2actWwlka2prwZkZtTKwLL0HgJfQtAvZfLIs,14894
|
|
49
|
+
nectarbase/objecttypes.py,sha256=zrKBFwoUJXvWDSn8RugWioKqf7TS7dY0EEXVAZv_-K0,690
|
|
50
|
+
nectarbase/operationids.py,sha256=wpKltPFlInpueyvLl3XCI2fjP9ziIs4MStoIj2mbPfQ,3645
|
|
51
|
+
nectarbase/operations.py,sha256=K-ypT0KMcRPjcoOuYyUhpRaRUv5FtAhfdc7kSqbFyCs,47628
|
|
52
|
+
nectarbase/signedtransactions.py,sha256=r-MRnEQDnx6U6XFPcM3hPXiDZvU6sQVx4Vv_0nZF7fs,1792
|
|
53
|
+
nectarbase/transactions.py,sha256=D7TK4Pkxr1N7p0Yh2bxvdXpOuEYpLl2tWK84Pj_93c0,319
|
|
54
|
+
nectarbase/version.py,sha256=xZm1kmbtx0EfryeD0naP3gA4gA6tzC3boYrEaFQeaoU,77
|
|
55
|
+
nectargrapheneapi/__init__.py,sha256=_Gxdt_qaQQwwYABHEFBuf4tMh93ItIa3HPBH9nk1PTw,151
|
|
56
|
+
nectargraphenebase/__init__.py,sha256=PzB_0qiWfqJku5vKQs0CpkVeipPmZ33Fpc1px4VCV-Q,570
|
|
57
|
+
nectargraphenebase/account.py,sha256=pi3TFr6_CwGajdwDuAqlRGElmLhjBXlxC7mMOpc0vUU,29789
|
|
58
|
+
nectargraphenebase/aes.py,sha256=BywHJR8F7n2IBXhBmXqyc61DlVXcJ_QIE9qkubFdX2M,1578
|
|
59
|
+
nectargraphenebase/base58.py,sha256=NHvj7O6E94nX4BVK78u9IxAR8-QMIsasj6fj6yidm9Q,5552
|
|
60
|
+
nectargraphenebase/bip32.py,sha256=o2PZ37R1fZAg4YHPzvmCjp9qHNcC9Zkju_C1NRNUNbM,16274
|
|
61
|
+
nectargraphenebase/bip38.py,sha256=qSgH2_Y6kdcXLNI67qMmkjikI6aT4YET4R--GHT170Q,4530
|
|
62
|
+
nectargraphenebase/chains.py,sha256=JhaqY8qZaK-6OYf72RLVNxJtrc6yZtYxJm8p9U-i338,6185
|
|
63
|
+
nectargraphenebase/dictionary.py,sha256=Fooynl3XWE9ALy31jsVNb9CEHZh5N8TeJUAZJvqslnY,360748
|
|
64
|
+
nectargraphenebase/ecdsasig.py,sha256=BIaKNg4-_9ijo3xjbLfEmN0amIIVaK_yG5haUUevcEQ,12425
|
|
65
|
+
nectargraphenebase/objects.py,sha256=tYBvmAf7VU-06uDccRpFAQORGuOEtQd_jOqS3muK7zo,3998
|
|
66
|
+
nectargraphenebase/objecttypes.py,sha256=8YkRyxtd1hNZ06XvyHBRA5PatVeTd8XCFQmW_2p8MGk,160
|
|
67
|
+
nectargraphenebase/operationids.py,sha256=TLXB8FovmDwC39PNAR8OaW-NWyo1gFH0zE4ibShcMiI,65
|
|
68
|
+
nectargraphenebase/operations.py,sha256=fPTQ98sUtQRClAakBKPCGZjG0iIAAJqM5Y72Ip_HWWI,653
|
|
69
|
+
nectargraphenebase/prefix.py,sha256=tpX2_uz5lPveUoGbmXC4zsrG-5QsaVbIGIFPWJvYRbg,280
|
|
70
|
+
nectargraphenebase/py23.py,sha256=aI1MAQ74DngxkjdpRlWEspmB1HNTQcpj3uHKo0b7rsM,784
|
|
71
|
+
nectargraphenebase/signedtransactions.py,sha256=y5tq9ijO_EXUpn77cHgqx55RcsY0Jr-lwj_r_0w7OHI,6947
|
|
72
|
+
nectargraphenebase/types.py,sha256=OZGVxgOoNPLiElNyDluUpmXNyREGzCEekZwq5uwPfGE,9771
|
|
73
|
+
nectargraphenebase/unsignedtransactions.py,sha256=HwhbWkWS1mYCJWKMsUI18PogEmZ5sVTWLPwolvM6ZR0,9522
|
|
74
|
+
nectargraphenebase/version.py,sha256=xZm1kmbtx0EfryeD0naP3gA4gA6tzC3boYrEaFQeaoU,77
|
|
75
|
+
nectarstorage/__init__.py,sha256=AQXmR8clT9bO9SnIM8QEr5S8ZOpbKuG_BnBsDmGvec0,1347
|
|
76
|
+
nectarstorage/base.py,sha256=h7Oca1_RaJw39P1I_xXRKup016pS8zCLOs3e4IHKKdE,9734
|
|
77
|
+
nectarstorage/exceptions.py,sha256=0erk_d0Ejia9td_Ke7XFBl17H1BxbM42gFpkej8EbV0,421
|
|
78
|
+
nectarstorage/interfaces.py,sha256=WK2YR2mKUk1Qts50ZYLd407gECywA02A8iWr_p0KfCw,6786
|
|
79
|
+
nectarstorage/masterpassword.py,sha256=nyG90LeHeqEjXVbRT36gAWGe-MxyKGCfQ8SqvytK1no,8696
|
|
80
|
+
nectarstorage/ram.py,sha256=Cy6JbMrlgcEG673_KqfyaofhAdJR-luRKTedj3qTZEE,1034
|
|
81
|
+
nectarstorage/sqlite.py,sha256=fkkDgi1lPv7lRo5wEAe4BzSVd2kDBGss3vCDYeNzDCs,10625
|
|
82
|
+
hive_nectar-0.0.2.dist-info/METADATA,sha256=cpykoG31PfCoOCD4vi84UrAq7q7b0RYyiCCUI52WuEA,5929
|
|
83
|
+
hive_nectar-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
84
|
+
hive_nectar-0.0.2.dist-info/entry_points.txt,sha256=DbqiJb5fFpQvGZ0ojvc2w3dXZitTg6FPz09CobKq4m8,47
|
|
85
|
+
hive_nectar-0.0.2.dist-info/licenses/LICENSE.txt,sha256=WjJRNR4r7FuLEO2BTBLGa05T7bBecGGgH47NgKsSY0E,1158
|
|
86
|
+
hive_nectar-0.0.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Fabian Schuh
|
|
4
|
+
2018, 2019 Holger Nahrstaedt
|
|
5
|
+
2025, Michael Garcia
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in
|
|
15
|
+
all copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23
|
+
THE SOFTWARE.
|
nectar/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""nectar."""
|
|
2
|
+
|
|
3
|
+
from .blurt import Blurt
|
|
4
|
+
from .hive import Hive
|
|
5
|
+
from .steem import Steem
|
|
6
|
+
from .version import version as __version__
|
|
7
|
+
|
|
8
|
+
__all__ = [
|
|
9
|
+
"steem",
|
|
10
|
+
"account",
|
|
11
|
+
"amount",
|
|
12
|
+
"asset",
|
|
13
|
+
"block",
|
|
14
|
+
"blurt",
|
|
15
|
+
"blockchain",
|
|
16
|
+
"blockchaininstance",
|
|
17
|
+
"market",
|
|
18
|
+
"storage",
|
|
19
|
+
"price",
|
|
20
|
+
"utils",
|
|
21
|
+
"wallet",
|
|
22
|
+
"vote",
|
|
23
|
+
"message",
|
|
24
|
+
"comment",
|
|
25
|
+
"discussions",
|
|
26
|
+
"witness",
|
|
27
|
+
"profile",
|
|
28
|
+
"nodelist",
|
|
29
|
+
"imageuploader",
|
|
30
|
+
"snapshot",
|
|
31
|
+
"hivesigner",
|
|
32
|
+
]
|