/* * This file is part of the Monero P2Pool * Copyright (c) 2021-2022 SChernykh * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include "uv_util.h" namespace p2pool { class Wallet { public: explicit Wallet(const char* address); Wallet(const Wallet& w); Wallet& operator=(const Wallet& w); FORCEINLINE bool valid() const { return m_type != NetworkType::Invalid; } FORCEINLINE NetworkType type() const { return m_type; } bool decode(const char* address); bool assign(const hash& spend_pub_key, const hash& view_pub_key, NetworkType type); FORCEINLINE const hash& spend_public_key() const { return m_spendPublicKey; } FORCEINLINE const hash& view_public_key() const { return m_viewPublicKey; } bool get_eph_public_key(const hash& txkey_sec, size_t output_index, hash& eph_public_key, uint8_t& view_tag) const; bool get_eph_public_key_with_view_tag(const hash& txkey_sec, size_t output_index, hash& eph_public_key, uint8_t expected_view_tag) const; FORCEINLINE bool operator<(const Wallet& w) const { return m_spendPublicKey < w.m_spendPublicKey; } FORCEINLINE bool operator==(const Wallet& w) const { return m_spendPublicKey == w.m_spendPublicKey; } private: uint64_t m_prefix; hash m_spendPublicKey; hash m_viewPublicKey; uint32_t m_checksum; NetworkType m_type; }; } // namespace p2pool