How to create a post in the current state

in #steem6 years ago (edited)


Got a couple of questions that how I have broadcasted my recent post.

The default RPC node (https://api.steemit.com) and the alternative RPC nodes are not running v0.20.3, at the moment.

Latest steemd version regarding the negative RC debt requires a reindex on the nodes. And this takes a good amount of time.

@gtg provided a node ignores the RC requirements to post: http://api.steem.house.

So, with that info I can create posts with this code:

from lightsteem.client import Client
from lightsteem.datastructures import Operation
import json

c = Client(
    nodes=["https://api.steem.house"],
    keys=["<posting-private-key>",])


op = Operation('comment', {
    "parent_author": None,
    "parent_permlink": "steem",
    "author": "emrebeyler",
    "permlink": "hf20-unique-permlink",
    "title": "HF20!",
    "body": "Looks like it did. (Broadcasted via ```https://api.steem.house```).",
    "json_metadata": json.dumps({"tags": "steem hf20"})
})

c.broadcast(op)

If you want to create a reply, update the parent_permlink and parent_author fields, ignore the title, and fill the body with your reply.

It should be also possible with beem and other libraries, too.

Also, mahdiyari mentioned his RPC node's replay is complete: https://api.mahdiyari.info.

Sort:  

Greetings @emrebeyler, you could guide me on what is the process to claim the Pending claimed accounts?

Finally... I used dsteem tho

hmm, should I spam test the 3 second rule?
:))

beem works also for writing a reply.

Who needs a web-interface for beem ;).

that would be sick actually :)

Lightsteem also works with replies. Probably other libraries also work. I think the key point here using the right node(s). :)

Tried with steemjs and failed, possibly I forgot how to set parameters.

Is ONO an alternative?

VOTED------ WITNESS

Coin Marketplace

STEEM 0.18
TRX 0.15
JST 0.029
BTC 61475.37
ETH 2485.94
USDT 1.00
SBD 2.61