forked from PyWaves/PyWaves
-
Notifications
You must be signed in to change notification settings - Fork 2
/
__init__.py
204 lines (164 loc) · 5.43 KB
/
__init__.py
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
# 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
DEFAULT_TX_FEE = 100000
DEFAULT_BASE_FEE = DEFAULT_TX_FEE
DEFAULT_SMART_FEE = 400000
DEFAULT_ASSET_FEE = 100000000
DEFAULT_MATCHER_FEE = 300000
DEFAULT_LEASE_FEE = 100000
DEFAULT_ALIAS_FEE = 100000
DEFAULT_SPONSOR_FEE = 100000000
DEFAULT_SCRIPT_FEE = 100000
DEFAULT_ASSET_SCRIPT_FEE = 100000000
DEFAULT_SET_SCRIPT_FEE = 1000000
DEFAULT_INVOKE_SCRIPT_FEE = 500000
DEFAULT_CURRENCY = 'WAVES'
VALID_TIMEFRAMES = (5, 15, 30, 60, 240, 1440)
MAX_WDF_REQUEST = 100
THROW_EXCEPTION_ON_ERROR = False
import requests
from .address import *
from .asset import *
from .order import *
from .contract import *
from .oracle import *
from .ParallelPyWaves import *
from .WXFeeCalculator import *
OFFLINE = False
NODE = 'https://nodes.wavesnodes.com'
ADDRESS_VERSION = 1
ADDRESS_CHECKSUM_LENGTH = 4
ADDRESS_HASH_LENGTH = 20
ADDRESS_LENGTH = 1 + 1 + ADDRESS_CHECKSUM_LENGTH + ADDRESS_HASH_LENGTH
CHAIN = 'mainnet'
CHAIN_ID = 'W'
#MATCHER = 'https://nodes.wavesnodes.com'
#MATCHER = 'http://matcher.wavesnodes.com'
MATCHER = 'https://matcher.waves.exchange'
#MATCHER_PUBLICKEY = ''
MATCHER_PUBLICKEY = '9cpfKN9suPNvfeUNphzxXMjcnn974eme8ZhWUjaktzU5'
#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)
class PyWavesException(ValueError):
pass
def throw_error(msg):
if THROW_EXCEPTION_ON_ERROR:
raise PyWavesException(msg)
def setThrowOnError(throw=True):
global THROW_EXCEPTION_ON_ERROR
THROW_EXCEPTION_ON_ERROR = throw
def setOffline():
global OFFLINE
OFFLINE = True
def setOnline():
global OFFLINE
OFFLINE = False
def setChain(chain = CHAIN, chain_id = None):
global CHAIN, CHAIN_ID
if chain_id is not None:
CHAIN = chain
CHAIN_ID = chain_id
else:
if chain.lower()=='mainnet' or chain.lower()=='w':
CHAIN = 'mainnet'
CHAIN_ID = 'W'
elif chain.lower()=='hacknet' or chain.lower()=='u':
CHAIN = 'hacknet'
CHAIN_ID = 'U'
elif chain.lower()=='stagenet' or chain.lower()=='s':
CHAIN = 'stagenet'
CHAIN_ID = 'S'
else:
CHAIN = 'testnet'
CHAIN_ID = 'T'
def getChain():
return CHAIN
def setNode(node = NODE, chain = CHAIN, chain_id = None):
global NODE, CHAIN, CHAIN_ID
NODE = node.rstrip("/")
setChain(chain, chain_id)
def getNode():
return NODE
def setMatcher(node = MATCHER):
global MATCHER, MATCHER_PUBLICKEY
try:
MATCHER_PUBLICKEY = wrapper('/matcher', host = node)
MATCHER = node
logging.info('Setting matcher %s %s' % (MATCHER, MATCHER_PUBLICKEY))
except:
MATCHER_PUBLICKEY = ''
def setDatafeed(wdf = DATAFEED):
global DATAFEED
DATAFEED = wdf
logging.info('Setting datafeed %s ' % (DATAFEED))
def wrapper(api, postData='', host='', headers=''):
global OFFLINE
if OFFLINE:
offlineTx = {}
offlineTx['api-type'] = 'POST' if postData else 'GET'
offlineTx['api-endpoint'] = api
offlineTx['api-data'] = postData
return offlineTx
if not host:
host = 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():
return wrapper('/blocks/height')['height']
def lastblock():
return wrapper('/blocks/last')
def block(n):
return wrapper('/blocks/at/%d' % n)
def tx(id):
return wrapper('/transactions/info/%s' % id)
def stateChangeForTx(id):
return wrapper('/debug/stateChanges/info/' + id)
def stateChangesForAddress(address, limit = 1000):
return wrapper('/debug/stateChanges/address/' + address + '/limit/' + str(limit))
def getOrderBook(assetPair):
orderBook = assetPair.orderbook()
try:
bids = orderBook['bids']
asks = orderBook['asks']
except:
bids = ''
asks = ''
return bids, asks
def symbols():
return wrapper('/api/symbols', host=DATAFEED)
def markets():
return wrapper('/api/markets', host=DATAFEED)
def validateAddress(address):
addr = crypto.bytes2str(base58.b58decode(address))
if addr[0] != chr(ADDRESS_VERSION):
logging.error("Wrong address version")
elif addr[1] != CHAIN_ID:
logging.error("Wrong chain id")
elif len(addr) != ADDRESS_LENGTH:
logging.error("Wrong address length")
elif addr[-ADDRESS_CHECKSUM_LENGTH:] != crypto.hashChain(crypto.str2bytes(addr[:-ADDRESS_CHECKSUM_LENGTH]))[:ADDRESS_CHECKSUM_LENGTH]:
logging.error("Wrong address checksum")
else:
return True
return False
WAVES = Asset('')
BTC = Asset('8LQW8f7P5d5PZM7GtZEBgaqRPGSzS3DfPuiXrURJ4AJS')
USD = Asset('Ft8X1v1LTa1ABafufpaCWyVj8KkaxUWE6xBhW6sNFJck')