blob: b9406404984abd4ad4389de19f13eb6dc443cc14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef STRATUM_PROXY_H
#define STRATUM_PROXY_H
#include "esp_err.h"
#include <stdint.h>
#include <stdbool.h>
#define STRATUM_MAX_JOB_ID_LEN 32
#define STRATUM_MAX_JOBS 4
typedef struct {
uint32_t job_id;
uint8_t prevhash[32];
uint8_t merkle_root[32];
uint32_t ntime;
uint32_t nbits;
uint32_t version;
uint8_t target[32];
int target_len;
bool valid;
} stratum_job_t;
typedef struct {
double hashrate_ghs;
uint32_t nbits;
uint64_t total_shares;
uint64_t total_accepted;
uint64_t total_rejected;
double current_hashprice;
int active_miners;
} stratum_proxy_stats_t;
esp_err_t stratum_proxy_init(uint16_t port);
void stratum_proxy_set_job(const stratum_job_t *job);
const stratum_job_t *stratum_proxy_get_current_job(void);
void stratum_proxy_get_stats(stratum_proxy_stats_t *stats);
void stratum_proxy_stop(void);
#endif
|