Get chain ID from the RPC provider (cached)
| 276 | |
| 277 | // Get chain ID from the RPC provider (cached) |
| 278 | uint64_t getChainId() const { |
| 279 | if (chain_id_ == 0) { |
| 280 | chain_id_ = quip::getChainId(rpc_url_); |
| 281 | } |
| 282 | return chain_id_; |
| 283 | } |
| 284 | |
| 285 | std::vector<Vault> getVaults(const Address &owner) { |
| 286 | Address checksummed_owner = quip::toChecksumAddress(owner); |
nothing calls this directly
no test coverage detected