logos-execution-zone-module/src/logos_execution_zone_wallet_module.h

131 lines
4.6 KiB
C
Raw Permalink Normal View History

2026-02-04 16:27:47 +01:00
#ifndef LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
#define LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
2026-02-03 18:12:53 +01:00
#include "i_logos_execution_zone_wallet_module.h"
#ifdef __cplusplus
extern "C" {
#endif
#include <wallet_ffi.h>
#ifdef __cplusplus
}
#endif
#include <QJsonArray>
2026-02-04 15:51:02 +01:00
#include <QObject>
#include <QString>
#include <QVariantList>
class LogosExecutionZoneWalletModule : public QObject, public PluginInterface, public ILogosExecutionZoneWalletModule {
2026-02-03 18:12:53 +01:00
Q_OBJECT
2026-02-03 18:28:17 +01:00
Q_PLUGIN_METADATA(IID ILogosExecutionZoneWalletModule_iid FILE LOGOS_EXECUTION_ZONE_WALLET_MODULE_METADATA_FILE)
2026-02-04 15:51:02 +01:00
Q_INTERFACES(PluginInterface ILogosExecutionZoneWalletModule)
private:
LogosAPI* logosApi = nullptr;
2026-02-18 11:21:00 +00:00
WalletHandle* walletHandle = nullptr;
2026-02-03 18:12:53 +01:00
public:
2026-02-04 16:18:56 +01:00
LogosExecutionZoneWalletModule();
2026-02-03 18:12:53 +01:00
~LogosExecutionZoneWalletModule() override;
2026-02-04 15:51:02 +01:00
// === Plugin Interface ===
2026-02-03 18:12:53 +01:00
[[nodiscard]] QString name() const override;
[[nodiscard]] QString version() const override;
2026-02-04 15:51:02 +01:00
// === Logos Core ===
2026-02-04 16:18:56 +01:00
Q_INVOKABLE void initLogos(LogosAPI* logosApiInstance) override;
2026-02-04 15:51:02 +01:00
// === Logos Execution Zone Wallet ===
2026-02-20 18:15:25 +01:00
// Pinata claiming
Q_INVOKABLE QString claim_pinata(
const QString& pinata_account_id_hex,
const QString& winner_account_id_hex,
const QString& solution_le16_hex
) override;
Q_INVOKABLE QString claim_pinata_private_owned_already_initialized(
const QString& pinata_account_id_hex,
const QString& winner_account_id_hex,
const QString& solution_le16_hex,
uint64_t winner_proof_index,
const QString& winner_proof_siblings_json
) override;
Q_INVOKABLE QString claim_pinata_private_owned_not_initialized(
const QString& pinata_account_id_hex,
const QString& winner_account_id_hex,
const QString& solution_le16_hex
) override;
2026-02-04 15:51:02 +01:00
// Account Management
Q_INVOKABLE QString create_account_public() override;
Q_INVOKABLE QString create_account_private() override;
Q_INVOKABLE QJsonArray list_accounts() override;
2026-02-04 15:51:02 +01:00
// Account Queries
Q_INVOKABLE QString get_balance(const QString& account_id_hex, bool is_public) override;
Q_INVOKABLE QString get_balance(const QString& account_id_hex, const QString& is_public_str);
Q_INVOKABLE QString get_account_public(const QString& account_id_hex) override;
Q_INVOKABLE QString get_account_private(const QString& account_id_hex) override;
Q_INVOKABLE QString get_public_account_key(const QString& account_id_hex) override;
Q_INVOKABLE QString get_private_account_keys(const QString& account_id_hex) override;
2026-02-04 15:51:02 +01:00
// Account Encoding
Q_INVOKABLE QString account_id_to_base58(const QString& account_id_hex) override;
Q_INVOKABLE QString account_id_from_base58(const QString& base58_str) override;
2026-02-04 15:51:02 +01:00
// Blockchain Synchronisation
Q_INVOKABLE int sync_to_block(uint64_t block_id) override;
2026-03-06 00:09:45 +00:00
Q_INVOKABLE int sync_to_block(const QString& block_id_str) override;
Q_INVOKABLE int get_last_synced_block() override;
Q_INVOKABLE int get_current_block_height() override;
2026-02-04 15:51:02 +01:00
// Operations
Q_INVOKABLE QString transfer_public(
const QString& from_hex,
const QString& to_hex,
const QString& amount_le16_hex
2026-02-04 15:51:02 +01:00
) override;
Q_INVOKABLE QString transfer_shielded(
const QString& from_hex,
2026-02-18 22:10:38 +01:00
const QString& to_keys_json,
const QString& amount_le16_hex
2026-02-18 09:20:58 +00:00
) override;
Q_INVOKABLE QString transfer_deshielded(
const QString& from_hex,
const QString& to_hex,
const QString& amount_le16_hex
2026-02-18 09:20:58 +00:00
) override;
Q_INVOKABLE QString transfer_private(
const QString& from_hex,
2026-02-18 22:10:38 +01:00
const QString& to_keys_json,
const QString& amount_le16_hex
2026-02-18 09:20:58 +00:00
) override;
Q_INVOKABLE QString transfer_shielded_owned(
const QString& from_hex,
const QString& to_hex,
const QString& amount_le16_hex
2026-02-18 09:20:58 +00:00
) override;
Q_INVOKABLE QString transfer_private_owned(
const QString& from_hex,
const QString& to_hex,
const QString& amount_le16_hex
2026-02-18 09:20:58 +00:00
) override;
Q_INVOKABLE QString register_public_account(const QString& account_id_hex) override;
Q_INVOKABLE QString register_private_account(const QString& account_id_hex) override;
2026-02-04 15:51:02 +01:00
// Wallet Lifecycle
Q_INVOKABLE int create_new(const QString& config_path, const QString& storage_path, const QString& password) override;
Q_INVOKABLE int open(const QString& config_path, const QString& storage_path) override;
Q_INVOKABLE int save() override;
2026-02-04 15:51:02 +01:00
// Configuration
2026-02-18 11:21:00 +00:00
Q_INVOKABLE QString get_sequencer_addr() override;
2026-02-04 15:51:02 +01:00
signals:
void eventResponse(const QString& eventName, const QVariantList& data);
2026-02-03 18:12:53 +01:00
};
2026-02-04 15:51:02 +01:00
#endif