├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── include └── eosio │ └── watcher_plugin │ ├── http_async_client.hpp │ └── watcher_plugin.hpp ├── sample-post.json └── src └── watcher_plugin.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/README.md -------------------------------------------------------------------------------- /include/eosio/watcher_plugin/http_async_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/include/eosio/watcher_plugin/http_async_client.hpp -------------------------------------------------------------------------------- /include/eosio/watcher_plugin/watcher_plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/include/eosio/watcher_plugin/watcher_plugin.hpp -------------------------------------------------------------------------------- /sample-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/sample-post.json -------------------------------------------------------------------------------- /src/watcher_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eosauthority/eosio-watcher-plugin/HEAD/src/watcher_plugin.cpp --------------------------------------------------------------------------------