-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.pyi
More file actions
231 lines (215 loc) · 9.23 KB
/
Copy path__init__.pyi
File metadata and controls
231 lines (215 loc) · 9.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
"""
Monero Python - A Python library for using Monero.
Copyright (c) everoddandeven
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:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
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.
Parts of this file are originally copyright (c) woodser
Parts of this file are originally copyright (c) 2014-2019, The Monero Project
Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
All rights reserved.
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be
used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
"""
from .serializable_struct import SerializableStruct
from .monero_rpc_payment_info import MoneroRpcPaymentInfo
from .monero_account import MoneroAccount
from .monero_account_tag import MoneroAccountTag
from .monero_address_book_entry import MoneroAddressBookEntry
from .monero_address_type import MoneroAddressType
from .monero_add_auxiliary_pow_result import MoneroAddAuxiliaryPowResult
from .monero_alt_chain import MoneroAltChain
from .monero_auxiliary_pow import MoneroAuxiliaryPow
from .monero_ban import MoneroBan
from .monero_block import MoneroBlock
from .monero_block_header import MoneroBlockHeader
from .monero_block_template import MoneroBlockTemplate
from .monero_check import MoneroCheck
from .monero_check_reserve import MoneroCheckReserve
from .monero_check_tx import MoneroCheckTx
from .monero_connection_span import MoneroConnectionSpan
from .monero_connection_type import MoneroConnectionType
from .monero_daemon import MoneroDaemon
from .monero_daemon_info import MoneroDaemonInfo
from .monero_daemon_listener import MoneroDaemonListener
from .monero_daemon_network_stats import MoneroDaemonNetworkStats
from .monero_daemon_rpc import MoneroDaemonRpc
from .monero_daemon_sync_info import MoneroDaemonSyncInfo
from .monero_daemon_update_check_result import MoneroDaemonUpdateCheckResult
from .monero_daemon_update_download_result import MoneroDaemonUpdateDownloadResult
from .monero_decoded_address import MoneroDecodedAddress
from .monero_destination import MoneroDestination
from .monero_error import MoneroError
from .gen_utils import GenUtils
from .monero_fee_estimate import MoneroFeeEstimate
from .monero_generate_blocks_result import MoneroGenerateBlocksResult
from .monero_get_block_hashes_result import MoneroGetBlockHashesResult
from .monero_get_blocks_by_hash_result import MoneroGetBlocksByHashResult
from .monero_hard_fork_info import MoneroHardForkInfo
from .incoming_transfer_comparator import IncomingTransferComparator
from .monero_incoming_transfer import MoneroIncomingTransfer
from .monero_integrated_address import MoneroIntegratedAddress
from .monero_key_image import MoneroKeyImage
from .monero_key_image_export_result import MoneroKeyImageExportResult
from .monero_key_image_import_result import MoneroKeyImageImportResult
from .monero_key_image_spent_status import MoneroKeyImageSpentStatus
from .monero_message_signature_result import MoneroMessageSignatureResult
from .monero_message_signature_type import MoneroMessageSignatureType
from .monero_miner_data import MoneroMinerData
from .monero_miner_tx_sum import MoneroMinerTxSum
from .monero_mining_status import MoneroMiningStatus
from .monero_multisig_info import MoneroMultisigInfo
from .monero_multisig_init_result import MoneroMultisigInitResult
from .monero_multisig_sign_result import MoneroMultisigSignResult
from .monero_network_type import MoneroNetworkType
from .monero_transfer import MoneroTransfer
from .monero_outgoing_transfer import MoneroOutgoingTransfer
from .monero_incoming_transfer import MoneroIncomingTransfer
from .monero_output import MoneroOutput
from .monero_output_distribution_entry import MoneroOutputDistributionEntry
from .monero_output_histogram_entry import MoneroOutputHistogramEntry
from .monero_output_query import MoneroOutputQuery
from .monero_output_wallet import MoneroOutputWallet
from .output_comparator import OutputComparator
from .monero_peer import MoneroPeer
from .monero_prune_result import MoneroPruneResult
from .monero_rpc_connection import MoneroRpcConnection
from .monero_rpc_error import MoneroRpcError
from .ssl_options import SslOptions
from .monero_subaddress import MoneroSubaddress
from .monero_submit_tx_result import MoneroSubmitTxResult
from .monero_sync_result import MoneroSyncResult
from .monero_transfer_query import MoneroTransferQuery
from .monero_tx import MoneroTx
from .tx_height_comparator import TxHeightComparator
from .monero_tx_backlog_entry import MoneroTxBacklogEntry
from .monero_tx_config import MoneroTxConfig
from .monero_tx_pool_stats import MoneroTxPoolStats
from .monero_tx_priority import MoneroTxPriority
from .monero_tx_query import MoneroTxQuery
from .monero_tx_set import MoneroTxSet
from .monero_tx_wallet import MoneroTxWallet
from .monero_utils import MoneroUtils
from .monero_version import MoneroVersion
from .monero_wallet import MoneroWallet
from .monero_wallet_config import MoneroWalletConfig
from .monero_wallet_full import MoneroWalletFull
from .monero_wallet_keys import MoneroWalletKeys
from .monero_wallet_listener import MoneroWalletListener
from .monero_wallet_rpc import MoneroWalletRpc
__all__ = [
'MoneroRpcPaymentInfo',
'MoneroAccount',
'MoneroAccountTag',
'MoneroAddressBookEntry',
'MoneroAddressType',
'MoneroAddAuxiliaryPowResult',
'MoneroAltChain',
'MoneroAuxiliaryPow',
'MoneroBan',
'MoneroBlock',
'MoneroBlockHeader',
'MoneroBlockTemplate',
'MoneroCheck',
'MoneroCheckReserve',
'MoneroCheckTx',
'MoneroConnectionSpan',
'MoneroConnectionType',
'MoneroDaemon',
'MoneroDaemonInfo',
'MoneroDaemonListener',
'MoneroDaemonNetworkStats',
'MoneroDaemonRpc',
'MoneroDaemonSyncInfo',
'MoneroDaemonUpdateCheckResult',
'MoneroDaemonUpdateDownloadResult',
'MoneroDecodedAddress',
'MoneroDestination',
'MoneroError',
'GenUtils',
'MoneroFeeEstimate',
'MoneroGenerateBlocksResult',
'MoneroGetBlockHashesResult',
'MoneroGetBlocksByHashResult',
'MoneroHardForkInfo',
'IncomingTransferComparator',
'MoneroIncomingTransfer',
'MoneroIntegratedAddress',
'MoneroKeyImage',
'MoneroKeyImageExportResult',
'MoneroKeyImageImportResult',
'MoneroKeyImageSpentStatus',
'MoneroMessageSignatureResult',
'MoneroMessageSignatureType',
'MoneroMinerData',
'MoneroMinerTxSum',
'MoneroMiningStatus',
'MoneroMultisigInfo',
'MoneroMultisigInitResult',
'MoneroMultisigSignResult',
'MoneroNetworkType',
'MoneroOutgoingTransfer',
'MoneroOutput',
'MoneroOutputDistributionEntry',
'MoneroOutputHistogramEntry',
'MoneroOutputQuery',
'MoneroOutputWallet',
'OutputComparator',
'MoneroPeer',
'MoneroPruneResult',
'MoneroRpcConnection',
'MoneroRpcError',
'MoneroSubaddress',
'MoneroSubmitTxResult',
'MoneroSyncResult',
'MoneroTransfer',
'MoneroTransferQuery',
'MoneroTx',
'TxHeightComparator',
'MoneroTxBacklogEntry',
'MoneroTxConfig',
'MoneroTxPoolStats',
'MoneroTxPriority',
'MoneroTxQuery',
'MoneroTxSet',
'MoneroTxWallet',
'MoneroUtils',
'MoneroVersion',
'MoneroWallet',
'MoneroWalletConfig',
'MoneroWalletFull',
'MoneroWalletKeys',
'MoneroWalletListener',
'MoneroWalletRpc',
'SslOptions',
'SerializableStruct'
]