forked from CharlieMurphyToken/PyWaves
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
241 lines (196 loc) · 7.8 KB
/
__init__.py
File metadata and controls
241 lines (196 loc) · 7.8 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
232
233
234
235
236
237
238
239
# Copyright (C) 2017 PyWaves Developers
#
# This file is part of PyWaves.
#
# It is subject to the license terms in the LICENSE file found in the top-level
# directory of this distribution.
#
# No part of python-bitcoinlib, including this file, may be copied, modified,
# propagated, or distributed except according to the terms contained in the
# LICENSE file.
from __future__ import absolute_import, division, print_function, unicode_literals
from .address import *
from .asset import *
from .order import *
from .contract import *
from .oracle import *
class PyCWaves:
def __init__(self):
#self.Address = object
#self.Asset = object
#self.AssetPair = object
#self.Order = object
#self.Contract = object
#self.Oracle = object
self.DEFAULT_TX_FEE = 100000
self.DEFAULT_BASE_FEE = self.DEFAULT_TX_FEE
self.DEFAULT_SMART_FEE = 400000
self.DEFAULT_ASSET_FEE = 100000000
self.DEFAULT_MATCHER_FEE = 300000
self.DEFAULT_LEASE_FEE = 100000
self.DEFAULT_ALIAS_FEE = 100000
self.DEFAULT_SPONSOR_FEE = 100000000
self.DEFAULT_SCRIPT_FEE = 100000
self.DEFAULT_ASSET_SCRIPT_FEE = 100000000
self.DEFAULT_SET_SCRIPT_FEE = 1000000
self.DEFAULT_INVOKE_SCRIPT_FEE = 500000
self.DEFAULT_CURRENCY = 'WAVES'
self.DEFAULT_MATCHER_FEE_ASSET_ID = self.DEFAULT_CURRENCY
self.VALID_TIMEFRAMES = (5, 15, 30, 60, 240, 1440)
self.MAX_WDF_REQUEST = 100
self.THROW_EXCEPTION_ON_ERROR = False
self.OFFLINE = False
self.NODE = 'https://nodes.wavesnodes.com'
self.ADDRESS_VERSION = 1
self.ADDRESS_CHECKSUM_LENGTH = 4
self.ADDRESS_HASH_LENGTH = 20
self.ADDRESS_LENGTH = 1 + 1 + self.ADDRESS_CHECKSUM_LENGTH + self.ADDRESS_HASH_LENGTH
self.CHAIN = 'mainnet'
self.CHAIN_ID = 'W'
#MATCHER = 'https://nodes.wavesnodes.com'
#MATCHER = 'http://matcher.wavesnodes.com'
self.MATCHER = 'https://matcher.waves.exchange'
self.MATCHER_PUBLICKEY = ''
#DATAFEED = 'http://marketdata.wavesplatform.com'
DATAFEED = 'https://api.wavesplatform.com'
logging.getLogger("requests").setLevel(logging.WARNING)
console = logging.StreamHandler()
console.setLevel(logging.ERROR)
formatter = logging.Formatter('[%(levelname)s] %(message)s')
console.setFormatter(formatter)
logging.getLogger('').addHandler(console)
self.WAVES = pyAsset('', self)
self.BTC = pyAsset('8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS', self)
self.USD = pyAsset('Ft8X1v1LTa1ABafufpaCWyVj8KkaxUWE6xBhW6sNFJck', self)
def Address(self, address='', publicKey='', privateKey='', seed='', alias='', nonce=0):
#self.Address = Address(self, address, publicKey, privateKey, seed, alias, nonce)
#return self.Address
return pyAddress(self, address, publicKey, privateKey, seed, alias, nonce)
def Asset(self, assetId):
#self.Asset = Asset(assetId, self)
#return self.Asset
return pyAsset(assetId, self)
def AssetPair(self, asset1, asset2):
#self.AssetPair = AssetPair(asset1, asset2, self)
#return self.AssetPair
return pyAssetPair(asset1, asset2, self)
def Order(self, orderId, assetPair, address = ''):
#self.Order = Order(self, orderId, assetPair, address)
#return self.Order
return pyOrder(self, orderId, assetPair, address)
def Contract(self, contractAddress, seed):
#self.Contract = Contract(contractAddress, seed, self)
#return self.Contract
return pyContract(contractAddress, seed, self)
def Oracle(self, oracleAddress, seed):
#self.Oracle = Oracle(self, oracleAddress, seed)
#return self.Oracle
return pyOracle(self, oracleAddress, seed)
def throw_error(self, msg):
if self.THROW_EXCEPTION_ON_ERROR:
raise PyWavesException(msg)
def setThrowOnError(self, throw=True):
#global THROW_EXCEPTION_ON_ERROR
self.THROW_EXCEPTION_ON_ERROR = throw
def setOffline(self):
#global OFFLINE
self.OFFLINE = True
def setOnline(self):
#global OFFLINE
self.OFFLINE = False
def setChain(self, chain = '', chain_id = None):
#global CHAIN, CHAIN_ID
if chain == '':
chain = self.CHAIN
if chain_id is not None:
self.CHAIN = chain
self.CHAIN_ID = chain_id
else:
if chain.lower()=='mainnet' or chain.lower()=='w':
self.CHAIN = 'mainnet'
self.CHAIN_ID = 'W'
elif chain.lower()=='hacknet' or chain.lower()=='u':
self.CHAIN = 'hacknet'
self.CHAIN_ID = 'U'
else:
self.CHAIN = 'testnet'
self.CHAIN_ID = 'T'
def getChain(self):
return self.CHAIN
def setNode(self, node = '', chain = '', chain_id = None):
#global NODE, CHAIN, CHAIN_ID
if node == '':
node = self.NODE
if chain == '':
chain = self.CHAIN
self.NODE = node
self.setChain(chain, chain_id)
def getNode(self):
return self.NODE
def setMatcher(self, node = ''):
#global MATCHER, MATCHER_PUBLICKEY
if node == '':
node = self.MATCHER
try:
self.MATCHER_PUBLICKEY = self.wrapper('/matcher', host = node)
self.MATCHER = node
logging.info('Setting matcher %s %s' % (self.MATCHER, self.MATCHER_PUBLICKEY))
except:
self.MATCHER_PUBLICKEY = ''
def setDatafeed(self, wdf = ''):
#global DATAFEED
if wdf == '':
wdf = self.DATAFEED
self.DATAFEED = wdf
logging.info('Setting datafeed %s ' % (self.DATAFEED))
def wrapper(self, api, postData='', host='', headers=''):
#global OFFLINE
if self.OFFLINE:
offlineTx = {}
offlineTx['api-type'] = 'POST' if postData else 'GET'
offlineTx['api-endpoint'] = api
offlineTx['api-data'] = postData
return offlineTx
if not host:
host = self.NODE
if postData:
req = requests.post('%s%s' % (host, api), data=postData, headers={'content-type': 'application/json'}).json()
else:
req = requests.get('%s%s' % (host, api), headers=headers).json()
return req
def height(self):
return self.wrapper('/blocks/height')['height']
def lastblock(self):
return self.wrapper('/blocks/last')
def block(self, n):
return self.wrapper('/blocks/at/%d' % n)
def tx(self, id):
return self.wrapper('/transactions/info/%s' % id)
def getOrderBook(self, assetPair):
orderBook = assetPair.orderbook()
try:
bids = orderBook['bids']
asks = orderBook['asks']
except:
bids = ''
asks = ''
return bids, asks
def symbols(self):
return self.wrapper('/api/symbols', host=self.DATAFEED)
def markets(self):
return self.wrapper('/api/markets', host=self.DATAFEED)
def validateAddress(self, address):
addr = crypto.bytes2str(base58.b58decode(address))
if addr[0] != chr(self.ADDRESS_VERSION):
logging.error("Wrong address version")
elif addr[1] != self.CHAIN_ID:
logging.error("Wrong chain id")
elif len(addr) != self.ADDRESS_LENGTH:
logging.error("Wrong address length")
elif addr[-self.ADDRESS_CHECKSUM_LENGTH:] != crypto.hashChain(crypto.str2bytes(addr[:-self.ADDRESS_CHECKSUM_LENGTH]))[:self.ADDRESS_CHECKSUM_LENGTH]:
logging.error("Wrong address checksum")
else:
return True
return False
class PyWavesException(ValueError):
pass