The watcher plugin is useful to watch for specific actions on the chain and then send them to an HTTP url. The HTTP POST is called as soon as the action is seen on the chain!
You can either get notifications for all actions on a account, or any specific actions. You get notifications in a form of http POST call to the url you specify.
NOTE: in case of forks plugin can end up sending notifications for same transaction twice. That's because notifications are sent as soon as block is accepted (so there is no guarantee block is not on a fork). Receiver of notifications should handle the duplicate notification appropriately.
Usually you don't want to receive notifications for actions which happened months ago, just because your nodeos is resyncing. To prevent this you can specify age limit for blocks, which are filtered for actions you want to receive. This is by default set to 1 minute, but is configurable.
Features just mentioned are configurable through options to nodeos (built with watcher_plugin) or in your config.ini. Use nodeos --help
to see help for options.
Notifications are sent asynchronously, which means it does not interfere with normal operation of nodeos, even in case of unreliable http connection to the notification receiver.
To make sure no action is missed, even when a connection to the receiver is lost, on failed first attempt to send, plugin retries once more before giving up.
- Works on any EOSIO node that runs v1.1.0 and up.
You need to statically link this plugin with nodeos. To do that, pass the following flag to cmake command when building eosio:
-DEOSIO_ADDITIONAL_PLUGINS=<path-to-eosio-watcher-plugin>
- Remove or comment out this line in CMakeLists.txt:
eosio_additional_plugin(watcher_plugin)
- Copy this repo to
<eosio-source-dir>/plugins/
You should now have<eosio-source-dir>/plugins/watcher_plugin
- Add the following line to
<eosio-source-dir>/plugins/CMakeLists.txt
with otheradd_subdirectory
items
add_subdirectory(watcher_plugin)
- Add the following line to the bottom of
<eosio-source-dir>/programs/nodeos/CMakeLists.txt
target_link_libraries( nodeos PRIVATE -Wl,${whole_archive_flag} watcher_plugin -Wl,${no_whole_archive_flag})
- Build and install nodeos as usual. You could even just
cd <eosio-source-dir>/build
and thensudo make install
Enable this plugin using --plugin
option to nodeos or in your config.ini. Use nodeos --help
to see options used by this plugin.
#Enable plugin
plugin = eosio::watcher_plugin
#Set account:action so eosauthority:spaceinvader or just eosauthority: for all actions on eosauthority
watch = eosauthority:
#watch multiple if required
watch = b1:
#watch multiple if required
watch = eosabc:forum
#http endpoint for each action seen on the chain. JSON array if you there are multiple actions in one block.
#see sample json example. All "watch" above will be sent to this URL and the URL can handle processing as required
watch-receiver-url = http://127.0.0.1:8082/blockchain_action
#Age limit in seconds for blocks to send notifications. No age limit if set to negative.
#Used to prevent old actions from trigger HTTP request while on replay (seconds)
watch-age-limit = 5
- You should see an entry for watcher_plugin in the logs when you restart nodeos.
- Your HTTP endpoint should receive POST requests as in our sample JSON
- Thats it, you should be all set to get realtime actions on the chain.
- This plugin is used on production with space invaders. https://eosauthority.com/space/
- You also use this plugin to setup realtime alerts similar to https://eosauthority.com/alerts
- Any suggestions and pull requests are welcome :)