Steem Developer Portal

Search Results
Showing results for "authority"
Authority
Each Account has multiple authority and keys to manager different permissions on the platform
author_reward
Owner
Owner authority/permission of a given account
Permlink
Unique identifier of every comment or post of an author, within the context of that author. (‘@author/permlink’ combos are globally unique)
challenge_authority
Disabled in HF14.
prove_authority
Public Key
Public key of account’s certain authority
tags_api.get_tags_used_by_author
Returns a list of tags used by an author.
condenser_api.get_tags_used_by_author
Returns a list of tags used by an author. Parameters: author:string account (string) "steemit" Queries the tags used...
follow_api.get_blog_authors
Returns a list of authors that have had their content reblogged on a given blog account. Also see: Paginated API Methods
follow_api.get_reblogged_by
Returns a list of authors that have reblogged a post.
tags_api.get_discussions_by_author_before_date
Returns a list of discussions based on author before date. Also see: Paginated API Methods
condenser_api.get_blog_authors
Returns a list of authors that have had their content reblogged on a given blog account. Parameters: account:string account (string)...
condenser_api.get_discussions_by_author_before_date
Returns a list of discussions based on author before date. Also see: tags_api.get_discussions_by_author_before_date, Paginated API Methods
database_api.verify_authority
Returns true if the transaction has all of the required signatures, otherwise throws an exception.
STEEM_MAX_AUTHORITY_MEMBERSHIP
40 auths
condenser_api.verify_authority
...f the transaction has all of the required signatures. Also see: database_api.verify_authority
Private Key
Private key to sign a transaction with account’s authority, should be kept secret because it grants access to account
tags_api.get_discussion
Returns the discussion given an author and permlink.
database_api.verify_account_authority
Not Implemented
condenser_api.get_content
Returns the content (post or comment). Parameters: author:string; permlink:string author (string) permlink (string) "...
STEEM_MAX_ASSET_WHITELIST_AUTHORITIES
condenser_api.verify_account_authority
Not Implemented Also see: database_api.verify_account_authority
condenser_api.get_content_replies
Returns a list of replies. Parameters: author:string; permlink:string author (string) permlink (string) "steemit"...
SteemConnect
What is SteemConnect? The goal of SteemConnect is to provide a safe way of connecting to the blockchain via 3rd party apps without compromising the security of your priv...
PY: Follow A User
Full, runnable src of Follow A User can be downloaded as part of the PY tutorials repository. In this tutorial we will explain and show you how to follow or unfollow an...
account_by_key_api.get_key_references
Returns all accounts that have the key associated with their owner or active authorities.
condenser_api.get_reblogged_by
Returns a list of authors that have reblogged a post. Parameters: author:string; permlink:string author (string) permlink (string)...
Virtual operation
Operations that are derived from blockchain activity, but aren’t actually stored as operations themselves (ex. curation and author rewards). They happen based on consensu...
database_api.find_votes
Returns all votes for the given post. Parameters: author:string; permlink:string author (string) permlink (string) "s...
condenser_api.get_active_votes
Returns all votes for the given post. Parameters: author:string; permlink:string author (string) permlink (string) "s...
Resteem
(Reblog) re-posting another authors’ post in your blog feed for your followers list
condenser_api.get_key_references
Returns all accounts that have the key associated with their owner or active authorities. Also see: account_by_key_api.get_key_references
tags_api.get_active_votes
Returns all votes for the given post.
tags_api.get_content_replies
Returns a list of replies.
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...
JS: Follow A User
Full, runnable src of Follow A User can be downloaded as part of the JS tutorials repository. This tutorial will take you through the process of checking the follow sta...
reset_account
This operation allows recovery_account to change account_to_reset’s owner authority to new_owner_authority after 60 days of inactivity. See: #169
RB: Submit Comment Reply
Full, runnable src of Submit Comment Reply can be downloaded as part of the RB tutorials repository. Intro This example will broadcast a reply to the blockchain using...
STEEM_MAX_PERMLINK_LENGTH
A permlink is a unique string identifier for a post/comment, linked to the author of the post/comment. It must not exceed 256 characters.
JS: Submit Comment Reply
Full, runnable src of Submit Comment Reply can be downloaded as part of the JS tutorials repository. This tutorial will take you through the process of preparing and po...
JS: Get Post Details
Full, runnable src of Get Post Details can be downloaded as part of the JS tutorials repository. The purpose of this tutorial is to a) demonstrate how to get a list of...
PY: Submit Comment Reply
Full, runnable src of Submit Comment Reply can be downloaded as part of the PY tutorials repository. This tutorial will explain and show you how to submit a new comment...
condenser_api.get_reward_fund
Returns information about the current reward funds. Also see: database_api.get_reward_funds
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...
RB: Submit Post
Full, runnable src of Submit Post can be downloaded as part of the RB tutorials repository. A post is differentiated from a comment by whether or not a parent_author ex...
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...
comment
Creates a post/comment. Parameters: parent_author - the author that comment is being submitted to, when posting a new blog this is an empty string parent_permlink -...
RB: Follow Another User
Full, runnable src of Follow Another User can be downloaded as part of the RB tutorials repository. This tutorial will take you through the process of following/muting/...
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...
PY: Get Post Comments
Full, runnable src of Get Post Comments can be downloaded as part of the PY tutorials repository. This tutorial will explain and show you how to access the Steem blockc...
JS: Get Account Replies
Full, runnable src of Get Account Replies can be downloaded as part of the JS tutorials repository. The purpose of this tutorial is How to get account replies and a) de...
database_api.verify_signatures
...t checks signatures against accounts for an arbitrary sha256 hash using the existing authority structures.
PY: Get Account Comments
Full, runnable src of Get Account Comments can be downloaded as part of the PY tutorials repository. In this tutorial will explain and show you how to access the Steem...
PY: Submit Post
Full, runnable src of Submit Post can be downloaded as part of the PY tutorials repository. In this tutorial will explain and show you how to submit a new post to the S...
JS: Get Account Comments
Full, runnable src of Get Account Comments can be downloaded as part of the JS tutorials repository. This tutorial will show how to fetch comments made by a specific ac...
Streaming blockchain transactions
This recipe will take you through the process of streaming blockchain transactions, both from head_block_num and last_irreversible_block_num, and explain the presence/abs...
escrow_dispute
...an issue, they can raise it for dispute. Once a payment is in dispute, the agent has authority over who gets what. See: steem_operations.hpp:229
JS: Get Post Comments
Full, runnable src of Get Post Comments can be downloaded as part of the JS tutorials repository. The purpose of this tutorial is to a) demonstrate how to get a list of...
PY: Get Follower And Following List
Full, runnable src of Get Follower And Following List can be downloaded as part of the PY tutorials repository. This tutorial will explain and show you how to access th...
Using Multisignature Accounts
...for beempy What Will I Learn? You will learn how to set-up a multi-signature authority for Steem accounts You will learn how to prepare a transaction to be signed by mul...
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: 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...
PY: Get Account Replies
Full, runnable src of Get Account Replies can be downloaded as part of the PY tutorials repository. Tutorial will explain and show you how to access the Steem blockchai...
PY: Get Post Details
Full, runnable src of Get Post Details can be downloaded as part of the PY tutorials repository. We will explain and show you how to access the Steem blockchain using t...
RB: Get Post Details
Full, runnable src of Get Post Details can be downloaded as part of the RB tutorials repository. Intro This tutorial fetches the contents of a single post and explains...
database_api.find_owner_histories
Returns owner authority history. Parameters: owner:string owner (string) "steemit" Queries the owner history for acco...
PY: Grant Active Permission
...st where clients will have to confirm, approve transactions. Active permissions and authority should be used with utmost care, you don’t want to lose your funds. It is really not...
request_account_recovery
...n it already has an active request will either update the request to a new new owner authority and extend the request expiration to 24 hours from the current head block time or it...
RB: Reblogging Post
...lugin required_auths - leave this as an empty JSON Array, we only need the posting authority required_posting_auths - JSON Array containing the account name with the posting a...
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...
PY: Grant Posting Permission
Full, runnable src of Grant Posting Permission can be downloaded as part of the PY tutorials repository. In this tutorial we show you how to check if someone has postin...
JS: Grant Active Permission
...st where clients will have to confirm, approve transactions. Active permissions and authority should be used with utmost care, you don’t want to loose your funds. It is really no...
rc_api.get_resource_params
Exports all relevant resource size constants, in particular the measurement-based execution time parameters. See: #2980
JS: Grant Posting Permission
...me of the main account active - Optional parameter to denote changes to the active authority type jsonMetadata - This is a string value obtained from the current account info...
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 -...
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...
RB: Get Post Comments
Full, runnable src of Get Post Comments can be downloaded as part of the RB tutorials repository. Script First, we ask the blockchain for the replies on a post or comm...
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)...
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....
JS: Blog Feed
Full, runnable src of Blog Feed can be downloaded as part of the JS tutorials repository. This tutorial pulls a list of the most recent five user’s posts from the block...
JS: Get Posts
Full, runnable src of Get Posts can be downloaded as part of the JS tutorials repository. This tutorial pulls a list of the posts from different tags or filters and dis...
RB: Edit Content Patching
Full, runnable src of Edit Content Patching can be downloaded as part of the RB tutorials repository. title: How to edit a Post position: 5 exclude: true layout: main-s...
RB: Blog Feed
Full, runnable src of Blog Feed can be downloaded as part of the RB tutorials repository. Script The script parses the creation date, assuming Zulu timezone (AKA UTC)....
JS: Get State Replacement Api
Full, runnable src of Get State Replacement Api can be downloaded as part of the JS tutorials repository. Intro With the getState API call retrieving ALL block informa...
bridge.account_notifications
Account notifications. Supported values for type: new_community - a new community was created set_role - mod/admin adds a role to an account set_props - propertie...
Steemit.com
steemit.com endpoints Steemit.com offers a few endpoints for getting common data. User profile and post JSON data is very convenient and simple by appending .json to you...
JS: Client Signing
...n signature. Verify transaction button calls verifyTx function. Function then verify authority of the signature in signed transaction, if it was signed with correct private key an...
smt_set_runtime_parameters
Creates Smart Media Token runtime parameters. Parameters: control_account - The name of the controlling account. symbol - The asset symbol of the created token. r...
PY: Delegate Power
Full, runnable src of Delegate Power can be downloaded as part of the PY tutorials repository. In this tutorial we show you how to delegate a portion of an accounts ava...
database_api.list_owner_histories
Returns a list of owner authority histories. Parameters: start:array, limit:int start (array) limit (int) ["steemit",...
JS: Submit Post
Full, runnable src of Submit Post can be downloaded as part of the JS tutorials repository. This tutorial will show the method of properly formatting content followed b...
PY: Get Posts
Full, runnable src of Get Posts can be downloaded as part of the PY tutorials repository. This tutorial will explain and show you how to access the Steem blockchain usi...
PY: Edit Content Patching
Full, runnable src of Edit Content Patching can be downloaded as part of the PY tutorials repository. In this tutorial we show you how to patch and update posts/comment...
RB: Get Account Comments
Full, runnable src of Get Account Comments can be downloaded as part of the RB tutorials repository. Historically, applications that wanted to retrieve comments written...
comment_options
Authors of posts may not want all of the benefits that come from creating a post. This operation allows authors to update properties associated with their post. Typicall...
RB: Get Account Replies
Full, runnable src of Get Account Replies can be downloaded as part of the RB tutorials repository. Historically, applications that wanted to retrieve replies written t...
Bridge
Methods: account_notifications get_community get_ranked_posts list_all_subscriptions list_community_roles Presents data interpreted by the hivemind database a...
JS: Reblogging Post
Full, runnable src of Reblogging Post can be downloaded as part of the JS tutorials repository. This tutorial will show the method of obtaining the relevant inputs for...
Paginated API Methods
Intro Typically, the initial request from API calls will be sufficient for showing what’s happening in the blockchain right now. But often, it is desirable to reach fur...
ImageHoster
...Signing uploads Uploads also require a signature made by a Steem account’s posting authority. The account has to also be above a certain (service configurable) reputation thresh...
PY: Search Accounts
Full, runnable src of Search Accounts can be downloaded as part of the PY tutorials repository. This tutorial will explain and show you how to access the Steem blockcha...
RB: Get Posts
Full, runnable src of Get Posts can be downloaded as part of the RB tutorials repository. Script Create a filed called get_posts_by_category.rb. This script will pick...
RB: Stream Blockchain Transactions
Full, runnable src of Stream Blockchain Transactions can be downloaded as part of the RB tutorials repository. To respond to live activity on the blockchain, a common a...
custom_json
Serves the same purpose as custom but also supports required posting authorities. Unlike custom, this operation is designed to be human readable/developer friendly. foll...
Tutorials
Read, play, and learn Steem. Javascript JS: Getting Started Prepare your development environment...
Get Transaction Node
Intro This tutorial will show how to setup the lowest possible resource node that can support condenser_api.get_transaction and account_history_api.get_transaction. Sec...
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
When you are sending STEEM or SBD to another account, when you are writing a post or a comment, or when you are voting or downvoting a post, you are broadcasting transact...
JS: Get Follower And Following List
Full, runnable src of Get Follower And Following List can be downloaded as part of the JS tutorials repository. This tutorial will take you through the process of calli...
change_recovery_account
...a malicious account during an attack. These 30 days match the 30 days that an owner authority is valid for recovery purposes. On account creation the recovery account is set eit...
JS: Set Withdraw Route
...Power down: Steemconnect and client-side signing. Since this action requires Active authority, both client-side and Stemconnect signing will require the Active Private key to sig...
PY: Password Key Change
...d_block_time() - account_auth.last_owner_update > STEEM_OWNER_UPDATE_LIMIT: Owner authority can only be updated once an hour. You will need to wait at least an hour before at...
Calculating RC costs
Since HF20 a Resource Credit (RC) system has been implemented to manage the number of transactions (comments, votes, transfers, etc) you can execute on the blockchain at...
JS: Edit Content Patching
Full, runnable src of Edit Content Patching can be downloaded as part of the JS tutorials repository. This tutorial will take you through the process of preparing and p...
JS: Steemconnect
Full, runnable src of Steemconnect can be downloaded as part of the JS tutorials repository. In this tutorial we will setup Steemconnect for demo application and step b...
PY: Account Recovery
...ount - The trustee account / account owner that will recover the account new owner authority - The new owner PUBLIC key of the account to be recovered extensions - empty array...
Steem Node Config
When running steemd for the first time, once the startup banner appears, press Ctrl+C to exit. Running steemd like this will generate a data directory and a pristine cop...