Howto: An Introduction to Python-BitShares

in #python7 years ago (edited)

btsSwissArmyKnife.png

<div class="text-justify"><p dir="auto"> <p dir="auto">What I will describe here are a few very important items I discovered about the versatile and comprehensive Python-BitShares library. It took me an entire day to overcome the issues I faced. However, armed with the info I provide here it should be very easy for anyone to avoid those struggles. Looking back on it the primary problem I had was just getting the right context for the library to run in, and finding a way to delete the SQLite wallet database so I could create one I could add my private keys to. <hr /> <h3>Preliminaries / Prerequisites I may be new to Python programming but I found it relatively easy to get started and become productive with it. If you don't have a programming or technical background it may be challenging but if you persevere, the skill you develop will serve you well for many years to come, not only for blockchain work but in many other fields as well.<p> <p dir="auto">I assume the reader is comfortable with obtaining private keys for his BitShares account and using computers and programming in general. The more experience you have the easier it will be. All code and discussion are for Linux only, however once you get Python installed on your platform of choice the operating system is mostly irrelevant. <p dir="auto">The code used in this introduction is very simple. It does only one thing: monitor a witness for missed blocks and when the conditions are right uses the <strong>update_witness API call to broadcast a message on the BitShars blockchain to activate a standby witness node. I operate many full nodes, and I wanted to extend Roeland's program to make use of more than one backup node. In the future I may extend the program further so multiple switcher monitors can be used to provide even more fault tolerance and provide redundancy for the monitor itself. Aside from a text editor and a BitShares account with a balance of BTS to pay fees, the following links provide the essentials you will need: <p dir="auto"><br /><br /><span>Python-BitShares on github: <a href="http://python-bitshares.readthedocs.io/en/latest/" target="_blank" rel="noreferrer noopener" title="This link will take you away from hive.blog" class="external_link">http://python-bitshares.readthedocs.io/en/latest/<span> Uptick: <a href="http://uptick.readthedocs.io/en/latest/" target="_blank" rel="noreferrer noopener" title="This link will take you away from hive.blog" class="external_link">http://uptick.readthedocs.io/en/latest/<span> Python: <a href="https://www.python.org/about/gettingstarted/" target="_blank" rel="noreferrer noopener" title="This link will take you away from hive.blog" class="external_link">https://www.python.org/about/gettingstarted/ <p dir="auto">Please take note that the library's documentation is very new and although it provides much information is still lacking important details. It is mostly a collection of small code snippets and few if any complete examples. It appeared to be written quickly to capture the main points and leave details for later. Not such a good approach to encourage use. I found navigating the docs to be difficult and the search capability very limited. The docs could also be better organized. I was unable to find <a href="https://python-bitshares.readthedocs.io/en/latest/installation.html" target="_blank" rel="noreferrer noopener" title="This link will take you away from hive.blog" class="external_link">this page for example, which should be under the QuickStart section but isn't. This article is my offering to address some of these problems. I will provide a summary and submit it to github so xeroc can update his documentation. <hr /> <h3>Installing Python-BitShares The first problem I had was how to install the library. I prefer to use pip to install python packages, but I could not find the proper name to use. Xeroc and others refer to the python-bitshares library by several names: PyBitShares, python-bitshares, piston, uptick, python-graphene... Not all of these refer to the same thing, and it lends to confusion. Thus my first installation attempt I downloaded a zip archive of the python-bitshares library from github and did a manual installation. Please note that the installation link I referred to above provides info on installing manually or by using pip (pip for python3 or pip3). The correct name to use when installing with pip is simply "bitshares", as in: <p dir="auto"><center>pip3 install bitshares <p dir="auto">Although it isn't required, you may find the uptick program useful. The documentation for the standalone uptick program is even more sparse than for the library. It is a separate python program that works with python-bitshares and may help you create a wallet and add private keys to it for use by programs built with python-bitshares. I did use it initially but found it wasn't necessary to use with this switcher project. <hr /> <h3>Creating a Wallet To do much of anything useful with python-bitshares you will need a BitShares account with some BTS funds in it to pay the transaction fees required by most BitShares activities. This implied requirement is not mentioned anywhere in the documentation. That seems like an obvious requirement but it didn't occur to me until after many trials and experiments. Error messages can be very misleading, for example a "MissingKeyError" when I used the update_witness API call. The actual problem wasn't a missing key but rather the one provided was not valid b/c it didn't have a BTS balance. The breakthrough came when I realized a fee is required to broadcast the update_witness API message and the private key I used was not for a funded BitShares account. So I added the Active key for my witness account. You could also use your owner key, but that is bad practice for a witness. I am not sure if a witness account is necessary, or if any bitshares account with a BTS balance could be used. The update_witness API call may be restricted to only witness accounts or Life Time Member (LTM) accounts. <p dir="auto"> <p dir="auto">I actually wrote a very short and simple program to create a new wallet and install private keys in it. You can also do that with uptick. The important point here is you need to setup a python-bitshares wallet to contain the private key for your witness. Make sure the account you use has a BTS balance. I am not sure when the wallet gets created but it took quite a while to finally figure out how to begin with a "no wallet exists" condition. Uptick does not have a "delete wallet" command either. Unless your program starts without a wallet and it creates one and adds keys, you will need some type of separate, standalone program to setup a wallet. The python-bitshares library uses a SQLite database to store various things like your private key. Not certain how secure that is, but there is one other way keys can be provided which doesn't involve the SQLite database. Consult the python-bitshares docs for more info on that. It means moving the security concern from SQLite to your self initializing program. <p dir="auto"> You can use the <b>walletInit.py program below to create a new wallet and add a private key to it. Change the walletPassword, privateKey and a URL to a full node, then run the program. It will report whether it finds a wallet and if not it will create one. Run it again and it will add your private key to it. If you need to delete the wallet to start fresh uncomment the "os.remove" line or run the command manually: `rm -rf ~.local/share/bitshares/bitshares.sqlite`. <pre><code>#!/usr/bin/env python3 from bitshares import BitShares import os walletPassword = "YourUltraSecretWalletPassword" privateKey = "5K.....................................1Aw" bitshares = BitShares("ws://localhost:port/ws") #os.remove("/home/yourAccountName/.local/share/bitshares/bitshares.sqlite") if bitshares.wallet.created(): print("A wallet already exists, good. Adding your BitShares private key...") bitshares.wallet.unlock(walletPassword) bitshares.wallet.addPrivateKey(privateKey) else: print("No wallet exists yet, creating one now...") bitshares.wallet.newWallet(walletPassword) print("\nYou should see many values printed below on successful install,") print("including recently_missed_count and next_maintenance_time\n") print(bitshares.info(), "\n") <hr /> <h3>The btsNodeSwitcher.py Program<pre><code>#!/usr/bin/env python3 # # This modified script from roelandp will monitor a witness' # missed blocks and broadcast an update_witness msg when they # excede the number defined by the "tresholdwitnessflip". # import sys import time from bitshares.witness import Witness from bitshares import BitShares # witness/delegate/producer account name to check witness = "YourBitSharesWitnessAcccount" # This account must have a BTS balance to pay fees walletpwd = "YourUptickWalletPassword" # Your UPTICK / bitshares.sqlite wallet unlock code witnessurl = "https://bitsharestalk.org/" # Your Witness Announcement url # Array of alternate signing keys we'll switch to in round-robin fashion upon failure backupsigningkeys = [ "BTS5...........................................qjTpc1", "BTS8...........................................MNWcfX", "BTS5...........................................ZtjU9P", "BTS6...........................................gXZ2nU" ] websocket = "ws://localhost:port/ws" # API node to connect to! next_key = int(0) # Index of next signing key to use when a failure is detected check_rate = int(30) # Frequency in seconds between each sample of missed blocks loopcounter = int(0) # Increments each time the missed block count is sampled startmisses = int(-1) # Holds number of misses (set to -1 to initialize counters) currentmisses = int(0) # Current number of missed blocks according to blockchain counterOnLastMiss = int(0) # Last loopcounter value we missed a block on resetAfterNoMisses = int(20) # If no missed blocks for this many samples reset counters tresholdwitnessflip = int(3) # after how many blocks the witness should switch to different signing key #currentmisses = int(999) # To test the update_witness call set this to current actual misses -1 #startmisses = int(1000) # To test set this to the current number of missed blocks #tresholdwitnessflip = int(0) # To test set this to zero # Setup node instance bitshares = BitShares(websocket) # Check how many blocks the witness has missed and switch signing keys if required def check_witness(): global counterOnLastMiss global lastMissedSample global currentmisses global startmisses global next_key status = Witness(witness, bitshares_instance=bitshares) current_key = status['signing_key'] missed = status['total_missed'] print("\r%d samples, missed=%d, key=%.16s..." % (loopcounter, missed, current_key), end='') if start misses == -1: # Initialize counters startmisses = currentmisses = missed counterOnLastMiss = loopcounter # Reset periodically to prohibit switching on # small accumulated misses over long periods if missed > currentmisses: print("\nMissed another block! (%d)" % missed) currentmisses = missed counterOnLastMiss = loopcounter if (currentmisses - startmisses) >= tresholdwitnessflip: # Flip witnesses to backup print("Time to switch! (using key %s)" % backupsigningkeys[next_key]) bitshares.wallet.unlock(walletpwd) bitshares.update_witness(witness, url=witnessurl, key=backupsigningkeys[next_key]) time.sleep(6) # wait for 2 witness cycles status = Witness(witness, bitshares_instance=bitshares) if current_key != status['signing_key']: current_key = status['signing_key'] print("Witness updated. Now using " + current_key) startmises = -1 next_key = (next_key + 1) % len(backupsigningkeys) else: print("Signing key did not change! Will try again in %d seconds" % check_rate) else: # If we haven’t missed any for awhile reset counters if loopcounter - counterOnLastMiss >= resetAfterNoMisses: startmisses = -1 # Main Loop if __name__ == '__main__': if not bitshares.wallet.created(): print("Please use uptick or your own program to create a proper wallet.") exit(-2) while True: check_witness() sys.stdout.flush() loopcounter += 1 time.sleep(check_rate) <p dir="auto"> Updated on Christmas day to reset counters after 20 samples and no missed blocks. <center><h2>That's about it. Thanks for dropping by! <span> In the process of implementing a program to monitor a witness node for missing blocks and automatically switching the signing key to a backup witness node, I asked the community if such a program already existed for BitShares. <a href="/@roelandp">@RoelandP responded with the program he developed based on <a href="/@xeroc">@xeroc's Python-BitShares library. Many thanks and much gratitude to both of these men who truly have contributed greatly to Steemit and BitShares. <span> The program RoelandP wrote can be found on github here: <a href="https://github.com/roelandp/Bitshares-Witness-Monitor/blob/master/witnesshealth.py" target="_blank" rel="noreferrer noopener" title="This link will take you away from hive.blog" class="external_link">https://github.com/roelandp/Bitshares-Witness-Monitor/blob/master/witnesshealth.py. It also includes notification functionality and you may find it more suitable to your needs. It is very simple and was easy to modify to handle more than one failover node. Here is the version I created that suits my needs:
Sort:  

Good info! resteamed and followed

it's not possible tp me....looking very hard

Are you a witness? If not this may not be a good choice to learn from for you. The scope of this information is a small programming project useful to graphene witnesses, but also to those who would like to learn how to use the python-bitshares Python library.

Traders with a technical inclination who want to create a trading bot, liquidity providers that want to automate their market making or people who just want to play around and learn the BitShares API to do whatever - all might find python-bitshares the perfect platform for such things.

My main reason for publishing this is to provide a few clues I had trouble with as I wrote this nodeSwitcher program.

One thing for sure, it isn't possible unless you try! Happy Holiday to you, and thanks for stopping by.

Thanks for the information

Need some time to digest it. Great information sharing though!

Great! I am looking for a simple maker liquidity bot for BitShares.

resteemed. Nice write up. Merry XMas

Thank you very much! Merry "XMas" to you too!

This post is usefull and valuable for us.We can learn from it how can make bitshare.Thanky for your good posting and wishing good luck.

Merry Christmas.............. Merry Christmas............Merry Christmas.......

DQmS6GbdX7khU3bM6AqMzyMfxMZB6dHkDDmw255exjEJAUB.gif
DQmS6GbdX7khU3bM6AqMzyMfxMZB6dHkDDmw255exjEJAUB.giftenor (5).gifgiphy (6).gif

I woke up Christmas morning and saw this beautiful gift of a python functionality for Bitshares. It wasn't under my tree, but it might as well have been. :)

Question: Any chance of explaining how to run a market making bot in python without using btsbots (which I hear is now defunct).

I'd love to give my bot 100 BTS and see what it can do with them by trading automatically while I sleep. If I lose that game, at least someone else there will benefit from my loss.. so I think thats fine too. :)

Thx for the Christmas Cheer there @intelliguy!

To answer your question tho, I'm not the guy you want to explain market making, but there are plenty of folks around here and BitShares that are capable of answering your question in detail. Eventually I will become curious on how to do that myself but for now I'm not motivated enough to jump thru the learning required to program trading bots.

Happy Holidays to you Sir!

Great to see this technical information and more how-to being posted for BitShares. Our post on setting up full node (for non-witness, those who just want to be next to own node on the DEX) coming soon!

@full-steem-ahead, I've started investigating the process of becoming a witness on bitshares, basically reading everything I can get my hands. Where would you point someone and say start here? I'm currently looking at numerous witnesse's github accounts and it's a little intimidating but I'm not going to shy away from it. I have a programming background and I just need some pointers to keep me focused in the right direction. Any help is greatly appreciated. All the best and thank you.

We all started out with zero knowledge of blockchain technology. I can't think of a single place to direct you to get up to speed quickly. @stan has an excellent series of articles in his blog on BitShares, but not a good place to go for the technical information you're looking for.

Best advice I can give you is to read the bitsharestalk.org forum and hangout on telegram. Main thing is learn to ask questions that will inform you of what you don't know. When you start off with knowing very little it should be easy to come up with such questions. As you learn more your questions should become more focused. At some point you'll know enough that what you seek to do will seem doable, like you know enough to handle it, and then you'll start. With genuine curiosity and persistence you'll become a valued member of the community, but don't expect your journey to be easy. Our documentation has much to be desired. There is A TON of info to learn and in this arena things change rapidly.

Thanks for your interest and good luck to you.

Could you post creating a UIA example via python?

Not without learning how first. I have only done that once and it was in BitShares version 0.9x before graphene. Not sure but I thought there was a video on how to create a UIA in BitShares. What I can tell you that may help is that @virtualgrowth is quite good at that, and is a very helpful and positive member of this community.

What I will also tell you (and I suspect VG would as well) is that you need to think about the many parameters you'll need to specify to create the UIA. UIAs are essentially creating your very own cryptocurrency, your own coin. What is the maximum number you will allow to be distributed, how will I manage the fee pool for those without a BTS balance that want to trade your UIA, and many many other details YOU will need to decide before you can create your UIA.

I recommend you contact VirtualGrowth. He has the experience you're looking for.

Just noticed you asked for a python example. Not sure if VG has python experience or not, but regardless of which wallet or program you use to create the UIA, the parameters are many and require thought and understanding. VG can definitely help with that. Good luck.