| 25 | static const std::string abi_json; |
| 26 | |
| 27 | Impl(const std::string &rpc_url, const std::string &contract_address) |
| 28 | : rpc_url_(rpc_url), contract_address_(contract_address) { |
| 29 | curl_global_init(CURL_GLOBAL_ALL); |
| 30 | } |
| 31 | |
| 32 | ~Impl() { curl_global_cleanup(); } |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected