Hive Developer Portal
Search Results
Showing results for "broadcast transaction"
Broadcast Transaction
Event where a signed transaction is broadcasted to the p2p network so that witnesses could validate and include in a block
comment
...developers are free to add any other keys they want to help manage the content they broadcast. A typical comment operation would look similar to the below: { author: Joe,...
comment_options
...their post. Typically, these options will accompany a comment operation in the same transaction. As of HF17, content can specify beneficiaries to receive a part of their author rew...
escrow_approve
After creating an escrow transaction, both the receiver or the agent can approve or disapprove the deal. If nobody approves or disapproves the transaction before the dead...
change_recovery_account
...reator of the account (The account that pays the creation fee and is a signer on the transaction) or to the empty string if the account was mined. An account with no recovery has th...
smt_create
...s, smt_setup_inflation, and smt_setup). These later operations may occur in the same transaction, but they may also occur at any later point in time. Reset Case Re-issuing smt_creat...
escrow_transfer
...n approval of all parties. It is up to the escrow agent to determine the fee. Escrow transactions are uniquely identified by from and escrow_id, the escrow_id is defined by the send...
hardfork_hive_restore
...at were not airdropped in the original Hive hardfork. VESTS were restored in a later transaction: https://hiveblocks.com/tx/1d600db22fc6f9b362db36d9f0fc521b95f8894f See: Block No. 4...
network_broadcast_api.broadcast_transaction
Used to broadcast a transaction.
condenser_api.broadcast_transaction
Used to broadcast a transaction. Also see: network_broadcast_api.broadcast_transaction
network_broadcast_api.broadcast_block
Removed: HF26 Used to broadcast a block.
condenser_api.broadcast_transaction_synchronous
Used to broadcast a transaction and waits for it to be processed synchronously.
wallet_bridge_api.broadcast_transaction
titles.understanding_transaction_status
The overarching goal is to stop using condenser_api.broadcast_transaction_synchronous but we still want the benefits. Why Client-side Computation? Why After Broadcast?...
wallet_bridge_api.broadcast_transaction_synchronous
P2P
The peer-to-peer network is how transactions are broadcasted to mempool until they are included in a block.
titles.broadcast_ops_custom
...lso intepret other ids like follow and reblog. See: communities.md Also see: Bridge, Broadcast Transaction, custom_json SDK Referencehive-keychain hivesigner.js hive-js beem hive-ruby Re...
titles.stream_blockchain_transactions
...operation. Then, we check if the author wrote a top-level post or a reply. Also see: Broadcast Ops 3. Sample result shortsegments replied to edje riverflows replied to breezin ejm...
titles.how_to_serialize
...ust a signature that proves the transaction is coming from the account owner. How to broadcast transactions? Broadcasting a transaction is pretty easy. But before broadcasting, the transactio...
titles.edit_content_patching
...p). Intro This tutorial will show a technique for efficiently editing a post by only broadcasting changes to the post body. Also see: comment_operation Script edit_content_patch...
titles.reblogging_post
...-python-14_reblogging_post.zip). Tutorial will also explain and show you how to sign/broadcast transaction on Hive blockchain using the beem library. Intro Beem has built-in functionality to...
titles.client_signing
...operation Sign and verify transaction Sign and verify signature of the transaction Broadcast transaction Broadcast signed transaction to the network 1. App setup You can launch a local tes...
titles.using_multisignature_accounts
...ned by multiple keys You will learn how to sign transactions with multiple keys and broadcast it to the chain Requirements The user must have a basic understanding of the Hive k...
titles.sdk
...ipt Hive crypto library for node.js and browsers. Can be used to construct, sign and broadcast transactions in JavaScript. @hiveio/hive-js DHive - https://gitlab.syncad.com/hive/dhive A Type...
titles.submit_comment_reply
...ansmit 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. # client = Hive...
titles.submit_post
...ansmit 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. # client = Hive...
titles.authentication
...lication with access token. Access token used by website or application to sign and broadcast transactions on blockchain. For more detailed instruction please follow HiveSigner documentatio...
titles.convert_hbd_to_hive
...ert_hbd_to_hive.zip). Also see: convert_operation Sections Making the api call - broadcasting the operation Example api call - make the call in code Example api call u...
titles.submit_comment_reply
...utorial will take you through the process of preparing and posting comment using the broadcast.comment operation. Being able to post a comment is critical to most social applicati...
titles.transfer_hive_and_hbd
...l will take you through the process of preparing and submitting a transfer using the broadcast operation. Two demo accounts are provided to use on the testnet but all variables ca...
titles.follow_user
...depending on the current status. This is done with the call operation as well as the broadcast.json operation. Intro We are using the broadcast.json operation provided by the dhiv...
titles.follow_user
...Follow status - Check whether specified author is already followed Follow/Unfollow Broadcast - Broadcast the follow/unfollow operation 1. App setup In this tutorial we use the...
titles.plug_and_api_list
...in chain.ini: plugin = market_history_api network_broadcast_api Purpose: Used to broadcast transactions and blocks. Requires: rc (automatic) Exposed Methods: network_broadcast_api.* Ex...
titles.reblogging_post
...show the method of obtaining the relevant inputs for the reblog process followed by broadcasting the info to the hive blockchain using a demo account on the production server. In...
titles.submit_post
....zip). This tutorial will show the method of properly formatting content followed by broadcasting the information to the hive blockchain using a demo account on the testnet. Intro...
titles.using_keys_securely
...er demo from local machine and signs transaction. beempy also allows you to sign and broadcast transactions from terminal. For example: beempy transfer --account <account_name> <reci...
titles.password_key_change
...ps(Account_update(**new_data)) tx.appendWif(wif_old_owner_key) signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print(Account updated successfully: + str(broadcast_t...
titles.vote_on_content
....zip). Also see: vote_operation get_active_votes Sections Making the api call - broadcasting the operation Example api call - make the call in code Example api call u...
titles.jussi
...og]], ttls:[ [hived, 3], [hived.login_api, -1], [hived.network_broadcast_api, -1], [hived.follow_api, 10], [hived.market_history_api, 1], [...
titles.submit_comment_reply
...evportal-master-tutorials-ruby-11_submit_comment_reply.zip). Intro This example will broadcast a reply to the blockchain using the values provided. To create a post in ruby, we wi...
titles.vote_on_content
...orial will take you through the process of preparing and submitting a vote using the broadcast operation. Because this tutorial essentially produces spam, it will be pointed at a...
titles.grant_posting_permission
...ic users’ data, altering the array pertaining to the posting account_auths, and then broadcasting the changes to the blockchain. Demo account information has been provided to assi...
titles.vote_on_content
...s.getpass('Posting Key: ') tx.appendWif(wif_posting_key) signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print(Vote cast successfully: + str(broadcast_tx))...
titles.reblogging_post
...doing the reblog. Also see: custom_json_operation Sections Making the api call - broadcasting the operation Example api call - make the call in code Example api call u...
titles.submit_post
...m: 22867626, trx_num: 43, expired: false }, id: 1 } The response we get after broadcasting the transaction gives us the transaction id (768f7f6...), block number (22867626)...
titles.edit_content_patching
...getpass.getpass('Posting Key: ') tx.appendWif(wif_posting_key) signed_tx = tx.sign() broadcast_tx = tx.broadcast(trx_id=True) print(' ' + 'Content of the post has been successfull...
titles.grant_active_permission
...fic users’ data, altering the array pertaining to the active account_auths, and then broadcasting the changes to the blockchain. Demo account information has been provided to assi...
titles.convert_hbd_to_hive
...al will take you through the process of checking a specific users’ balances and then broadcasting the intended HBD conversion to the blockchain. Demo account information has been...
titles.convert_hive_to_hbd
...al will take you through the process of checking a specific users’ balances and then broadcasting the intended HIVE conversion to the blockchain. Demo account information has been...
titles.tutorials
...Client Signing How to sign, verify broadcast transactions locally on Hive Get Posts...
titles.follow_user
...auths: [social], json: [follow,{follower:social,following:alice,what:[blog]}] } To broadcast this operation, use the posting wif and matching account name in required_posting_au...
titles.edit_content_patching
...tutorial will take you through the process of preparing and patching post using the broadcast.comment operation. Being able to patch a post is critical to save resources on Hive....
titles.account_recovery
...*request_op_data) print('request_op_data') print(request_op_data) # recovery request broadcast request_result = client.finalizeOp(request_op, recovery_account.name, active) print(...
titles.account_creation_process
...nesses. Claiming tokens is the first step required to create an account. To do this, broadcast the claim_account operation on the network to claim an account token. [ claim_acco...
titles.power_down
...n the input from the user the amount variable can be assigned and the transaction is broadcasted to the blockchain. The amount must be between zero and the total amount of vesting...
titles.power_up
...you can see example of operation and signing transaction, after successful operation broadcast result will be shown in user interface. It will be block number that transaction was...
titles.claim_rewards
...you can see example of operation and signing transaction, after successful operation broadcast result will be shown in user interface. It will be block number that transaction was...
titles.wallet_bridge_api
Methods: broadcast_transaction broadcast_transaction_synchronous find_proposals find_rc_accounts find_recurrent_transfers get_account get_account_history...
titles.delegate_power
...you can see example of operation and signing transaction, after successful operation broadcast result will be shown in user interface. It will be block number that transaction was...
titles.power_down
..., we can see an example of the operation and signing transaction. After a successful broadcast, the result will be shown in user interface. It will show the block number that the...
titles.transfer_hive_and_hbd
...sfer type and amount - Input of transfer type and the amount to transfer Transfer - Broadcast the transfer to blockchain 1. App setup In this tutorial we use 2 packages: beem...
titles.node_config
...e deprecated as of 0.23.0) config-for-ahnode.ini config-for-docker.ini config-for-broadcaster.ini (example deprecated as of 0.23.0) fullnode.opswhitelist.config.ini (example d...
titles.transfer_hive_and_hbd_savings
...er commit Once all the parameters have been assigned we can proceed with the actual broadcast to the blockchain. The relevant function is executed based on the selected choice th...
titles.witness_node
...et. Using the CLI wallet hived comes with a CLI wallet which can be used to sign and broadcast transactions. To use the CLI wallet, you need a running instance of hived. So run your hived ins...
titles.create_account
...posting: postingAuth, memo_key: memoKey, json_metadata: '', }, ]; client.broadcast.sendOperations([op], privateKey).then( function(result) { document.getElementB...
titles.claim_rewards
...ve node We require the private posting key of the user in order for the claim to be broadcasted to the blockchain. This is why we are using a testnet. The values are supplied via...
titles.tic_tac_toe
...on the back-end and process game data then serve it through API. Our front-end will broadcast transactions which will update the back-end. In other words, the back-end is only serving the da...
titles.setting_up_testnet
...g a testnet is ideal for application developers who want to verify their app without broadcasting signed transactions over the mainnet. It’s also a great way for blockchain develo...