Hive Developer Portal

Search Results
Showing results for "get signature"
Signatures
Transaction signature signed by an account with a private key
Canonical Signatures
Reduce entropy Signatures that follow the BIP-0062 specification to prevent transaction malleability. All Signatures on Hive are Canonical Signatures, since 0.20.2.
jsonrpc.get_signature
Returns the signature information for a JSON RPC method including the arguments and expected response JSON.
database_api.get_required_signatures
...the ability to sign for and return the minimal subset of public keys that should add signatures to the transaction.
database_api.verify_signatures
This method validates if transaction was signed by person listed in required_owner, required_active or required_posting parameter. Hash is a mix of chain_id and transacti...
database_api.get_potential_signatures
...lets to filter their set of public keys to just the relevant subset prior to calling get_required_signatures to get the minimum subset.
condenser_api.get_required_signatures
...transaction. Parameters: trx:object; available_keys:[string] Also see: database_api.get_required_signatures
condenser_api.get_potential_signatures
...public keys that could possibly sign for a given transaction. Also see: database_api.get_potential_signatures
condenser_api.verify_authority
Returns true if the transaction has all of the required signatures. Also see: database_api.verify_authority
database_api.verify_authority
Returns true if the transaction has all of the required signatures, otherwise throws an exception.
Key
...The blockchain is able to determine that the transaction is valid by validating the signature against the public key from the pair.
database_api.get_transaction_hex
Returns a hexdump of the serialized binary form of a transaction.
wallet_bridge_api.get_transaction
network_broadcast_api.broadcast_transaction
Used to broadcast a transaction.
account_history_api.get_transaction
Returns the details of a transaction based on a transaction id (including their signatures, operations like also a block_num it was included to). id:string trx_id of ex...
condenser_api.get_transaction
...11f933c Queries for this exact transaction id. Also see: account_history_api.get_transaction
titles.how_to_serialize
...s post for explanation of variables. Defining 4 of 6 needed variables: const props = getDynamicGlobalProperties() const refBlockNum = props.head_block_number & 0xffff co...
titles.using_multisignature_accounts
...ut ready-to-use script to create an arbitrary transfer transaction is provided here: get_transaction.py This script can be used like this: python get_transaction.py --accou...
titles.imagehoster
...with the API Upload an image Fetch an uploaded image Proxy and resize an image Get user avatar image Signing uploads How to run 1. Upload an image POST /<userna...
titles.vote_on_content
...devportal-master-tutorials-ruby-17_vote_on_content.zip). Also see: vote_operation get_active_votes Sections Making the api call - broadcasting the operation Examp...
titles.client_signing
...nto app.js and prepare it to communicate with a Testnet instance of Hive blockchain Get globals Network globals Account selection Select predefined account Operation sele...
titles.reblogging_post
..._post.rb https://hive.blog/@inertia/kinda-spooky Example Output From the example we get the following output from our script: { jsonrpc: 2.0, result: { id: 0aa41e06b261...
titles.authentication
...authorize/hivesigner. Finalize app integration https://docs.hivesigner.com/h/guides/get-started/hivesigner-oauth2. User side Overview of steps that user experiences during...
titles.virtual_operations_streaming
...on streaming 1. Blocks, transactions and operations In order to stream a block and get the information as will be shown below we use the blockchain api in the dhive librar...
titles.rc_dev
...to add support for the RC system. Also see: resource credits The RC demo script To get up and running, I (theoretical) have transcribed some key algorithms from C++ to Pyt...
titles.grant_active_permission
...ractively We import the libraries for the application. from pick import pick import getpass from beem import Hive from beem.account import Account We require the private a...
titles.wallet_bridge_api
...saction_synchronous find_proposals find_rc_accounts find_recurrent_transfers get_account get_account_history get_accounts get_active_witnesses get_block ge...
titles.grant_active_permission
...ccount = NetConfig.accounts[0]; const accountI = NetConfig.accounts[1]; document.getElementById('username').value = account.address; document.getElementById('privateKe...
titles.get_state_replacement
Full, runnable src of Get State Replacement Api can be downloaded as part of: tutorials/javascript (or download just this tutorial: devportal-master-tutorials-javascript-...
titles.tic_tac_toe
...rse of about two months and originally posted on his blog. Sections Part 1 Target Audience Why “tic-tac-toe”? Development Tools I’m using Planning Fron...