mirror of
https://github.com/logos-blockchain/logos-execution-zone-module.git
synced 2026-04-03 04:33:08 +00:00
128 lines
4.4 KiB
C++
128 lines
4.4 KiB
C++
#ifndef LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
|
|
#define LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
|
|
|
|
#include "i_logos_execution_zone_wallet_module.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include <wallet_ffi.h>
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#include <QJsonArray>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QVariantList>
|
|
|
|
class LogosExecutionZoneWalletModule : public QObject, public PluginInterface, public ILogosExecutionZoneWalletModule {
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID ILogosExecutionZoneWalletModule_iid FILE LOGOS_EXECUTION_ZONE_WALLET_MODULE_METADATA_FILE)
|
|
Q_INTERFACES(PluginInterface ILogosExecutionZoneWalletModule)
|
|
|
|
private:
|
|
LogosAPI* logosApi = nullptr;
|
|
WalletHandle* walletHandle = nullptr;
|
|
|
|
public:
|
|
LogosExecutionZoneWalletModule();
|
|
~LogosExecutionZoneWalletModule() override;
|
|
|
|
// === Plugin Interface ===
|
|
[[nodiscard]] QString name() const override;
|
|
[[nodiscard]] QString version() const override;
|
|
|
|
// === Logos Core ===
|
|
|
|
Q_INVOKABLE void initLogos(LogosAPI* logosApiInstance) override;
|
|
|
|
// === Logos Execution Zone Wallet ===
|
|
|
|
// 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;
|
|
|
|
// Account Management
|
|
Q_INVOKABLE QString create_account_public() override;
|
|
Q_INVOKABLE QString create_account_private() override;
|
|
Q_INVOKABLE QJsonArray list_accounts() override;
|
|
|
|
// Account Queries
|
|
Q_INVOKABLE QString get_balance(const QString& account_id_hex, bool is_public) override;
|
|
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;
|
|
|
|
// 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;
|
|
|
|
// Blockchain Synchronisation
|
|
Q_INVOKABLE int sync_to_block(uint64_t block_id) override;
|
|
Q_INVOKABLE uint64_t get_last_synced_block() override;
|
|
Q_INVOKABLE uint64_t get_current_block_height() override;
|
|
|
|
// Operations
|
|
Q_INVOKABLE QString transfer_public(
|
|
const QString& from_hex,
|
|
const QString& to_hex,
|
|
const QString& amount_le16_hex
|
|
) override;
|
|
Q_INVOKABLE QString transfer_shielded(
|
|
const QString& from_hex,
|
|
const QString& to_keys_json,
|
|
const QString& amount_le16_hex
|
|
) override;
|
|
Q_INVOKABLE QString transfer_deshielded(
|
|
const QString& from_hex,
|
|
const QString& to_hex,
|
|
const QString& amount_le16_hex
|
|
) override;
|
|
Q_INVOKABLE QString transfer_private(
|
|
const QString& from_hex,
|
|
const QString& to_keys_json,
|
|
const QString& amount_le16_hex
|
|
) override;
|
|
Q_INVOKABLE QString transfer_shielded_owned(
|
|
const QString& from_hex,
|
|
const QString& to_hex,
|
|
const QString& amount_le16_hex
|
|
) override;
|
|
Q_INVOKABLE QString transfer_private_owned(
|
|
const QString& from_hex,
|
|
const QString& to_hex,
|
|
const QString& amount_le16_hex
|
|
) 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;
|
|
|
|
// 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;
|
|
|
|
// Configuration
|
|
Q_INVOKABLE QString get_sequencer_addr() override;
|
|
|
|
signals:
|
|
void eventResponse(const QString& eventName, const QVariantList& data);
|
|
};
|
|
|
|
#endif |