steemit / simple_steem_client

A minimalist Steem RPC client in Python
2 stars 5 forks source link

Use new appbase RPC syntax #2

Open theoreticalbts opened 6 years ago

theoreticalbts commented 6 years ago

For appbase, {"jsonrpc":"2.0", "method":"call", "params":["condenser_api","get_state",["trending"]], "id":1} becomes {"jsonrpc":"2.0", "method":"condenser_api.get_state", "params":["trending"], "id":1}

Let's implement it.