hdac SDK
SDK for hdac blockchain development
keyshelper.h
1 #ifndef KEYSHELPER_H
2 #define KEYSHELPER_H
3 
4 #include <cstdint>
5 #include <vector>
6 
8 {
9 public:
10  virtual const std::vector<unsigned char> pubkeyAddrPrefix() const = 0;
11  virtual const std::vector<unsigned char> scriptAddrPrefix() const = 0;
12 };
13 
15 {
16 public:
17  virtual const std::vector<unsigned char> privkeyPrefix() const = 0;
18 };
19 
21 {
22 public:
23  virtual int32_t addrChecksumValue() const = 0;
24 };
25 
27 
28 };
29 
31 
32 };
33 
34 #endif // KEYSHELPER_H
Definition: keyshelper.h:26
Definition: keyshelper.h:7
Definition: keyshelper.h:30
Definition: keyshelper.h:14
Definition: keyshelper.h:20