Steem Developer Portal

Search Results
Showing results for "vote"
vote2
This operation is used to cast a vote on a post/comment using multiple votable assets. See: #2748, SMT Voting Mana Deep Dive
vote
This operation is used to cast a vote on a post/comment. The primary purpose of voting is to express Proof-of-Brain about content to the blockchain. When a vote is cast...
Vote
A vote is an expression of like (upvote) or dislike (downvote) for a post/comment. The Steem blockchain uses the votes that a post/comment has received to determine its s...
JS: Get Voters List On Post
Full, runnable src of Get Voters List On Post can be downloaded as part of the JS tutorials repository. The purpose of this tutorial is to a) demonstrate how to get a l...
PY: Get Voters List On Post
Full, runnable src of Get Voters List On Post can be downloaded as part of the PY tutorials repository. Tutorial will explain and show you how to access the Steem block...
Witness Vote
Voting/electing witnesses with account’s stake
vote_power_reserve_rate
The number of votes regenerated per day. Any user voting slower than this rate will be “wasting” voting power through spillover; any user voting faster than this rate wi...
RB: Get Voters List On Post
Full, runnable src of Get Voters List On Post can be downloaded as part of the RB tutorials repository. Script First, we ask the blockchain for the active votes on a p...
JS: Vote On Content
Full, runnable src of Vote On Content can be downloaded as part of the JS tutorials repository. This tutorial will take you through the process of preparing and submitt...
PY: Vote On Content
Full, runnable src of Vote On Content can be downloaded as part of the PY tutorials repository. In this tutorial we will explain and show you how to to check if a user...
RB: Vote On Content
Full, runnable src of Vote On Content can be downloaded as part of the RB tutorials repository. Sections Making the api call - broadcasting the operation...
JS: Witness Listing And Voting
...ory. This tutorial will take you through the process of preparing and submitting a vote using the broadcast operation. A demo account is provided to use on the testnet but...
PY: Witness Listing And Voting
...show you how to create a list of active witnesses from the Steem blockchain and then vote or unvote for a witness using the commit class found within the steem-python library...
update_proposal_votes
Update proposal votes by proposal.id.
database_api.list_votes
Returns all votes, starting with the specified voter and/or author and permlink. Parameters: start:array; limit:int; order:string start depends on order (see below)...
Posting key
The posting key is used for posting and voting
tags_api.get_active_votes
Returns all votes for the given post.
tags_api.get_discussions_by_votes
Returns a list of discussions by votes.
account_witness_vote
All accounts with a VFS (Vesting Fund Shares) can vote for or against any witness. See: STEEM_MAX_ACCOUNT_WITNESS_VOTES If a proxy is specified then all existing votes...
database_api.find_votes
Returns all votes for the given post. Parameters: author:string; permlink:string author (string) permlink (string) "s...
target_votes_per_period
The number of votes regenerated per day (over STEEM_VOTING_MANA_REGENERATION_SECONDS). Any user voting slower than this rate will be “wasting” voting power through spill...
condenser_api.get_account_votes
Returns all votes by an account. Parameters: account:string account (string) "steemit" Queries for votes by “steemit”...
decline_voting_rights
An account can chose to decline their voting rights after a 30 day delay. This includes voting on content and witnesses. The voting rights cannot be acquired again once t...
STEEM_VOTE_DUST_THRESHOLD
Used to determine when abs_rshares is too small while evaluating vote operation.
condenser_api.get_discussions_by_votes
Returns a list of discussions by votes. Also see: tags_api.get_discussions_by_votes
STEEM_REDUCED_VOTE_POWER_RATE
The rate used since HF19. The number of votes an account may cast per day before voting power is impacted (10 votes per day).
STEEM_MAX_ACCOUNT_WITNESS_VOTES
Each account may cast up to 30 witness votes.
STEEM_INITIAL_VOTE_POWER_RATE
The rate used prior to HF19. The number of votes an account may cast per day before voting power is impacted (originally 40 votes per day).
condenser_api.get_witnesses_by_vote
Returns current witnesses by vote. Parameters: start_name:string; limit:int up to 1000 account (string) limit (int) n...
condenser_api.get_active_votes
Returns all votes for the given post. Parameters: author:string; permlink:string author (string) permlink (string) "s...
database_api.list_proposal_votes
Returns all proposal votes, starting with the specified voter or proposal.id. Parameters: start:array; limit:int; order:string; order_direction:string; status:string...
condenser_api.list_proposal_votes
Returns all proposal votes, starting with the specified voter or proposal.id. Parameters: start:array; limit:int; order:string; order_direction:string; status:string...
database_api.find_decline_voting_rights_requests
Returns a list of requests to decline voting rights.
database_api.list_witness_votes
Returns a list of witness votes. Parameters: start:array; limit:int; order:string start depends on order (see below) limit is up to 1000. order can be one of:...
STEEM_MAX_VOTE_CHANGES
RB: Stream Blockchain Transactions
...w multiple operation types: ruby stream_blockchain_transactions.rb head ops comment vote Virtual operations are also allowed, but make sure to pass irreversible instead of...
STEEM_VOTING_MANA_REGENERATION_SECONDS
Renamed from STEEM_VOTE_REGENERATION_SECONDS
STEEM_MIN_VOTE_INTERVAL_SEC
STEEM_MAX_VOTED_WITNESSES_HF17
STEEM_START_MINER_VOTING_BLOCK
STEEM_MAX_VOTED_WITNESSES_HF0
SMT_MAX_VOTES_PER_REGENERATION
database_api.list_decline_voting_rights_requests
Returns a list of decline voting rights requests. Parameters: start:object; limit:int; order:string start depends on order (see below) limit is up to 1000. order...
Transaction
...d update to the Steem blockchain. This can include token transfers, posts/comments, votes, etc.
STEEM_VOTES_PER_PERIOD_SMT_HF
SMT_MAX_NOMINAL_VOTES_PER_DAY
SMT_DEFAULT_VOTES_PER_REGEN_PERIOD
account_witness_proxy
Allows one account to delegate witness votes to another account. If a proxy is specified then all existing witness votes are removed. Note, as of HF21, setting a witnes...
RB: Get Post Details
...t has reached payout beneficiaries - reward routes other accounts active_votes - all votes applied json_metadata - things like tags and app Script...
Reward Pool
Every day, a fixed amount of STEEM tokens are allocated to the network reward fund, commonly called the “reward pool.” These get distributed to authors and curators for p...
STEEM_PROXY_TO_SELF_ACCOUNT
An empty string represents the canonical account for specifying you will vote for directly (as opposed to a proxy).
bridge.account_notifications
...w - an account has followed another account mention - author mentions an account vote - voter votes for an author The score value is based on the originating account’s...
Calculating RC costs
...dit (RC) system has been implemented to manage the number of transactions (comments, votes, transfers, etc) you can execute on the blockchain at any given time. This recipe w...
Curator
A steem user who upvotes a post by using their daily voting power to assign value to a post that they believe has good quality content and should be seen and the author r...
Tutorials
...to get post details and use them appropriately. JS: Get Voters List On Post By the end of this tutorial you would know how to get voters l...
Steem.DAO
...blicly propose work they are willing to do in exchange for pay. Steem users can then vote on these proposals in almost the same way they vote for witnesses. It uses stake-we...
SPS
Also known as Steem Proposal System. An on-chain decentralized autonomous organization (DAO) that allows users to submit proposals for funding and use stake weighted vot...
Paginated API Methods
...a limit of 10: curl -s --data '{ "jsonrpc": "2.0", "method": "database_api.list_votes", "params": { "start": ["", "", ""], "limit": 10, "order": "by_commen...
JS: Get Post Details
...: 29, "net_rshares": "11453442114933", "abs_rshares": "11454054795840", "vote_rshares": "11454054795840", "children_abs_rshares": "13568695606090", "casho...
database_api.list_smt_tokens
List SMTs. Parameters: start:object; limit:int; order:string start depends on order (see below) limit is up to 1000. order can be one of: by_symbol -...
delegate_vesting_shares
Delegate vesting shares from one account to the other. The vesting shares are still owned by the original account, but content voting rights and resource credit are trans...
JS: Client Signing
...extensions - any extensions to the transaction to change its parameters or options Vote operation example op = { ref_block_num: head_block_number, ref_block_prefix...
JS: Get Post Comments
...comments of the post and display them with author, body, created time and number of votes. We will also explain the most commonly used fields from the response object as we...
RB: Get Posts
...uments passed. The expected categories are: trending hot active created votes promoted children We will base the name of the API method to execute on the p...
Estimate the value of an upvote
By the end of this recipe you should know how to estimate value of each vote on Steem. This recipe will take you through the process of fetching necessary data and formu...
How to serialize and sign Steem transactions using Javascript
...Check Devportal for list of all available operations. const operations = [ [ 'vote', { voter: 'guest123', author: 'guest123', permlink: '20191107...
database_api.list_witnesses
...r by name start is string value: account by_vote_name - order by vote, name start is an array of two values: votes...
Manabar
...s unspent reward fund shares. Each user also has a manabar specifically for downvotes, which is 25% of the upvote manabar. Downvotes will consume this mana first befo...
JS: Get State Replacement Api
...lled": "0", "participation_count": 0, "last_irreversible_block_num": 0, "vote_power_reserve_rate": 40, "average_block_size": 0, "current_reserve_ratio": 1...
PY: Get Account Comments
...lowing properties: [{'abs_rshares': 0, 'active': '2018-06-21T06:48:57', 'active_votes': [], 'allow_curation_rewards': True, 'allow_replies': True, 'allow_votes': T...
PY: Get Post Comments
...o on selected post. Intro Steem python library has built-in function to get active voters information if post with author and permlink as an argument. Since we don’t have p...
change_recovery_account
...o the empty string if the account was mined. An account with no recovery has the top voted witness as a recovery account, at the time the recover request is created. Note: Th...
PY: Get Post Details
...: 29, "net_rshares": "11453442114933", "abs_rshares": "11454054795840", "vote_rshares": "11454054795840", "children_abs_rshares": "13568695606090", "casho...
Streaming blockchain transactions
...d2b8eb3", "transaction_num": 0 } And each transaction contains operations: [ "vote", { "author":"skmedia", "permlink":"buynearn-new-mlm-plan-launched-4th-ju...
condenser_api.get_dynamic_global_properties
Returns the current dynamic global properties. See: Understanding Dynamic Global Properties Also see: database_api.get_dynamic_global_properties
downvote_pool_percent
Used by a separate downvote pool that is a percentage of the max size of the voting mana. Downvotes will be taken from the downvote pool first, and then the upvote pool o...
PY: Get Posts
..."net_rshares": "11453442114933", "abs_rshares": "11454054795840", "vote_rshares": "11454054795840", "children_abs_rshares": "13568695606090",...
comment_options
...pairs. The beneficiaries can only be specified once and must be specified before any votes are cast on the comment. Most apps are already adding a comment_options in the tran...
condenser_api.get_content
Returns the content (post or comment). Parameters: author:string; permlink:string author (string) permlink (string) "...
Converting VESTS to STEEM
..."participation_count":128, "last_irreversible_block_num":24238230, "vote_power_reserve_rate":10, "average_block_size":10950, "current_reserve_rat...
JS: Blog Feed
..."net_rshares": "11453442114933", "abs_rshares": "11454054795840", "vote_rshares": "11454054795840", "children_abs_rshares": "13568695606090",...
bridge.get_ranked_posts
Get ranked posts. Supported values for sort: trending hot created promoted payout payout_comments muted The value for tag can be any valid tag. The val...
JS: Get Posts
..."net_rshares": "11453442114933", "abs_rshares": "11454054795840", "vote_rshares": "11454054795840", "children_abs_rshares": "13568695606090",...
JS: Get Account Comments
..."participation_count":128, "last_irreversible_block_num":22307411, "vote_power_reserve_rate":10, "average_block_size":14881, "current_reserve...
condenser_api.get_content_replies
Returns a list of replies. Parameters: author:string; permlink:string author (string) permlink (string) "steemit"...
comment
...etadata fields will also be replaced by the latest operation. See: comment_options, vote, custom_json It should also be noted that a vote operation can accompany a comment...
Bridge
...out_value": "0.000 SBD", "promoted": "0.000 SBD", "replies": [], "active_votes": [{"voter": "bob", "rshares": "67759296290"}], "author_reputation": 47.15,...
condenser_api.get_witness_by_account
Returns the witness of an account. Parameters: account:string account (string) "steemit" Queries witness account of “...
tags_api.get_discussion
Returns the discussion given an author and permlink.
STEEM_MAX_WITNESSES
...block production begins with the shuffling of 21 witnesses: the top 20 witnesses (by vote), plus one randomly-selected standby witness. Each is given a turn to produce a sin...
JS: Get Account Replies
..."participation_count":128, "last_irreversible_block_num":22307411, "vote_power_reserve_rate":10, "average_block_size":14881, "current_reserve...
database_api.list_proposals
...al (date string) end_date - end date of the proposal (date string) total_votes - total votes of the proposal (int) limit is up to 1000. order can be o...
database_api.get_dynamic_global_properties
Returns the current dynamic global properties. See: Understanding Dynamic Global Properties
database_api.list_comments
Returns all comments, starting with the specified options. Parameters: start:array; limit:int; order:string start depends on order (see below) limit is up to 1000....
RB: Search Tags
...ng output from our script: tag: <empty>, total_payouts: 57513246.041 SBD, net_votes: 47471936, top_posts: 4523493, comments: 27287924, trending: 100430269400 tag: life...
Plugin & API List
...Purpose: Used to lookup information about tags, posts, and discussions as well as votes. Requires: tags (automatic) Exposed Methods: tags_api.* Example in chain.ini:...
condenser_api.list_proposals
...al (date string) end_date - end date of the proposal (date string) total_votes - total votes of the proposal (int) limit is up to 1000. order can be o...
condenser_api.get_state
Returns the state of a path. Deprecated. Parameters: path:string
Steemit.com
...01T00:00:00", "reset_account":"null", "comment_count":0, "lifetime_vote_count":0, "post_count":1042, "can_vote":true, "voting_power":8927,...
database_api.find_witnesses
Search for witnesses.
witness_update
Users who wish to become a witness must pay a fee acceptable to the current witnesses to apply for the position and allow voting to begin. If the owner isn’t a witness t...
PY: Using Keys Securely
...pient_name> 1 STEEM memo would sign and broadcast transfer operation, steempy upvote --account <account_name> link would sing and broadcast vote operation, etc....
Forum/Market Bandwidth
..."participation_count":128, "last_irreversible_block_num":24264271, "vote_power_reserve_rate":10, "average_block_size":13436, "current_reserve_rat...
account_create_with_delegation
...Steem Power along that curve (so long as the minimum fee is paid). The witness voted STEEM fee is now the minimum required STEEM fee for delegation. Witnesses should re...
rc_api.get_resource_params
Exports all relevant resource size constants, in particular the measurement-based execution time parameters. See: #2980
JS: Submit Post
...or beneficiaries can be set to receive part of the rewards. You can also set whether votes are allowed or not. The broadcast to the blockchain can be modified to meet the exa...
JS: Submit Comment Reply
...or beneficiaries can be set to receive part of the rewards. You can also set whether votes are allowed or not. The broadcast to the blockchain can be modified to meet the exa...
PY: Delegate Power
...to another user. This can empower an application, author, or curator to make higher votes. Before we do the delegation, we use the get_account function to check the current...
Steem Testnet
...t experiences. Not everything can be mirrored. For example, if someone comments or votes on a post that hasn’t been mirrored to the testnet (because the post itself pre-dat...
JS: Steemconnect
...via access token. Some other calls that require an access token (or login) are: Vote Comment Post Follow Reblog Learn more about Steemconnect operations here...