eth_pairings_cpp 0.1.1

EIP1962 reference implementation in C++
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __WRAPPER_H__
#define __WRAPPER_H__

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

int run(const char *i, uint32_t i_len, char *o, uint32_t *o_len, char *err, uint32_t *char_len);
int meter_gas(const char *i, uint32_t i_len, uint64_t *gas);

#ifdef __cplusplus
}
#endif

#endif /* __WRAPPER_H__ */