-
Notifications
You must be signed in to change notification settings - Fork 0
/
moac.php
500 lines (413 loc) · 10.1 KB
/
moac.php
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<?php
/**
* MOAC JSON-RPC interface
*
* See MOAC API documentation for more information:
*/
require_once(dirname(__FILE__).'/json-rpc.php');
class MOAC extends JSON_RPC
{
private function moacer_request($method, $params=array())
{
try
{
$ret = $this->request($method, $params);
return $ret->result;
}
catch(RPCException $e)
{
throw $e;
}
}
private function decode_hex($input)
{
if(substr($input, 0, 2) == '0x')
$input = substr($input, 2);
if(preg_match('/[a-f0-9]+/', $input))
return hexdec($input);
return $input;
}
function chain3_clientVersion()
{
return $this->moacer_request(__FUNCTION__);
}
function chain3_sha3($input)
{
return $this->moacer_request(__FUNCTION__, array($input));
}
function net_version()
{
return $this->moacer_request(__FUNCTION__);
}
function net_listening()
{
return $this->moacer_request(__FUNCTION__);
}
function net_peerCount()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_protocolVersion()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_coinbase()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_mining()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_hashrate()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_gasPrice()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_accounts()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_blockNumber($decode_hex=FALSE)
{
$block = $this->moacer_request(__FUNCTION__);
if($decode_hex)
$block = $this->decode_hex($block);
return $block;
}
function mc_getBalance($address, $block='latest', $decode_hex=FALSE)
{
$balance = $this->moacer_request(__FUNCTION__, array($address, $block));
if($decode_hex)
$balance = $this->decode_hex($balance);
return $balance;
}
function mc_getStorageAt($address, $at, $block='latest')
{
return $this->moacer_request(__FUNCTION__, array($address, $at, $block));
}
function mc_getTransactionCount($address, $block='latest', $decode_hex=FALSE)
{
$count = $this->moacer_request(__FUNCTION__, array($address, $block));
if($decode_hex)
$count = $this->decode_hex($count);
return $count;
}
function mc_getBlockTransactionCountByHash($tx_hash)
{
return $this->moacer_request(__FUNCTION__, array($tx_hash));
}
function mc_getBlockTransactionCountByNumber($tx='latest')
{
return $this->moacer_request(__FUNCTION__, array($tx));
}
function mc_getUncleCountByBlockHash($block_hash)
{
return $this->moacer_request(__FUNCTION__, array($block_hash));
}
function mc_getUncleCountByBlockNumber($block='latest')
{
return $this->moacer_request(__FUNCTION__, array($block));
}
function mc_getCode($address, $block='latest')
{
return $this->moacer_request(__FUNCTION__, array($address, $block));
}
function mc_sign($address, $input)
{
return $this->moacer_request(__FUNCTION__, array($address, $input));
}
function mc_sendTransaction($transaction)
{
if(!is_a($transaction, 'MOAC_Transaction'))
{
throw new ErrorException('Transaction object expected');
}
else
{
return $this->moacer_request(__FUNCTION__, $transaction->toArray());
}
}
function mc_call($message, $block)
{
if(!is_a($message, 'MOAC_Message'))
{
throw new ErrorException('Message object expected');
}
else
{
return $this->moacer_request(__FUNCTION__, $message->toArray());
}
}
function mc_estimateGas($message, $block)
{
if(!is_a($message, 'MOAC_Message'))
{
throw new ErrorException('Message object expected');
}
else
{
return $this->moacer_request(__FUNCTION__, $message->toArray());
}
}
function mc_getBlockByHash($hash, $full_tx=TRUE)
{
return $this->moacer_request(__FUNCTION__, array($hash, $full_tx));
}
function mc_getBlockByNumber($block='latest', $full_tx=TRUE)
{
return $this->moacer_request(__FUNCTION__, array($block, $full_tx));
}
function mc_getTransactionByHash($hash)
{
return $this->moacer_request(__FUNCTION__, array($hash));
}
function mc_getTransactionByBlockHashAndIndex($hash, $index)
{
return $this->moacer_request(__FUNCTION__, array($hash, $index));
}
function mc_getTransactionByBlockNumberAndIndex($block, $index)
{
return $this->moacer_request(__FUNCTION__, array($block, $index));
}
function mc_getTransactionReceipt($tx_hash)
{
return $this->moacer_request(__FUNCTION__, array($tx_hash));
}
function mc_getUncleByBlockHashAndIndex($hash, $index)
{
return $this->moacer_request(__FUNCTION__, array($hash, $index));
}
function mc_getUncleByBlockNumberAndIndex($block, $index)
{
return $this->moacer_request(__FUNCTION__, array($block, $index));
}
function mc_getCompilers()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_compileSolidity($code)
{
return $this->moacer_request(__FUNCTION__, array($code));
}
function mc_compileLLL($code)
{
return $this->moacer_request(__FUNCTION__, array($code));
}
function mc_compileSerpent($code)
{
return $this->moacer_request(__FUNCTION__, array($code));
}
function mc_newFilter($filter, $decode_hex=FALSE)
{
if(!is_a($filter, 'MOAC_Filter'))
{
throw new ErrorException('Expected a Filter object');
}
else
{
$id = $this->moacer_request(__FUNCTION__, $filter->toArray());
if($decode_hex)
$id = $this->decode_hex($id);
return $id;
}
}
function mc_newBlockFilter($decode_hex=FALSE)
{
$id = $this->moacer_request(__FUNCTION__);
if($decode_hex)
$id = $this->decode_hex($id);
return $id;
}
function mc_newPendingTransactionFilter($decode_hex=FALSE)
{
$id = $this->moacer_request(__FUNCTION__);
if($decode_hex)
$id = $this->decode_hex($id);
return $id;
}
function mc_uninstallFilter($id)
{
return $this->moacer_request(__FUNCTION__, array($id));
}
function mc_getFilterChanges($id)
{
return $this->moacer_request(__FUNCTION__, array($id));
}
function mc_getFilterLogs($id)
{
return $this->moacer_request(__FUNCTION__, array($id));
}
function mc_getLogs($filter)
{
if(!is_a($filter, 'MOAC_Filter'))
{
throw new ErrorException('Expected a Filter object');
}
else
{
return $this->moacer_request(__FUNCTION__, $filter->toArray());
}
}
function mc_getWork()
{
return $this->moacer_request(__FUNCTION__);
}
function mc_submitWork($nonce, $pow_hash, $mix_digest)
{
return $this->moacer_request(__FUNCTION__, array($nonce, $pow_hash, $mix_digest));
}
function db_putString($db, $key, $value)
{
return $this->moacer_request(__FUNCTION__, array($db, $key, $value));
}
function db_getString($db, $key)
{
return $this->moacer_request(__FUNCTION__, array($db, $key));
}
function db_putHex($db, $key, $value)
{
return $this->moacer_request(__FUNCTION__, array($db, $key, $value));
}
function db_getHex($db, $key)
{
return $this->moacer_request(__FUNCTION__, array($db, $key));
}
function shh_version()
{
return $this->moacer_request(__FUNCTION__);
}
function shh_post($post)
{
if(!is_a($post, 'Whisper_Post'))
{
throw new ErrorException('Expected a Whisper post');
}
else
{
return $this->moacer_request(__FUNCTION__, $post->toArray());
}
}
function shh_newIdentinty()
{
return $this->moacer_request(__FUNCTION__);
}
function shh_hasIdentity($id)
{
return $this->moacer_request(__FUNCTION__);
}
function shh_newFilter($to=NULL, $topics=array())
{
return $this->moacer_request(__FUNCTION__, array(array('to'=>$to, 'topics'=>$topics)));
}
function shh_uninstallFilter($id)
{
return $this->moacer_request(__FUNCTION__, array($id));
}
function shh_getFilterChanges($id)
{
return $this->moacer_request(__FUNCTION__, array($id));
}
function shh_getMessages($id)
{
return $this->moacer_request(__FUNCTION__, array($id));
}
}
/**
* MOAC transaction object
*/
class MOAC_Transaction
{
private $to, $from, $gas, $gasPrice, $value, $data, $nonce;
function __construct($from, $to, $gas, $gasPrice, $value, $data='', $nonce=NULL)
{
$this->from = $from;
$this->to = $to;
$this->gas = $gas;
$this->gasPrice = $gasPrice;
$this->value = $value;
$this->data = $data;
$this->nonce = $nonce;
}
function toArray()
{
return array(
array
(
'from'=>$this->from,
'to'=>$this->to,
'gas'=>$this->gas,
'gasPrice'=>$this->gasPrice,
'value'=>$this->value,
'data'=>$this->data,
'nonce'=>$this->nonce
)
);
}
}
/**
* MOAC message -- Same as a transaction, except using this won't
* post the transaction to the blockchain.
*/
class MOAC_Message extends MOAC_Transaction
{
}
/**
* MOAC transaction filter object
*/
class MOAC_Filter
{
private $fromBlock, $toBlock, $address, $topics;
function __construct($fromBlock, $toBlock, $address, $topics)
{
$this->fromBlock = $fromBlock;
$this->toBlock = $toBlock;
$this->address = $address;
$this->topics = $topics;
}
function toArray()
{
return array(
array
(
'fromBlock'=>$this->fromBlock,
'toBlock'=>$this->toBlock,
'address'=>$this->address,
'topics'=>$this->topics
)
);
}
}
/**
* MOAC whisper post object
*/
class Whisper_Post
{
private $from, $to, $topics, $payload, $priority, $ttl;
function __construct($from, $to, $topics, $payload, $priority, $ttl)
{
$this->from = $from;
$this->to = $to;
$this->topics = $topics;
$this->payload = $payload;
$this->priority = $priority;
$this->ttl = $ttl;
}
function toArray()
{
return array(
array
(
'from'=>$this->from,
'to'=>$this->to,
'topics'=>$this->topics,
'payload'=>$this->payload,
'priority'=>$this->priority,
'ttl'=>$this->ttl
)
);
}
}