| 19 | static const std::string abi_json; |
| 20 | |
| 21 | Impl(const std::string &rpc_url, const std::string &contract_address) |
| 22 | : rpc_url_(rpc_url), contract_address_(contract_address) { |
| 23 | curl_global_init(CURL_GLOBAL_ALL); |
| 24 | } |
| 25 | |
| 26 | ~Impl() { curl_global_cleanup(); } |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected