not implemented
from beem.transactionbuilder import TransactionBuilder
t = TransactionBuilder()
t.broadcast()
from beem.transactionbuilder import TransactionBuilder
t = TransactionBuilder()
t.broadcast()
from beem.account import Account
account = Account("test")
account.get_account_bandwidth()
from beem.blockchain import Blockchain
b = Blockchain()
b.get_account_count()
from beem.account import Account
acc = Account("steemit")
for h in acc.get_account_history(1,0):
print(h)
from beem.blockchain import Blockchain
b = Blockchain()
for h in b.get_account_reputations():
print(h)
from beem.account import Account
acc = Account("gtg")
for h in acc.get_account_votes():
print(h)
from beem.vote import ActiveVotes
acc = Account("gtg")
post = acc.get_feed(0,1)[0]
a = ActiveVotes(post["authorperm"])
a.printAsTable()
from beem.witness import Witnesses
w = Witnesses()
w.printAsTable()
from beem.block import Block
print(Block(1))
from beem.block import BlockHeader
print(BlockHeader(1))
from beem.account import Account
acc = Account("gtg")
for h in acc.get_blog():
print(h)
from beem.account import Account
acc = Account("gtg")
for h in acc.get_blog_authors():
print(h)
from beem.account import Account
acc = Account("gtg")
for h in acc.get_blog_entries():
print(h)
from beem import Steem
stm = Steem()
print(stm.get_chain_properties())
from beem.discussions import Query, Comment_discussions_by_payout
q = Query(limit=10)
for h in Comment_discussions_by_payout(q):
print(h)
from beem import Steem
stm = Steem()
print(stm.get_config())
from beem.account import Account
from beem.comment import Comment
acc = Account("gtg")
post = acc.get_feed(0,1)[0]
print(Comment(post["authorperm"]))
from beem.account import Account
from beem.comment import Comment
acc = Account("gtg")
post = acc.get_feed(0,1)[0]
c = Comment(post["authorperm"])
for h in c.get_replies():
print(h)
from beem.account import Account
acc = Account("gtg")
print(acc.get_conversion_requests())
from beem import Steem
stm = Steem()
print(stm.get_current_median_history())
from beem.discussions import Query, Discussions_by_active
q = Query(limit=10)
for h in Discussions_by_active(q):
print(h)
from beem.discussions import Query, Discussions_by_author_before_date
for h in Discussions_by_author_before_date(limit=10, author="gtg"):
print(h)
from beem.discussions import Query, Discussions_by_blog
q = Query(limit=10)
for h in Discussions_by_blog(q):
print(h)
from beem.discussions import Query, Discussions_by_cashout
q = Query(limit=10)
for h in Discussions_by_cashout(q):
print(h)
from beem.discussions import Query, Discussions_by_children
q = Query(limit=10)
for h in Discussions_by_children(q):
print(h)
from beem.discussions import Query, Discussions_by_comments
q = Query(limit=10, start_author="steemit", start_permlink="firstpost")
for h in Discussions_by_comments(q):
print(h)
from beem.discussions import Query, Discussions_by_created
q = Query(limit=10)
for h in Discussions_by_created(q):
print(h)
from beem.discussions import Query, Discussions_by_feed
q = Query(limit=10, tag="steem")
for h in Discussions_by_feed(q):
print(h)
from beem.discussions import Query, Discussions_by_hot
q = Query(limit=10, tag="steem")
for h in Discussions_by_hot(q):
print(h)
from beem.discussions import Query, Discussions_by_promoted
q = Query(limit=10, tag="steem")
for h in Discussions_by_promoted(q):
print(h)
from beem.discussions import Query, Discussions_by_trending
q = Query(limit=10, tag="steem")
for h in Discussions_by_trending(q):
print(h)
from beem.discussions import Query, Discussions_by_votes
q = Query(limit=10)
for h in Discussions_by_votes(q):
print(h)
from beem import Steem
stm = Steem()
print(stm.get_dynamic_global_properties())
from beem.account import Account
acc = Account("gtg")
print(acc.get_escrow())
from beem.account import Account
acc = Account("gtg")
print(acc.get_expiring_vesting_delegations())
from beem.account import Account
acc = Account("gtg")
for f in acc.get_feed():
print(f)
from beem.account import Account
acc = Account("gtg")
for f in acc.get_feed_entries():
print(f)
from beem import Steem
stm = Steem()
print(stm.get_feed_history())
from beem.account import Account
acc = Account("gtg")
print(acc.get_follow_count())
from beem.account import Account
acc = Account("gtg")
for f in acc.get_followers():
print(f)
from beem.account import Account
acc = Account("gtg")
for f in acc.get_following():
print(f)
from beem import Steem
stm = Steem()
print(stm.get_hardfork_properties()["hf_version"])
from beem.account import Account
from beem.wallet import Wallet
acc = Account("gtg")
w = Wallet()
print(w.getAccountFromPublicKey(acc["posting"]["key_auths"][0][0]))
from beem.market import Market
m = Market()
for t in m.market_history():
print(t)
from beem.market import Market
m = Market()
for t in m.market_history_buckets():
print(t)
from beem import Steem
stm = Steem()
print(stm.get_hardfork_properties())
from beem.market import Market
m = Market()
print(m.accountopenorders(account="gtg"))
from beem.block import Block
b = Block(2e6, only_ops=True)
print(b)
from beem.market import Market
m = Market()
print(m.orderbook())
from beem.account import Account
acc = Account("gtg")
print(acc.get_owner_history())
from beem.discussions import Query, Post_discussions_by_payout
q = Query(limit=10)
for h in Post_discussions_by_payout(q):
print(h)
from beem.transactionbuilder import TransactionBuilder
from beem.blockchain import Blockchain
b = Blockchain()
block = b.get_current_block()
trx = block.json()["transactions"][0]
t = TransactionBuilder(trx)
print(t.get_potential_signatures())
from beem.account import Account
from beem.comment import Comment
acc = Account("gtg")
post = acc.get_feed(0,1)[0]
c = Comment(post["authorperm"])
for h in c.get_reblogged_by():
print(h)
from beem.market import Market
m = Market()
for t in m.recent_trades():
print(t)
from beem.account import Account
acc = Account("gtg")
print(acc.get_recovery_request())
from beem.discussions import Query, Replies_by_last_update
q = Query(limit=10, start_author="steemit", start_permlink="firstpost")
for h in Replies_by_last_update(q):
print(h)
from beem.transactionbuilder import TransactionBuilder
from beem.blockchain import Blockchain
b = Blockchain()
block = b.get_current_block()
trx = block.json()["transactions"][0]
t = TransactionBuilder(trx)
print(t.get_required_signatures())
from beem import Steem
stm = Steem()
print(stm.get_reward_funds())
from beem.account import Account
acc = Account("gtg")
print(acc.get_savings_withdrawals(direction="from"))
from beem.account import Account
acc = Account("gtg")
print(acc.get_savings_withdrawals(direction="to"))
from beem.comment import RecentByPath
for p in RecentByPath(path="promoted"):
print(p)
from beem.account import Account
acc = Account("gtg")
print(acc.get_tags_used_by_author())
from beem.market import Market
m = Market()
print(m.ticker())
from beem.market import Market
m = Market()
for t in m.trade_history():
print(t)
from beem.blockchain import Blockchain
b = Blockchain()
print(b.get_transaction("6fde0190a97835ea6d9e651293e90c89911f933c"))
from beem.blockchain import Blockchain
b = Blockchain()
block = b.get_current_block()
trx = block.json()["transactions"][0]
print(b.get_transaction_hex(trx))
from beem.discussions import Query, Trending_tags
q = Query(limit=10, start_tag="steemit")
for h in Trending_tags(q):
print(h)
not implemented
from beem.account import Account
acc = Account("gtg")
for v in acc.get_vesting_delegations():
print(v)
from beem.market import Market
m = Market()
print(m.volume24h())
from beem.account import Account
acc = Account("gtg")
print(acc.get_withdraw_routes())
from beem.witness import Witness
w = Witness("gtg")
print(w)
from beem.witness import Witnesses
w = Witnesses()
print(w.witness_count)
from beem import Steem
stm = Steem()
print(stm.get_witness_schedule())
not implemented
from beem.witness import WitnessesRankedByVote
for w in WitnessesRankedByVote():
print(w)
from beem.account import Account
acc = Account("gtg", full=False)
print(acc.json())
from beem.account import Account
acc = Account("gtg")
for a in acc.get_similar_account_names(limit=100):
print(a)
from beem.witness import ListWitnesses
for w in ListWitnesses():
print(w)
disabled and not implemented
from beem.transactionbuilder import TransactionBuilder
from beem.blockchain import Blockchain
b = Blockchain()
block = b.get_current_block()
trx = block.json()["transactions"][0]
t = TransactionBuilder(trx)
t.verify_authority()
print("ok")