inertia186 / hivedocs

Hive Platform Developer Documentation.
https://inertia186.github.io/hivedocs/
MIT License
1 stars 0 forks source link

Plugin & API List Update #5

Closed inertia186 closed 5 years ago

inertia186 commented 5 years ago

Some slight tweaks are needed on:

https://developers.steem.io/tutorials-recipes/plugin-and-api-list

Specifically, the paragraph:

Note, while the account_history_rocksdb plugin is a more efficient, the current implementation does not provide support for condenser_api.get_transaction.

This is still accurate, except that "is a more efficient" needs to be removed.

AC

inertia186 commented 5 years ago

Related commits.

62ace0a5b95d7ded5c62df5ab63a3981ec3dde52 4a2a0d2211b7a6a4bd86b7754267cb3346ca6a68

inertia186 commented 5 years ago

To help sub out rewards_api, I am using the following tintoy ref ed1ca68.

# Start the tintoy tag with rewards-api enabled (by checking out and adding it to `testnet.config.ini`)...
docker run -d -p 8090:8090 inertia/tintoy:master

# After waiting for the node to fully sych'd, check list of methods ...
curl -s --data '{"jsonrpc":"2.0", "method":"jsonrpc.get_methods", "id":1}' http://localhost:8090 | jq

# If we see rewards_api.simulate_curve_payouts, we're ready to test ...
curl -s --data '{"jsonrpc":"2.0", "method":"rewards_api.simulate_curve_payouts", "params": {}, "id":1}' http://localhost:8090 | jq

Still need to research what the expected params should be.

inertia186 commented 5 years ago

https://github.com/steemit/devportal/pull/423