-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaergo.h
More file actions
287 lines (209 loc) · 6.47 KB
/
aergo.h
File metadata and controls
287 lines (209 loc) · 6.47 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#include <stdint.h>
#include <stdbool.h>
#ifdef _WIN32
#define EXPORTED __declspec(dllexport)
#else
#define EXPORTED __attribute__((visibility("default")))
#endif
// Library version in string format
EXPORTED char * aergo_lib_version();
// Connection
typedef struct aergo aergo;
EXPORTED aergo * aergo_connect(const char *host, int port);
EXPORTED void aergo_free(aergo *instance);
EXPORTED int aergo_process_requests(aergo *instance, int timeout);
// Accounts
typedef struct aergo_account aergo_account;
struct aergo_account {
bool use_ledger;
int index;
unsigned char privkey[32];
unsigned char pubkey[33];
char address[64];
uint64_t nonce;
double balance;
uint8_t state_root[32];
bool is_updated;
};
EXPORTED bool aergo_check_privkey(aergo *instance, aergo_account *account);
/* the error string buffer must be at least 256 bytes in size */
EXPORTED bool aergo_get_account_state(aergo *instance, aergo_account *account, char *error);
// Transaction Receipt
typedef struct transaction_receipt transaction_receipt;
struct transaction_receipt {
char contractAddress[56]; // in expanded/string form
char status[16];
char ret[2048];
uint64_t blockNo;
char blockHash[32];
int32_t txIndex;
char txHash[32];
uint64_t gasUsed;
double feeUsed;
bool feeDelegation;
};
typedef void (*transaction_receipt_cb)(void *arg, transaction_receipt *receipt);
EXPORTED bool aergo_get_receipt(aergo *instance,
const char *txn_hash,
struct transaction_receipt *receipt);
EXPORTED bool aergo_get_receipt_async(aergo *instance,
const char *txn_hash,
transaction_receipt_cb cb,
void *arg);
// Transfer - synchronous
EXPORTED bool aergo_transfer(aergo *instance,
transaction_receipt *receipt,
aergo_account *from_account,
const char *to_account,
double value);
EXPORTED bool aergo_transfer_int(aergo *instance,
transaction_receipt *receipt,
aergo_account *from_account,
const char *to_account,
uint64_t integer,
uint64_t decimal);
EXPORTED bool aergo_transfer_str(aergo *instance,
transaction_receipt *receipt,
aergo_account *from_account,
const char *to_account,
const char *value);
EXPORTED bool aergo_transfer_bignum(aergo *instance,
transaction_receipt *receipt,
aergo_account *from_account,
const char *to_account,
const unsigned char *amount,
int len);
// Transfer - asynchronous
EXPORTED bool aergo_transfer_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *from_account,
const char *to_account,
double value);
EXPORTED bool aergo_transfer_int_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *from_account,
const char *to_account,
uint64_t integer,
uint64_t decimal);
EXPORTED bool aergo_transfer_str_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *from_account,
const char *to_account,
const char *value);
EXPORTED bool aergo_transfer_bignum_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *from_account,
const char *to_account,
const unsigned char *amount,
int len);
// Call smart contract function - synchronous
EXPORTED bool aergo_call_smart_contract_json(aergo *instance,
transaction_receipt *receipt,
aergo_account *account,
const char *contract_address,
const char *function,
const char *args);
EXPORTED bool aergo_call_smart_contract(aergo *instance,
transaction_receipt *receipt,
aergo_account *account,
const char *contract_address,
const char *function,
const char *types,
...);
// Call smart contract function - asynchronous
EXPORTED bool aergo_call_smart_contract_json_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *account,
const char *contract_address,
const char *function,
const char *args);
EXPORTED bool aergo_call_smart_contract_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *account,
const char *contract_address,
const char *function,
const char *types,
...);
// MultiCall - synchronous
EXPORTED bool aergo_multicall(aergo *instance,
transaction_receipt *receipt,
aergo_account *account,
const char *payload);
// MultiCall - asynchronous
EXPORTED bool aergo_multicall_async(aergo *instance,
transaction_receipt_cb cb,
void *arg,
aergo_account *account,
const char *payload);
// Query smart contract - synchronous
EXPORTED bool aergo_query_smart_contract_json(aergo *instance,
char *result,
int resultlen,
const char *contract_address,
const char *function,
const char *args);
EXPORTED bool aergo_query_smart_contract(aergo *instance,
char *result,
int resultlen,
const char *contract_address,
const char *function,
const char *types,
...);
// Query smart contract - asynchronous
typedef void (*query_smart_contract_cb)(void *arg, bool success, char *result);
EXPORTED bool aergo_query_smart_contract_json_async(aergo *instance,
query_smart_contract_cb cb,
void *arg,
const char *contract_address,
const char *function,
const char *args);
EXPORTED bool aergo_query_smart_contract_async(aergo *instance,
query_smart_contract_cb cb,
void *arg,
const char *contract_address,
const char *function,
const char *types,
...);
// Query smart contract state variable - synchronous
EXPORTED bool aergo_query_smart_contract_state_variable(aergo *instance,
char *result,
int resultlen,
const char *contract_address,
const char *state_var);
// Query smart contract state variable - asynchronous
typedef void (*query_state_var_cb)(void *arg, bool success, char *result);
EXPORTED bool aergo_query_smart_contract_state_variable_async(aergo *instance,
query_state_var_cb cb,
void *arg,
const char *contract_address,
const char *state_var);
// Smart contract events
typedef struct contract_event contract_event;
struct contract_event {
char contractAddress[64];
char eventName[64];
char jsonArgs[2048];
int32_t eventIdx;
char txHash[32];
char blockHash[32];
uint64_t blockNo;
int32_t txIndex;
};
typedef void (*contract_event_cb)(void *arg, contract_event *event);
EXPORTED bool aergo_contract_events_subscribe(aergo *instance,
const char *contract_address,
const char *event_name,
contract_event_cb cb,
void *arg);
// Blocks
EXPORTED bool aergo_get_block(aergo *instance, uint64_t block_number);
typedef void (*block_stream_cb)(uint64_t block_number, uint64_t timestamp);
EXPORTED bool aergo_block_stream_subscribe(aergo *instance, block_stream_cb cb);
// Status
EXPORTED bool aergo_get_blockchain_status(aergo *instance);