Steem Engine sidechain interpreter.
For the most part, Tender is simply a Steem Engine block explorer. But it's a little more than just that. It's also a rest endpoint for querying account history. For example, if you're running an exchange, you can use your own tender node to programmatically query deposits to your exchange.
Running your own node means you won't have to rely on api.steem-engine.com
to query current sidechain activity.
To set it up:
docker run -it --name tender -p 5000:5000 -p 3000:3000 inertia/tender:latest
The above docker
command will initialize an internal Steem Engine node on port 5000, replay the latest block log, and start the explorer on port 3000.
Once set up, you can browse the sidechain here:
For exchanges, perhaps the most useful URL is, for example the last 100 transfers to the account named alice:
http://localhost:3000/transfers/alice.json
Or, get the last 1000 to alice:
http://localhost:3000/transfers/alice/1000.json
This is how you query the second 1000 transfers of ENG
tokens to alice:
http://localhost:3000/transfers/alice/ENG/1000/2.json
If you already have your own steemd
node running block_api
, you can point to that node for new blocks.
docker run --env STEEMD_NODE_URL=http://your-steemd-node-here:8090 \
-it --name tender \
-p 5000:5000 \
-p 3000:3000 \
inertia/tender:latest
Also see: https://hub.docker.com/r/inertia/tender/
See some of my previous Ruby How To posts in: #radiator #ruby
If you're using Tender, I'd love to hear from you. Drop me a line and tell me what you think! I'm @inertia on STEEM.
I don't believe in intellectual "property". If you do, consider Radiator as licensed under a Creative Commons License.