Get chain ID from the RPC provider (cached)
| 689 | |
| 690 | // Get chain ID from the RPC provider (cached) |
| 691 | uint64_t getChainId() const { |
| 692 | if (chain_id_ == 0) { |
| 693 | chain_id_ = quip::getChainId(rpc_url_); |
| 694 | } |
| 695 | return chain_id_; |
| 696 | } |
| 697 | |
| 698 | private: |
| 699 | static size_t WriteCallback(void *contents, size_t size, size_t nmemb, |
nothing calls this directly
no test coverage detected