| title | PY: Power Up BEX |
|---|---|
| position | 24 |
| description | How to power up your BEX to BEX POWER using Python. |
| layout | full |
Full, runnable src of Power Up BEX can be downloaded as part of the PY tutorials repository.
In this tutorial we show you how to check the BEX balance of an account on the dPay blockchain and how to power up your BEX into BEX POWER using the commit class found within the dpay-python library.
The dPay python library has a built-in function to transmit transactions to the blockchain. We are using the transfer_to_vesting method found within the commit class in the library. When you power up you convert your BEX into BEX POWER to increase your influence on dSite, dPeeps or dSocial. Before we do the conversion, we use the get_account function to check the current BEX balance of the account to see what is available to power up. This is not strictly necessary but adds to the useability of the process. The transfer_to_vesting method has 3 parameters:
- amount - The amount of BEX to power up. This must be of the
floatdata type - to - The account to where the BEX will be powered up
- account - The source user account for the transfer
- App setup - Library install and import. Connection to testnet
- User information and dPay node - Input user information and connection to dPay node
- Check balance - Check current vesting balance of user account
- Conversion amount - Input power up amount and check valid transfer
- Commit to blockchain - Commit transaction to blockchain
In this tutorial we use 2 packages:
dpay- dpay-python library and interaction with Blockchainpick- helps select the query type interactively
We import the libraries and connect to the testnet.
import dpaybase
import dpay
from dpay.amount import Amount
from pick import pick
dpaybase.chains.known_chains['DPAY'] = {
'chain_id': '79276aea5d4877d9a25892eaa01b0adf019d3e5cb12a97478df3298ccdd01673',
'prefix': 'DWT', 'dpay_symbol': 'BEX', 'bbd_symbol': 'BBD', 'vests_symbol': 'VESTS'
}Because this tutorial alters the blockchain we connect to a testnet so we don't create spam on the production server.
We require the private active key of the user in order for the conversion to be committed to the blockchain. This is why we are using a testnet. The values are supplied via the terminal/console before we initialize the dpay class. There are some demo accounts available but we encourage you to create your own accounts on this testnet and create balances you can claim; it's good practice.
#capture user information
username = input('Enter username: ') #demo account: cdemo
wif = input('Enter private ACTIVE key: ') #demo account: 5KaNM84WWSqzwKzY82fXPaUW43idbLnPqf5SfjGxLfw6eV2kAP3
#connect node and private active key
client = dpay.DPay(nodes=['https://testnet.dpays.io'], keys=[wif])In order to give the user enough information to make the conversion we check the current balance of the account using the get_account function.
#check valid user and get account balance
userinfo = client.get_account(username)
if(userinfo is None) :
print('Oops. Looks like user ' + username + ' doesn\'t exist on this chain!')
exit()
balance = userinfo['balance']
print('Available BEX balance: ' + balance + '\n')
input('Press any key to continue')The results of the query are displayed in the console/terminal.
Both the amount and the to parameters are assigned via input from the terminal/console. The user is given the option to power up the BEX to their own account or to another user's account. The amount has to be greater than zero and no more than the total available BEX of the user. If you are using one of dSite's demo accounts, please leave some BEX for others to power up! We also check the to account to make sure it's a valid account name.
#choice of account
title = 'Please choose an option for an account to transfer to: '
options = ['SELF', 'OTHER']
option, index = pick(options, title)
if (option == 'OTHER') :
#account to power up to
to_account = input('Please enter the ACCOUNT to where the BEX will be transferred: ')
#check valid username
result = client.get_account(to_account)
if (not result) :
print(to_account + ' doesn\'t exist on this chain!')
exit()
else :
print('\n' + 'Power up BEX to own account' + '\n')
to_account = username
#amount to power up
amount = float(input('Please enter the amount of BEX to power up: '))Now that all the parameters have been assigned we can continue with the actual transmission to the blockchain. The output and commit is based on the validity of the amount that has been input.
#parameters: amount, to, account
if (amount == 0) :
print('\n' + 'No BEX entered for powering up')
exit()
else :
if (amount > Amount(balance).amount) :
print('\n' + 'Insufficient funds available')
exit()
else :
client.transfer_to_vesting(amount, to_account, username)
print('\n' + str(amount) + ' BEX has been powered up successfully')The result of the power up transfer is displayed on the console/terminal.
As an added check we also display the new BEX balance of the user on the terminal/console
#get new account balance
userinfo = client.get_account(username)
balance = userinfo['balance']
print('New BEX balance: ' + balance)We encourage users to play around with different values and data types to fully understand how this process works. You can also check the balances and transaction history on the testnet portal.
- review dev requirements
- clone this repo
cd tutorials/24_power_up_dpaypip install -r requirements.txtpython index.py- After a few moments, you should see a prompt for input in terminal screen.