Skip to content
Snippets Groups Projects
Commit 63939144 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

First step of replacing Bitshares by Steem

parent c7f98992
No related branches found
No related tags found
No related merge requests found
The MIT License (MIT)
Copyright (c) 2015 Fabian Schuh
2018 Holger Nahrstaedt
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
......
......@@ -14,7 +14,7 @@ clean-pyc:
find . -name '*~' -exec rm -f {} +
lint:
flake8 bitsharesapi/ bitsharesbase/ bitshares/
flake8 steemapi/ steembase/ steem/
test:
python3 setup.py test
......
# Python Library for BitShares
# Python Library for Steem
---
## Documentation
Visit the [pybitshares website](http://docs.pybitshares.com/en/latest/) for in depth documentation on this Python library.
## Installation
### Install with pip:
```
$ sudo apt-get install libffi-dev libssl-dev python-dev python3-dev python3-pip
$ pip3 install bitshares
$ pip3 install steemi
```
### Manual installation:
```
$ git clone https://github.com/xeroc/python-bitshares/
$ cd python-bitshares
$ git clone https://github.com/holgern/pySteemi/
$ cd pySteemi
$ python3 setup.py install --user
```
......
from .bitshares import BitShares
__all__ = [
"bitshares"
"aes",
"account",
"amount",
"asset",
"block",
"blockchain",
"dex",
"market",
"storage",
"price",
"utils",
"wallet",
"committee",
"vesting",
"proposal",
"message"
]
__all__ = [
'account',
'bip38',
'chains',
'memo',
'objects',
'objecttypes',
'operationids',
'operations',
'signedtransactions',
'transactions',
]
known_chains = {
"BTS": {
"chain_id": "4018d7844c78f6a6c41c6a552b898022310fc5dec06da467ee7905a8dad512c8",
"core_symbol": "BTS",
"prefix": "BTS"},
"GPH": {
"chain_id": "b8d1603965b3eb1acba27e62ff59f74efa3154d43a4188d381088ac7cdf35539",
"core_symbol": "CORE",
"prefix": "GPH"},
"TEST": {
"chain_id": "39f5e2ede1f8bc1a3a54a7914414e3779e33193f1f5693510e73cb7a87617447",
"core_symbol": "TEST",
"prefix": "TEST"},
"Obelisk": {
"chain_id": "1cfde7c388b9e8ac06462d68aadbd966b58f88797637d9af805b4560b0e9661e",
"core_symbol": "GOV",
"prefix": "FEW"},
"Scnrfp": {
"chain_id": "a8a61755aaa9d2c19a5989490bbc4195f37f147be3db3dddcf0e06d373b397ce",
"core_symbol": "SCNRFP",
"prefix": "SCNRFP"}
}
#: Object types for object ids
object_type = {}
object_type["null"] = 0
object_type["base"] = 1
object_type["account"] = 2
object_type["asset"] = 3
object_type["force_settlement"] = 4
object_type["committee_member"] = 5
object_type["witness"] = 6
object_type["limit_order"] = 7
object_type["call_order"] = 8
object_type["custom"] = 9
object_type["proposal"] = 10
object_type["operation_history"] = 11
object_type["withdraw_permission"] = 12
object_type["vesting_balance"] = 13
object_type["worker"] = 14
object_type["balance"] = 15
object_type["OBJECT_TYPE_COUNT"] = 16
#: Operation ids
ops = [
"transfer",
"limit_order_create",
"limit_order_cancel",
"call_order_update",
"fill_order",
"account_create",
"account_update",
"account_whitelist",
"account_upgrade",
"account_transfer",
"asset_create",
"asset_update",
"asset_update_bitasset",
"asset_update_feed_producers",
"asset_issue",
"asset_reserve",
"asset_fund_fee_pool",
"asset_settle",
"asset_global_settle",
"asset_publish_feed",
"witness_create",
"witness_update",
"proposal_create",
"proposal_update",
"proposal_delete",
"withdraw_permission_create",
"withdraw_permission_update",
"withdraw_permission_claim",
"withdraw_permission_delete",
"committee_member_create",
"committee_member_update",
"committee_member_update_global_parameters",
"vesting_balance_create",
"vesting_balance_withdraw",
"worker_create",
"custom",
"assert",
"balance_claim",
"override_transfer",
"transfer_to_blind",
"blind_transfer",
"transfer_from_blind",
"asset_settle_cancel",
"asset_claim_fees",
"fba_distribute",
"bid_collateral",
"execute_bid",
]
operations = {o: ops.index(o) for o in ops}
def getOperationNameForId(i):
""" Convert an operation id into the corresponding string
"""
for key in operations:
if int(operations[key]) is int(i):
return key
return "Unknown Operation ID %d" % i
graphenelib
pycryptodome==3.4.6
scrypt==0.7.1
Events==0.2.2
pycryptodomex>=3.4.6
scrypt>=0.7.1
Events>=0.2.2
pyyaml
pytest
pytest-mock
......
......@@ -11,24 +11,24 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.1.11'
VERSION = '0.19.0'
setup(
name='bitshares',
name='steemi',
version=VERSION,
description='Python library for bitshares',
description='Unofficial Python library for STEEM',
long_description=open('README.md').read(),
download_url='https://github.com/xeroc/python-bitshares/tarball/' + VERSION,
author='Fabian Schuh',
author_email='Fabian@chainsquad.com',
maintainer='Fabian Schuh',
maintainer_email='Fabian@chainsquad.com',
url='http://www.github.com/xeroc/python-bitshares',
keywords=['bitshares', 'library', 'api', 'rpc'],
download_url='https://github.com/holgern/pySteemi/tarball/' + VERSION,
author='Holger Nahrstaedt',
author_email='holger@nahrstaedt.de',
maintainer='Holger Nahrstaedt',
maintainer_email='holger@nahrstaedt.de',
url='http://www.github.com/holgern/pySteemi',
keywords=['steem', 'library', 'api', 'rpc'],
packages=[
"bitshares",
"bitsharesapi",
"bitsharesbase"
"steem",
"steemapi",
"steembase"
],
classifiers=[
'License :: OSI Approved :: MIT License',
......@@ -45,7 +45,7 @@ setup(
"appdirs",
"Events",
"scrypt",
"pycryptodome", # for AES, installed through graphenelib already
"pycryptodomex", # for AES, installed through graphenelib already
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
......
#from .steem import Steem
__all__ = [
#"steem",
"aes",
#"account",
#"amount",
#"asset",
#"block",
#"blockchain",
#"dex",
#"market",
#"storage",
#"price",
"utils",
#"wallet",
#"committee",
#"vesting",
#"proposal",
#"message"
]
from bitshares.instance import shared_bitshares_instance
from steem.instance import shared_steem_instance
from .exceptions import AccountDoesNotExistsException
from .blockchainobject import BlockchainObject
......
from Crypto import Random
from Crypto.Cipher import AES
import hashlib
import base64
try:
from Cryptodome import Random
from Cryptodome.Cipher import AES
except ImportError:
try:
from Crypto import Random
from Crypto.Cipher import AES
except ImportError:
raise ImportError("Missing dependency: pyCryptodome")
class AESCipher(object):
"""
......
File moved
File moved
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment