From 118d459b7c6ea9435f2b99265abbbd83d54acc07 Mon Sep 17 00:00:00 2001 From: inertia <amartin75@gmail.com> Date: Wed, 7 Jul 2021 16:53:10 -0700 Subject: [PATCH] #44 more live-code examples --- _tutorials-python/account_recovery.md | 23 ++++++++++++++++--- _tutorials-python/claim_rewards.md | 13 ++++++++++- _tutorials-python/convert_hbd_to_hive.md | 13 ++++++++++- _tutorials-python/delegate_power.md | 13 ++++++++++- _tutorials-python/edit_content_patching.md | 13 +++++++++-- _tutorials-python/follow_a_user.md | 11 ++++++++- _tutorials-python/grant_active_permission.md | 13 ++++++++++- _tutorials-python/grant_posting_permission.md | 13 ++++++++++- _tutorials-python/password_key_change.md | 13 ++++++++++- _tutorials-python/power_down.md | 13 ++++++++++- _tutorials-python/power_up_hive.md | 13 ++++++++++- _tutorials-python/reblogging_post.md | 13 +++++++++-- _tutorials-python/submit_comment_reply.md | 16 +++++++++++-- _tutorials-python/submit_post.md | 11 ++++++++- _tutorials-python/transfer_hive_and_hbd.md | 13 ++++++++++- ...ransfer_hive_and_hbd_to_savings_balance.md | 13 ++++++++++- _tutorials-python/vote_on_content.md | 15 +++++++++--- .../witness_listing_and_voting.md | 13 ++++++++++- tutorials/python/10_submit_post/index.py | 4 ++-- .../python/11_submit_comment_reply/index.py | 4 ++-- .../python/12_edit_content_patching/index.py | 6 ++--- tutorials/python/14_reblogging_post/index.py | 6 ++--- tutorials/python/17_vote_on_content/index.py | 8 +++---- tutorials/python/18_follow_a_user/index.py | 4 ++-- .../python/21_transfer_hive_and_hbd/index.py | 6 +++-- .../22_witness_listing_and_voting/index.py | 6 +++-- tutorials/python/23_claim_rewards/index.py | 6 +++-- tutorials/python/24_power_up_hive/index.py | 6 +++-- tutorials/python/25_power_down/index.py | 6 +++-- tutorials/python/27_delegate_power/index.py | 6 +++-- .../30_grant_posting_permission/index.py | 8 ++++--- .../31_grant_active_permission/index.py | 8 ++++--- .../python/32_convert_hbd_to_hive/index.py | 6 +++-- .../index.py | 6 +++-- .../python/34_password_key_change/index.py | 6 +++-- tutorials/python/35_account_recovery/index.py | 15 ++++++++---- 36 files changed, 293 insertions(+), 69 deletions(-) diff --git a/_tutorials-python/account_recovery.md b/_tutorials-python/account_recovery.md index a965288f..bfc7b3b0 100644 --- a/_tutorials-python/account_recovery.md +++ b/_tutorials-python/account_recovery.md @@ -76,7 +76,10 @@ new_password = getpass.getpass('new password for account: ') recovery_account = input('account owner (recovery account name): ') recovery_account_private_key = getpass.getpass('account owner private ACTIVE key: ') -client = Hive('http://127.0.0.1:8090', keys=[recovery_account_private_key]) +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + +client = Hive(node_url, keys=[recovery_account_private_key]) account = Account(account, blockchain_instance=client) recovery_account = Account(recovery_account, blockchain_instance=client) ``` @@ -189,8 +192,11 @@ op_account_update_data = { The beem class is initialized once more but with the required WIF for this specific section. This is necessary when different keys are required at various steps. The `recover_account` function is transmitted to the blockchain via the `TransactionBuilder` operation in order to append the new private keys. The operation is then broadcast. ```python +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # recover account initialisation and transmission -client = Hive('http://127.0.0.1:8090', keys=[recovery_account_private_key]) +client = Hive(node_url, keys=[recovery_account_private_key]) op_recover_account = beembase.operations.Recover_account(**op_recover_account_data) @@ -213,8 +219,11 @@ print(result) The same basic process is followed as in the previous step. For this step however we require the new owner private key which is initialized in the beem class. The `TransactionBuilder` operation is used once more for the transmission to the blockchain. ```python +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # update account keys initialisation and transmission -client = Hive('http://127.0.0.1:8090', keys=[new_account_owner_private_key]) +client = Hive(node_url, keys=[new_account_owner_private_key]) op_account_update = beembase.operations.Account_update(**op_account_update_data) @@ -232,6 +241,14 @@ print('result') print(result) ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py35accountrecovery?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/claim_rewards.md b/_tutorials-python/claim_rewards.md index 4258a275..b2df2c41 100644 --- a/_tutorials-python/claim_rewards.md +++ b/_tutorials-python/claim_rewards.md @@ -56,8 +56,11 @@ We require the `private posting key` of the user in order for the claim to be br account = input('Enter username: ') wif_posting_key = getpass.getpass('Enter private POSTING key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node -client = Hive('http://127.0.0.1:8090', keys=[wif_posting_key]) +client = Hive(node_url, keys=[wif_posting_key]) ``` #### 3. Check reward balance <a name="balance"></a> @@ -147,6 +150,14 @@ print('\t' + str(reward_hive) + '\n' + ) ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py23claimrewards?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/convert_hbd_to_hive.md b/_tutorials-python/convert_hbd_to_hive.md index 9e2fac85..aae2d4b3 100644 --- a/_tutorials-python/convert_hbd_to_hive.md +++ b/_tutorials-python/convert_hbd_to_hive.md @@ -60,8 +60,11 @@ We require the `private active key` of the user in order for the conversion to b account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 3. Check balance <a name="balance"></a> @@ -116,6 +119,14 @@ print('\n' + 'REMAINING ACCOUNT BALANCE:' + '\n' + str(total_hive) + '\n' + str( The HIVE balance will not yet have been updated as it takes 3.5 days to settle. The HBD will however show the new balance. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py32converthbdtohive?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/delegate_power.md b/_tutorials-python/delegate_power.md index 0cf11160..927a8e93 100644 --- a/_tutorials-python/delegate_power.md +++ b/_tutorials-python/delegate_power.md @@ -52,8 +52,11 @@ We require the `private active key` of the user in order for the transaction to account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # check valid user account = Account(account, blockchain_instance=client) @@ -154,6 +157,14 @@ Note that if the user decides to delegate a specific amount, we capture the amou A confirmation of the transaction is displayed on the UI. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py27delegatepower?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/edit_content_patching.md b/_tutorials-python/edit_content_patching.md index 882d799e..02a45a19 100644 --- a/_tutorials-python/edit_content_patching.md +++ b/_tutorials-python/edit_content_patching.md @@ -61,7 +61,8 @@ The user inputs the author and permlink of the post that they wish to edit. See post_author = input('Please enter the AUTHOR of the post you want to edit: ') #connect node -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet #check valid post_author try: @@ -74,7 +75,7 @@ post_permlink = input('Please enter the PERMLINK of the post you want to edit: ' #get details of selected post try: - details = beem.comment.Comment(post_author + '/' + post_permlink) + details = beem.comment.Comment(post_author + '/' + post_permlink, blockchain_instance=client) except: print('Oops. Looks like ' + post_author + '/' + post_permlink + ' doesn\'t exist on this chain!') exit() @@ -151,6 +152,14 @@ print('\n' + 'Content of the post has been successfully updated: ' + str(broadca A simple confirmation is displayed on the screen for a successful commit. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py12editcontentpatching?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/follow_a_user.md b/_tutorials-python/follow_a_user.md index df1eec76..7104f17d 100644 --- a/_tutorials-python/follow_a_user.md +++ b/_tutorials-python/follow_a_user.md @@ -65,7 +65,8 @@ if author == account: exit() # connect node and private posting key, demo account being used: cdemo, posting key: 5JEZ1EiUjFKfsKP32b15Y7jybjvHQPhnvCYZ9BW62H1LDUnMvHz -hive = beem.Hive('http://127.0.0.1:8090') +# hive = beem.Hive('https://testnet.openhive.network') # Public Testnet +hive = beem.Hive('http://127.0.0.1:8090') # Local Testnet ``` #### 3. Check author status<a name="authorstat"></a> @@ -154,6 +155,14 @@ print(option + ' ' + author.name + ": " + str(broadcast_tx)) A simple confirmation of the chosen action is printed on the screen. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py18followauser?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/grant_active_permission.md b/_tutorials-python/grant_active_permission.md index 73af15e2..d2052e06 100644 --- a/_tutorials-python/grant_active_permission.md +++ b/_tutorials-python/grant_active_permission.md @@ -60,8 +60,11 @@ We require the `private active key` of the user in order for the `allow` or `dis account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect to production server with active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 2. Username validation <a name="username"></a> @@ -121,6 +124,14 @@ else: print('active permission for ' + foreign.name + ' has been removed') ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py31grantactivepermission?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/grant_posting_permission.md b/_tutorials-python/grant_posting_permission.md index 5fc2563f..c7843759 100644 --- a/_tutorials-python/grant_posting_permission.md +++ b/_tutorials-python/grant_posting_permission.md @@ -52,8 +52,11 @@ We require the `private active key` of the user in order for the `allow` or `dis account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect to production server with active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 2. Username validation <a name="username"></a> @@ -113,6 +116,14 @@ else: print('posting permission for ' + foreign.name + ' has been removed') ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py30grantpostingpermission?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/password_key_change.md b/_tutorials-python/password_key_change.md index 3ae7d319..3a27945b 100644 --- a/_tutorials-python/password_key_change.md +++ b/_tutorials-python/password_key_change.md @@ -66,7 +66,10 @@ wif_old_owner_key = str( PasswordKey(account, old_password, "owner").get_private_key() ) -client = Hive('http://127.0.0.1:8090', keys=[wif_old_owner_key]) +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + +client = Hive(node_url, keys=[wif_old_owner_key]) account = Account(account, blockchain_instance=client) ``` @@ -136,6 +139,14 @@ Assert Exception:_db.head_block_time() - account_auth.last_owner_update > HIVE_O You will need to wait at least an hour before attempting this again. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py34passwordkeychange?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/power_down.md b/_tutorials-python/power_down.md index 519a358b..738924ad 100644 --- a/_tutorials-python/power_down.md +++ b/_tutorials-python/power_down.md @@ -52,8 +52,11 @@ We require the `private active key` of the user in order for the conversion to b account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 3. Check balance <a name="balance"></a> @@ -149,6 +152,14 @@ print('Insufficient funds available') The result is displayed on the console/terminal. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py25powerdown?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/power_up_hive.md b/_tutorials-python/power_up_hive.md index ede9beff..56c3e0b6 100644 --- a/_tutorials-python/power_up_hive.md +++ b/_tutorials-python/power_up_hive.md @@ -55,8 +55,11 @@ We require the `private active key` of the user in order for the conversion to b account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 3. Check balance <a name="balance"></a> @@ -128,6 +131,14 @@ balance = account['balance'] print('New balance: ' + str(balance)) ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py24poweruphive?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/reblogging_post.md b/_tutorials-python/reblogging_post.md index 659b6233..bf7e9854 100644 --- a/_tutorials-python/reblogging_post.md +++ b/_tutorials-python/reblogging_post.md @@ -40,7 +40,8 @@ from beem.comment import Comment from beem.transactionbuilder import TransactionBuilder from beembase.operations import Custom_json -hive = Hive(['http://127.0.0.1:8090']) +# hive = Hive(['https://testnet.openhive.network']) # Public Testnet +hive = Hive(['http://127.0.0.1:8090']) # Local Testnet ``` #### 2. Post list <a name="post-list"></a> @@ -49,7 +50,7 @@ Next we will fetch and make list of accounts and setup `pick` properly. ```python q = Query(limit=5, tag="") -d = Discussions() +d = Discussions(blockchain_instance=hive) #author list from hot post list posts = d.get_discussions('hot', q, limit=5) @@ -98,6 +99,14 @@ print("Reblogged successfully: " + str(broadcast_tx)) If transaction is successful you shouldn't see any error messages, otherwise you will be notified. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py14rebloggingpost?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/submit_comment_reply.md b/_tutorials-python/submit_comment_reply.md index 714848df..e118c8a7 100644 --- a/_tutorials-python/submit_comment_reply.md +++ b/_tutorials-python/submit_comment_reply.md @@ -82,8 +82,11 @@ The random generator is limited to 10 characters in this case but the permlink c We initialize the beem class by connecting to the specific `testnet` node. We also require the `private posting key` of the contributing author in order to commit the post which is also specified during this operation. ```python +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + #connect node and private posting key -client = Hive('http://127.0.0.1:8090', keys=[wif]) +client = Hive(node_url, keys=[wif]) ``` #### 4. Post submission and result<a name="submit"></a> @@ -91,7 +94,8 @@ client = Hive('http://127.0.0.1:8090', keys=[wif]) The last step is to transmit the post through to the blockchain. All the defined parameters are signed and broadcasted. We also securely prompt for the posting key right before signing. ```python -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet tx = TransactionBuilder(blockchain_instance=client) tx.appendOps(Comment(**{ "parent_author": '', @@ -115,6 +119,14 @@ A simple confirmation is printed on the screen if the post is committed successf You can also check on your local testnet using [database_api.find_comments]({{ '/apidefinitions/#database_api.find_comments' | relative_url }}) for the post. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py11submitcommentreply?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/submit_post.md b/_tutorials-python/submit_post.md index 93347b69..6ee2329a 100644 --- a/_tutorials-python/submit_post.md +++ b/_tutorials-python/submit_post.md @@ -89,7 +89,8 @@ The random generator is limited to 10 characters in this case but the permlink c The last step is to transmit the post through to the blockchain. All the defined parameters are signed and broadcasted. We also securely prompt for the posting key right before signing. ```python -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet tx = TransactionBuilder(blockchain_instance=client) tx.appendOps(Comment(**{ "parent_author": '', @@ -113,6 +114,14 @@ A simple confirmation is printed on the screen if the post is committed successf You can also check on your local testnet using [database_api.find_comments]({{ '/apidefinitions/#database_api.find_comments' | relative_url }}) for the post. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py10submitpost?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/transfer_hive_and_hbd.md b/_tutorials-python/transfer_hive_and_hbd.md index 18b8c70b..f84fc255 100644 --- a/_tutorials-python/transfer_hive_and_hbd.md +++ b/_tutorials-python/transfer_hive_and_hbd.md @@ -57,8 +57,11 @@ We require the `private active key` of the user in order for the transfer to be account = input('Enter username: ') wif_active_key = getpass.getpass('Active Key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 3. Check balance <a name="balance"></a> @@ -150,6 +153,14 @@ total_debt = account['hbd_balance'] print('\n' + 'REMAINING ACCOUNT BALANCE:' + '\n' + str(total_base) + '\n' + str(total_debt) + '\n') ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py21transferhiveandhbd?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/transfer_hive_and_hbd_to_savings_balance.md b/_tutorials-python/transfer_hive_and_hbd_to_savings_balance.md index 65a48a28..ee52214f 100644 --- a/_tutorials-python/transfer_hive_and_hbd_to_savings_balance.md +++ b/_tutorials-python/transfer_hive_and_hbd_to_savings_balance.md @@ -67,8 +67,11 @@ We require the `private active key` of the user in order for the transfer to be account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) ``` #### 3. Check balance <a name="balance"></a> @@ -145,6 +148,14 @@ print('\n' + 'REMAINING ACCOUNT BALANCE:' + '\n' + str(total_base) + '\n' + str( print('CURRENT SAVINGS BALANCE:' + '\n' + str(savings_base) + '\n' + str(savings_debt) + '\n') ``` +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py33transferhiveandhbdtosavingsbalance?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/vote_on_content.md b/_tutorials-python/vote_on_content.md index 63e26b5c..28324e0f 100644 --- a/_tutorials-python/vote_on_content.md +++ b/_tutorials-python/vote_on_content.md @@ -59,7 +59,8 @@ voter = input('Please enter your username (voter): ') # connect node # If using mainnet, try with demo account: cdemo, posting key: 5JEZ1EiUjFKfsKP32b15Y7jybjvHQPhnvCYZ9BW62H1LDUnMvHz -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet ``` #### 3. Check vote status<a name="votestat"></a> @@ -79,8 +80,8 @@ The vote status check is done with a simple query to the blockchain. # noinspection PyInterpreter print('checking vote status - getting current post votes') identifier = ('@' + author + '/' + permlink) -author_account = Account(author) -result = ActiveVotes(identifier) +author_account = Account(author, blockchain_instance=client) +result = ActiveVotes(identifier, blockchain_instance=client) print(len(result), ' votes retrieved') ``` @@ -139,6 +140,14 @@ When the function is executed the selected vote weight overrides any value previ A simple confirmation of the chosen action is printed on the screen. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py17voteoncontent?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/_tutorials-python/witness_listing_and_voting.md b/_tutorials-python/witness_listing_and_voting.md index 49c843ec..1dd4a017 100644 --- a/_tutorials-python/witness_listing_and_voting.md +++ b/_tutorials-python/witness_listing_and_voting.md @@ -51,8 +51,11 @@ We require the `private active key` of the user in order for the transaction to account = input('Enter username: ') wif_active_key = getpass.getpass('Active Key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # check valid user account = Account(account, blockchain_instance=client) @@ -108,6 +111,14 @@ else : A confirmation of the transaction to the blockchain is displayed on the UI. +--- + +#### Try it + +Click the play button below: + +<iframe height="400px" width="100%" src="https://replit.com/@inertia186/py22witnesslistingandvoting?embed=1&output=1" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe> + ### To Run the tutorial {% include local-testnet.html %} diff --git a/tutorials/python/10_submit_post/index.py b/tutorials/python/10_submit_post/index.py index a7e8292c..5b6203dd 100755 --- a/tutorials/python/10_submit_post/index.py +++ b/tutorials/python/10_submit_post/index.py @@ -22,7 +22,8 @@ for i in range(1, taglimit+1): #random generator to create post permlink permlink = ''.join(random.choices(string.digits, k=10)) -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet tx = TransactionBuilder(blockchain_instance=client) tx.appendOps(Comment(**{ "parent_author": '', @@ -40,4 +41,3 @@ signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print("Post created successfully: " + str(broadcast_tx)) - diff --git a/tutorials/python/11_submit_comment_reply/index.py b/tutorials/python/11_submit_comment_reply/index.py index e27c1319..0a001afd 100755 --- a/tutorials/python/11_submit_comment_reply/index.py +++ b/tutorials/python/11_submit_comment_reply/index.py @@ -15,7 +15,8 @@ body = input('Post Body: ') #random generator to create post permlink permlink = ''.join(random.choices(string.digits, k=10)) -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet tx = TransactionBuilder(blockchain_instance=client) tx.appendOps(Comment(**{ "parent_author": parent_author, @@ -32,4 +33,3 @@ signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print("Comment created successfully: " + str(broadcast_tx)) - diff --git a/tutorials/python/12_edit_content_patching/index.py b/tutorials/python/12_edit_content_patching/index.py index 80520544..214133d0 100755 --- a/tutorials/python/12_edit_content_patching/index.py +++ b/tutorials/python/12_edit_content_patching/index.py @@ -11,7 +11,8 @@ from diff_match_patch import diff_match_patch post_author = input('Please enter the AUTHOR of the post you want to edit: ') #connect node -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet #check valid post_author try: @@ -24,7 +25,7 @@ post_permlink = input('Please enter the PERMLINK of the post you want to edit: ' #get details of selected post try: - details = beem.comment.Comment(post_author + '/' + post_permlink) + details = beem.comment.Comment(post_author + '/' + post_permlink, blockchain_instance=client) except: print('Oops. Looks like ' + post_author + '/' + post_permlink + ' doesn\'t exist on this chain!') exit() @@ -79,4 +80,3 @@ signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print('\n' + 'Content of the post has been successfully updated: ' + str(broadcast_tx)) - diff --git a/tutorials/python/14_reblogging_post/index.py b/tutorials/python/14_reblogging_post/index.py index b1ed53e6..efc7c70c 100755 --- a/tutorials/python/14_reblogging_post/index.py +++ b/tutorials/python/14_reblogging_post/index.py @@ -9,9 +9,10 @@ from beem.comment import Comment from beem.transactionbuilder import TransactionBuilder from beembase.operations import Custom_json -hive = Hive(['http://127.0.0.1:8090']) +# hive = Hive(['https://testnet.openhive.network']) # Public Testnet +hive = Hive(['http://127.0.0.1:8090']) # Local Testnet q = Query(limit=5, tag="") -d = Discussions() +d = Discussions(blockchain_instance=hive) #author list from hot post list posts = d.get_discussions('hot', q, limit=5) @@ -48,4 +49,3 @@ signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print("Reblogged successfully: " + str(broadcast_tx)) - diff --git a/tutorials/python/17_vote_on_content/index.py b/tutorials/python/17_vote_on_content/index.py index 31bf311a..7ddf919f 100755 --- a/tutorials/python/17_vote_on_content/index.py +++ b/tutorials/python/17_vote_on_content/index.py @@ -11,7 +11,8 @@ voter = input('Please enter your username (voter): ') # connect node # If using mainnet, try with demo account: cdemo, posting key: 5JEZ1EiUjFKfsKP32b15Y7jybjvHQPhnvCYZ9BW62H1LDUnMvHz -client = Hive('http://127.0.0.1:8090') +# client = Hive('https://testnet.openhive.network') # Public Testnet +client = Hive('http://127.0.0.1:8090') # Local Testnet # capture variables author = input('Author of post/comment that you wish to vote for: ') @@ -21,8 +22,8 @@ permlink = input('Permlink of the post/comment you wish to vote for: ') # noinspection PyInterpreter print('checking vote status - getting current post votes') identifier = ('@' + author + '/' + permlink) -author_account = Account(author) -result = ActiveVotes(identifier) +author_account = Account(author, blockchain_instance=client) +result = ActiveVotes(identifier, blockchain_instance=client) print(len(result), ' votes retrieved') if result: @@ -61,4 +62,3 @@ if option == 'Add/Change vote': else: print('Voting has been cancelled') - diff --git a/tutorials/python/18_follow_a_user/index.py b/tutorials/python/18_follow_a_user/index.py index f082e2fe..ebe887a4 100755 --- a/tutorials/python/18_follow_a_user/index.py +++ b/tutorials/python/18_follow_a_user/index.py @@ -17,7 +17,8 @@ if author == account: exit() # connect node and private posting key, demo account being used: cdemo, posting key: 5JEZ1EiUjFKfsKP32b15Y7jybjvHQPhnvCYZ9BW62H1LDUnMvHz -hive = beem.Hive('http://127.0.0.1:8090') +# hive = beem.Hive('https://testnet.openhive.network') # Public Testnet +hive = beem.Hive('http://127.0.0.1:8090') # Local Testnet author = Account(author, blockchain_instance=hive) account = Account(account, blockchain_instance=hive) @@ -76,4 +77,3 @@ signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print(option + ' ' + author.name + ": " + str(broadcast_tx)) - diff --git a/tutorials/python/21_transfer_hive_and_hbd/index.py b/tutorials/python/21_transfer_hive_and_hbd/index.py index acc3c592..2eb088b3 100755 --- a/tutorials/python/21_transfer_hive_and_hbd/index.py +++ b/tutorials/python/21_transfer_hive_and_hbd/index.py @@ -7,8 +7,11 @@ from beem.account import Account account = input('Enter username: ') wif_active_key = getpass.getpass('Active Key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # get account balance for HIVE and HBD account = Account(account, blockchain_instance=client) @@ -60,4 +63,3 @@ total_base = account['balance'] total_debt = account['hbd_balance'] print('\n' + 'REMAINING ACCOUNT BALANCE:' + '\n' + str(total_base) + '\n' + str(total_debt) + '\n') - diff --git a/tutorials/python/22_witness_listing_and_voting/index.py b/tutorials/python/22_witness_listing_and_voting/index.py index 445c5ba8..b2422710 100755 --- a/tutorials/python/22_witness_listing_and_voting/index.py +++ b/tutorials/python/22_witness_listing_and_voting/index.py @@ -9,8 +9,11 @@ from beem.witness import Witness, WitnessesVotedByAccount account = input('Enter username: ') wif_active_key = getpass.getpass('Active Key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # check valid user account = Account(account, blockchain_instance=client) @@ -50,4 +53,3 @@ else : exit() account.disapprovewitness(witness_unvote) print('\n' + witness_unvote + ' has been removed from your voted for list') - diff --git a/tutorials/python/23_claim_rewards/index.py b/tutorials/python/23_claim_rewards/index.py index 9ee857f1..454f3daa 100755 --- a/tutorials/python/23_claim_rewards/index.py +++ b/tutorials/python/23_claim_rewards/index.py @@ -8,8 +8,11 @@ from beem.account import Account account = input('Enter username: ') wif_posting_key = getpass.getpass('Enter private POSTING key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node -client = Hive('http://127.0.0.1:8090', keys=[wif_posting_key]) +client = Hive(node_url, keys=[wif_posting_key]) # get account reward balances account = Account(account, blockchain_instance=client) @@ -73,4 +76,3 @@ print('\t' + str(reward_hive) + '\n' + '\t' + str(reward_hbd) + '\n' + '\t' + str(reward_vests) ) - diff --git a/tutorials/python/24_power_up_hive/index.py b/tutorials/python/24_power_up_hive/index.py index 7b35c3d5..6c8a4016 100755 --- a/tutorials/python/24_power_up_hive/index.py +++ b/tutorials/python/24_power_up_hive/index.py @@ -8,8 +8,11 @@ from beem.account import Account account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # check valid user and get account balance account = Account(account, blockchain_instance=client) @@ -53,4 +56,3 @@ print('\n' + str(amount) + ' ' + symbol + ' has been powered up successfully to account.refresh() balance = account['balance'] print('New balance: ' + str(balance)) - diff --git a/tutorials/python/25_power_down/index.py b/tutorials/python/25_power_down/index.py index ca1520eb..d5bdd4de 100755 --- a/tutorials/python/25_power_down/index.py +++ b/tutorials/python/25_power_down/index.py @@ -9,8 +9,11 @@ from beem.amount import Amount account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # get account balance for vesting shares account = Account(account, blockchain_instance=client) @@ -69,4 +72,3 @@ if (amount_vests == to_withdraw_vests): exit() print('Insufficient funds available') - diff --git a/tutorials/python/27_delegate_power/index.py b/tutorials/python/27_delegate_power/index.py index fc8e98cb..8b6a64cd 100755 --- a/tutorials/python/27_delegate_power/index.py +++ b/tutorials/python/27_delegate_power/index.py @@ -8,8 +8,11 @@ from beem.amount import Amount account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # check valid user account = Account(account, blockchain_instance=client) @@ -73,4 +76,3 @@ else: account.delegate_vesting_shares(delegatee.name, amount_vests) print('Success.') - diff --git a/tutorials/python/30_grant_posting_permission/index.py b/tutorials/python/30_grant_posting_permission/index.py index 3feab65f..df279aeb 100755 --- a/tutorials/python/30_grant_posting_permission/index.py +++ b/tutorials/python/30_grant_posting_permission/index.py @@ -7,8 +7,11 @@ from beem.account import Account account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') -# connect to production server with active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + +# connect with active key +client = Hive(node_url, keys=[wif_active_key]) # check valid user account = Account(account, blockchain_instance=client) @@ -48,4 +51,3 @@ if (option == 'ALLOW'): else: account.disallow(foreign=foreign.name, permission='posting', threshold=1) print('posting permission for ' + foreign.name + ' has been removed') - diff --git a/tutorials/python/31_grant_active_permission/index.py b/tutorials/python/31_grant_active_permission/index.py index 66201e2a..466b86cf 100755 --- a/tutorials/python/31_grant_active_permission/index.py +++ b/tutorials/python/31_grant_active_permission/index.py @@ -7,8 +7,11 @@ from beem.account import Account account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') -# connect to production server with active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + +# connect with active key +client = Hive(node_url, keys=[wif_active_key]) # check valid user account = Account(account, blockchain_instance=client) @@ -48,4 +51,3 @@ if (option == 'ALLOW'): else: account.disallow(foreign=foreign.name, permission='active', threshold=1) print('active permission for ' + foreign.name + ' has been removed') - diff --git a/tutorials/python/32_convert_hbd_to_hive/index.py b/tutorials/python/32_convert_hbd_to_hive/index.py index 084875af..b4b943e7 100755 --- a/tutorials/python/32_convert_hbd_to_hive/index.py +++ b/tutorials/python/32_convert_hbd_to_hive/index.py @@ -7,8 +7,11 @@ from beem.account import Account account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # get account balance for HIVE and HBD account = Account(account, blockchain_instance=client) @@ -35,4 +38,3 @@ total_hive = account['balance'] total_hbd = account['hbd_balance'] print('\n' + 'REMAINING ACCOUNT BALANCE:' + '\n' + str(total_hive) + '\n' + str(total_hbd)) - diff --git a/tutorials/python/33_transfer_hive_and_hbd_to_savings_balance/index.py b/tutorials/python/33_transfer_hive_and_hbd_to_savings_balance/index.py index 17d6bdf7..8c0ce18a 100755 --- a/tutorials/python/33_transfer_hive_and_hbd_to_savings_balance/index.py +++ b/tutorials/python/33_transfer_hive_and_hbd_to_savings_balance/index.py @@ -8,8 +8,11 @@ import random account = input('Enter username: ') wif_active_key = getpass.getpass('Enter private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # connect node and private active key -client = Hive('http://127.0.0.1:8090', keys=[wif_active_key]) +client = Hive(node_url, keys=[wif_active_key]) # check for valid account and get account balance for HIVE and HBD account = Account(account, blockchain_instance=client) @@ -68,4 +71,3 @@ savings_debt = account['savings_hbd_balance'] print('\n' + 'REMAINING ACCOUNT BALANCE:' + '\n' + str(total_base) + '\n' + str(total_debt) + '\n') print('CURRENT SAVINGS BALANCE:' + '\n' + str(savings_base) + '\n' + str(savings_debt) + '\n') - diff --git a/tutorials/python/34_password_key_change/index.py b/tutorials/python/34_password_key_change/index.py index 784eb638..b265ae05 100755 --- a/tutorials/python/34_password_key_change/index.py +++ b/tutorials/python/34_password_key_change/index.py @@ -18,7 +18,10 @@ wif_old_owner_key = str( PasswordKey(account, old_password, "owner").get_private_key() ) -client = Hive('http://127.0.0.1:8090', keys=[wif_old_owner_key]) +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + +client = Hive(node_url, keys=[wif_old_owner_key]) account = Account(account, blockchain_instance=client) new_public_keys = {} @@ -65,4 +68,3 @@ signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print("Account updated successfully: " + str(broadcast_tx)) - diff --git a/tutorials/python/35_account_recovery/index.py b/tutorials/python/35_account_recovery/index.py index 97f9224e..38a18fd3 100755 --- a/tutorials/python/35_account_recovery/index.py +++ b/tutorials/python/35_account_recovery/index.py @@ -13,8 +13,10 @@ new_password = getpass.getpass('new password for account: ') recovery_account = input('account owner (recovery account name): ') recovery_account_private_key = getpass.getpass('account owner private ACTIVE key: ') +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet -client = Hive('http://127.0.0.1:8090', keys=[recovery_account_private_key]) +client = Hive(node_url, keys=[recovery_account_private_key]) account = Account(account, blockchain_instance=client) recovery_account = Account(recovery_account, blockchain_instance=client) @@ -95,8 +97,11 @@ op_account_update_data = { "json_metadata": "" } +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # recover account initialisation and transmission -client = Hive('http://127.0.0.1:8090', keys=[recovery_account_private_key]) +client = Hive(node_url, keys=[recovery_account_private_key]) op_recover_account = beembase.operations.Recover_account(**op_recover_account_data) @@ -113,8 +118,11 @@ result = tb.broadcast() print('result') print(result) +# node_url = 'https://testnet.openhive.network' # Public Testnet +node_url = 'http://127.0.0.1:8090' # Local Testnet + # update account keys initialisation and transmission -client = Hive('http://127.0.0.1:8090', keys=[new_account_owner_private_key]) +client = Hive(node_url, keys=[new_account_owner_private_key]) op_account_update = beembase.operations.Account_update(**op_account_update_data) @@ -130,4 +138,3 @@ result = tb.broadcast() print('result') print(result) - -- GitLab