-
Notifications
You must be signed in to change notification settings - Fork 28
/
zmq_plugin.cpp
770 lines (656 loc) · 24.4 KB
/
zmq_plugin.cpp
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
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
/**
* @file
* @copyright defined in eos/LICENSE.txt
* @author cc32d9 <[email protected]>
*/
#include <eosio/zmq_plugin/zmq_plugin.hpp>
#include <string>
#include <zmq.hpp>
#include <fc/io/json.hpp>
#include <eosio/chain/types.hpp>
#include <eosio/chain/controller.hpp>
#include <eosio/chain/trace.hpp>
#include <eosio/chain_plugin/chain_plugin.hpp>
namespace {
const char* SENDER_BIND_OPT = "zmq-sender-bind";
const char* SENDER_BIND_DEFAULT = "tcp://127.0.0.1:5556";
const char* WHITELIST_OPT = "zmq-whitelist-account";
const int32_t MSGTYPE_ACTION_TRACE = 0;
const int32_t MSGTYPE_IRREVERSIBLE_BLOCK = 1;
const int32_t MSGTYPE_FORK = 2;
const int32_t MSGTYPE_ACCEPTED_BLOCK = 3;
const int32_t MSGTYPE_FAILED_TX = 4;
}
namespace zmqplugin {
using namespace eosio;
using namespace eosio::chain;
using account_resource_limit = chain::resource_limits::account_resource_limit;
// these structures are not defined in contract_types.hpp, so we define them here
namespace syscontract {
struct buyrambytes {
account_name payer;
account_name receiver;
uint32_t bytes;
};
struct buyram {
account_name payer;
account_name receiver;
asset quant;
};
struct sellram {
account_name account;
uint64_t bytes;
};
struct delegatebw {
account_name from;
account_name receiver;
asset stake_net_quantity;
asset stake_cpu_quantity;
bool transfer;
};
struct undelegatebw {
account_name from;
account_name receiver;
asset unstake_net_quantity;
asset unstake_cpu_quantity;
};
struct refund {
account_name owner;
};
struct regproducer {
account_name producer;
public_key_type producer_key;
string url;
uint16_t location;
};
struct unregprod {
account_name producer;
};
struct regproxy {
account_name proxy;
bool isproxy;
};
struct voteproducer {
account_name voter;
account_name proxy;
std::vector<account_name> producers;
};
struct claimrewards {
account_name owner;
};
}
namespace token {
struct transfer {
account_name from;
account_name to;
asset quantity;
string memo;
};
struct issue {
account_name to;
asset quantity;
string memo;
};
struct open {
account_name owner;
symbol symbol;
account_name ram_payer;
};
}
typedef std::map<account_name,std::map<symbol,std::set<account_name>>> assetmoves;
struct resource_balance {
name account_name;
int64_t ram_quota = 0;
int64_t ram_usage = 0;
int64_t net_weight = 0;
int64_t cpu_weight = 0;
account_resource_limit net_limit;
account_resource_limit cpu_limit;
};
struct currency_balance {
name account_name;
name contract;
asset balance;
bool deleted = false;
};
struct zmq_action_object {
uint64_t global_action_seq;
block_num_type block_num;
chain::block_timestamp_type block_time;
fc::variant action_trace;
vector<resource_balance> resource_balances;
vector<currency_balance> currency_balances;
uint32_t last_irreversible_block;
};
struct zmq_irreversible_block_object {
block_num_type irreversible_block_num;
digest_type irreversible_block_digest;
};
struct zmq_fork_block_object {
block_num_type invalid_block_num;
};
struct zmq_accepted_block_object {
block_num_type accepted_block_num;
block_timestamp_type accepted_block_timestamp;
account_name accepted_block_producer;
digest_type accepted_block_digest;
};
// see status definitions in libraries/chain/include/eosio/chain/block.hpp
struct zmq_failed_transaction_object {
string trx_id;
block_num_type block_num;
eosio::chain::transaction_receipt::status_enum status_name; // enum
uint8_t status_int; // the same as status, but integer
};
}
namespace eosio {
using namespace chain;
using namespace zmqplugin;
using boost::signals2::scoped_connection;
static appbase::abstract_plugin& _zmq_plugin = app().register_plugin<zmq_plugin>();
class zmq_plugin_impl {
public:
zmq::context_t context;
zmq::socket_t sender_socket;
string socket_bind_str;
chain_plugin* chain_plug = nullptr;
fc::microseconds abi_serializer_max_time;
std::set<name> system_accounts;
std::map<name,std::set<name>> blacklist_actions;
std::map<transaction_id_type, transaction_trace_ptr> cached_traces;
uint32_t _end_block = 0;
bool use_whitelist = false;
std::set<name> whitelist_accounts;
bool whitelist_matched;
fc::optional<scoped_connection> applied_transaction_connection;
fc::optional<scoped_connection> accepted_block_connection;
fc::optional<scoped_connection> irreversible_block_connection;
zmq_plugin_impl():
context(1),
sender_socket(context, ZMQ_PUSH)
{
std::vector<name> sys_acc_names = {
chain::config::system_account_name,
N(eosio.msig), N(eosio.token), N(eosio.ram), N(eosio.ramfee),
N(eosio.stake), N(eosio.vpay), N(eosio.bpay), N(eosio.saving)
};
for(name n : sys_acc_names) {
system_accounts.insert(n);
}
blacklist_actions.emplace
(std::make_pair(chain::config::system_account_name,
std::set<name>{ N(onblock) } ));
blacklist_actions.emplace
(std::make_pair(N(blocktwitter),
std::set<name>{ N(tweet) } ));
}
void send_msg( const string content, int32_t msgtype, int32_t msgopts)
{
zmq::message_t message(content.length()+sizeof(msgtype)+sizeof(msgopts));
unsigned char* ptr = (unsigned char*) message.data();
memcpy(ptr, &msgtype, sizeof(msgtype));
ptr += sizeof(msgtype);
memcpy(ptr, &msgopts, sizeof(msgopts));
ptr += sizeof(msgopts);
memcpy(ptr, content.c_str(), content.length());
sender_socket.send(message);
}
void on_applied_transaction( const transaction_trace_ptr& p )
{
if (p->receipt) {
cached_traces[p->id] = p;
}
}
void on_accepted_block(const block_state_ptr& block_state)
{
auto block_num = block_state->block->block_num();
if ( _end_block >= block_num ) {
// report a fork. All traces sent with higher block number are invalid.
zmq_fork_block_object zfbo;
zfbo.invalid_block_num = block_num;
send_msg(fc::json::to_string(zfbo), MSGTYPE_FORK, 0);
}
_end_block = block_num;
{
zmq_accepted_block_object zabo;
zabo.accepted_block_num = block_num;
zabo.accepted_block_timestamp = block_state->block->timestamp;
zabo.accepted_block_producer = block_state->header.producer;
zabo.accepted_block_digest = block_state->block->digest();
send_msg(fc::json::to_string(zabo), MSGTYPE_ACCEPTED_BLOCK, 0);
}
for (auto& r : block_state->block->transactions) {
transaction_id_type id;
if (r.trx.contains<transaction_id_type>()) {
id = r.trx.get<transaction_id_type>();
}
else {
id = r.trx.get<packed_transaction>().id();
}
if( r.status == transaction_receipt_header::executed ) {
// Send traces only for executed transactions
auto it = cached_traces.find(id);
if (it == cached_traces.end() || !it->second->receipt) {
ilog("missing trace for transaction {id}", ("id", id));
continue;
}
for( const auto& atrace : it->second->action_traces ) {
try {
try {
on_action_trace( atrace, block_state );
}
catch ( ... ) {
wlog("Failed to decode action ${c}:${a} in ${t}",
("c",atrace.act.account)("a",atrace.act.name)("t",id));
throw;
}
}
FC_LOG_AND_DROP();
}
}
else {
// Notify about a failed transaction
zmq_failed_transaction_object zfto;
zfto.trx_id = id.str();
zfto.block_num = block_num;
zfto.status_name = r.status;
zfto.status_int = static_cast<uint8_t>(r.status);
send_msg(fc::json::to_string(zfto), MSGTYPE_FAILED_TX, 0);
}
}
cached_traces.clear();
}
void on_action_trace( const action_trace& at, const block_state_ptr& block_state )
{
whitelist_matched = false;
// check the action against the blacklist
auto search_acc = blacklist_actions.find(at.act.account);
if(search_acc != blacklist_actions.end()) {
if( search_acc->second.count(at.act.name) != 0 ) {
return;
}
}
auto& chain = chain_plug->chain();
zmq_action_object zao;
zao.global_action_seq = at.receipt.global_sequence;
zao.block_num = block_state->block->block_num();
zao.block_time = block_state->block->timestamp;
zao.action_trace = chain.to_variant_with_abi(at, abi_serializer_max_time);
std::set<name> accounts;
assetmoves asset_moves;
find_accounts_and_tokens(at, accounts, asset_moves);
if( use_whitelist && !whitelist_matched ) {
for (auto accit = accounts.begin(); !whitelist_matched && accit != accounts.end(); ++accit) {
check_whitelist(*accit);
}
if( !whitelist_matched )
return;
}
const auto& rm = chain.get_resource_limits_manager();
// populate resource_balances
for (auto accit = accounts.begin(); accit != accounts.end(); ++accit) {
name account_name = *accit;
if( is_account_of_interest(account_name) ) {
resource_balance bal;
bal.account_name = account_name;
rm.get_account_limits( account_name, bal.ram_quota, bal.net_weight, bal.cpu_weight );
bool grelisted = chain.is_resource_greylisted(account_name);
bal.net_limit = rm.get_account_net_limit_ex( account_name, !grelisted);
bal.cpu_limit = rm.get_account_cpu_limit_ex( account_name, !grelisted);
bal.ram_usage = rm.get_account_ram_usage( account_name );
zao.resource_balances.emplace_back(bal);
}
}
const auto& db = chain.db();
const auto &idx = db.get_index<key_value_index, by_scope_primary>();
// populate token balances
for (auto ctrit = asset_moves.begin(); ctrit != asset_moves.end(); ++ctrit) {
account_name token_code = ctrit->first;
for (auto symit = ctrit->second.begin(); symit != ctrit->second.end(); ++symit) {
symbol sym = symit->first;
uint64_t symcode = sym.to_symbol_code().value;
// check if this is a valid token contract
const auto* stat_t_id = db.find<chain::table_id_object, chain::by_code_scope_table>
(boost::make_tuple( token_code, symcode, N(stat) ));
if( stat_t_id != nullptr ) {
auto statit = idx.find(boost::make_tuple( stat_t_id->id, symcode ));
if ( statit != idx.end() ) {
// found the currency in stat table, assuming this is a valid token
// get the balance for every account
for( auto accitr = symit->second.begin(); accitr != symit->second.end(); ++accitr ) {
account_name account_name = *accitr;
if( is_account_of_interest(account_name) ) {
bool found = false;
const auto* balance_t_id = db.find<chain::table_id_object, chain::by_code_scope_table>
(boost::make_tuple( token_code, account_name, N(accounts) ));
if( balance_t_id != nullptr ) {
auto bal_entry = idx.find(boost::make_tuple( balance_t_id->id, symcode ));
if ( bal_entry != idx.end() ) {
found = true;
asset bal;
fc::datastream<const char *> ds(bal_entry->value.data(), bal_entry->value.size());
fc::raw::unpack(ds, bal);
if( bal.get_symbol().valid() ) {
zao.currency_balances.emplace_back(currency_balance{account_name, token_code, bal});
}
}
}
if( !found ) {
// assume the balance was emptied and the table entry was deleted
zao.currency_balances.emplace_back(currency_balance{account_name, token_code, asset(0, sym), true});
}
}
}
}
}
}
}
zao.last_irreversible_block = chain.last_irreversible_block_num();
send_msg(fc::json::to_string(zao), MSGTYPE_ACTION_TRACE, 0);
}
void on_irreversible_block( const chain::block_state_ptr& bs )
{
zmq_irreversible_block_object zibo;
zibo.irreversible_block_num = bs->block->block_num();
zibo.irreversible_block_digest = bs->block->digest();
send_msg(fc::json::to_string(zibo), MSGTYPE_IRREVERSIBLE_BLOCK, 0);
}
void inline add_asset_move(assetmoves& asset_moves, account_name contract,
symbol symbol, account_name owner)
{
asset_moves[contract][symbol].insert(owner);
check_whitelist(owner);
}
void inline check_whitelist(account_name account)
{
if( use_whitelist && !whitelist_matched && whitelist_accounts.count(account) > 0 )
whitelist_matched = true;
}
void find_accounts_and_tokens(const action_trace& at,
std::set<name>& accounts,
assetmoves& asset_moves)
{
accounts.insert(at.act.account);
if( at.receipt.receiver != at.act.account ) {
accounts.insert(at.receipt.receiver);
}
for(permission_level p : at.act.authorization) {
accounts.insert(p.actor);
}
if( at.act.account == config::system_account_name ) {
switch((uint64_t) at.act.name) {
case N(newaccount):
{
const auto data = fc::raw::unpack<chain::newaccount>(at.act.data);
accounts.insert(data.name);
}
break;
case N(setcode):
{
const auto data = fc::raw::unpack<chain::setcode>(at.act.data);
accounts.insert(data.account);
}
break;
case N(setabi):
{
const auto data = fc::raw::unpack<chain::setabi>(at.act.data);
accounts.insert(data.account);
}
break;
case N(updateauth):
{
const auto data = fc::raw::unpack<chain::updateauth>(at.act.data);
accounts.insert(data.account);
}
break;
case N(deleteauth):
{
const auto data = fc::raw::unpack<chain::deleteauth>(at.act.data);
accounts.insert(data.account);
}
break;
case N(linkauth):
{
const auto data = fc::raw::unpack<chain::linkauth>(at.act.data);
accounts.insert(data.account);
}
break;
case N(unlinkauth):
{
const auto data = fc::raw::unpack<chain::unlinkauth>(at.act.data);
accounts.insert(data.account);
}
break;
case N(buyrambytes):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::buyrambytes>(at.act.data);
accounts.insert(data.payer);
if( data.receiver != data.payer ) {
accounts.insert(data.receiver);
}
}
break;
case N(buyram):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::buyram>(at.act.data);
accounts.insert(data.payer);
if( data.receiver != data.payer ) {
accounts.insert(data.receiver);
}
}
break;
case N(sellram):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::sellram>(at.act.data);
accounts.insert(data.account);
}
break;
case N(delegatebw):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::delegatebw>(at.act.data);
accounts.insert(data.from);
if( data.receiver != data.from ) {
accounts.insert(data.receiver);
}
}
break;
case N(undelegatebw):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::undelegatebw>(at.act.data);
accounts.insert(data.from);
if( data.receiver != data.from ) {
accounts.insert(data.receiver);
}
}
break;
case N(refund):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::refund>(at.act.data);
accounts.insert(data.owner);
}
break;
case N(regproducer):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::regproducer>(at.act.data);
accounts.insert(data.producer);
}
break;
case N(bidname):
{
// do nothing because newname account does not exist yet
}
break;
case N(unregprod):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::unregprod>(at.act.data);
accounts.insert(data.producer);
}
break;
case N(regproxy):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::regproxy>(at.act.data);
accounts.insert(data.proxy);
}
break;
case N(voteproducer):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::voteproducer>(at.act.data);
accounts.insert(data.voter);
if( data.proxy ) {
accounts.insert(data.proxy);
}
// not including producers list, although some projects may need it
}
break;
case N(claimrewards):
{
const auto data = fc::raw::unpack<zmqplugin::syscontract::claimrewards>(at.act.data);
accounts.insert(data.owner);
}
break;
}
}
try {
try {
switch((uint64_t) at.act.name) {
case N(transfer):
{
const auto data = fc::raw::unpack<zmqplugin::token::transfer>(at.act.data);
symbol s = data.quantity.get_symbol();
if( s.valid() ) {
add_asset_move(asset_moves, at.act.account, s, data.from);
add_asset_move(asset_moves, at.act.account, s, data.to);
}
}
break;
case N(issue):
{
const auto data = fc::raw::unpack<zmqplugin::token::issue>(at.act.data);
symbol s = data.quantity.get_symbol();
if( s.valid() ) {
add_asset_move(asset_moves, at.act.account, s, data.to);
}
}
break;
case N(open):
{
const auto data = fc::raw::unpack<zmqplugin::token::open>(at.act.data);
if( data.symbol.valid() ) {
add_asset_move(asset_moves, at.act.account, data.symbol, data.owner);
}
}
break;
}
}
catch ( ... ) {
wlog("Failed to decode action ${c}:${a} in ${t}",
("c",at.act.account)("a",at.act.name)("t",at.trx_id));
throw;
}
}
FC_LOG_AND_DROP();
for( const auto& iline : at.inline_traces ) {
find_accounts_and_tokens( iline, accounts, asset_moves );
}
}
bool is_account_of_interest(name account_name)
{
auto search = system_accounts.find(account_name);
if(search != system_accounts.end()) {
return false;
}
return true;
}
};
zmq_plugin::zmq_plugin():my(new zmq_plugin_impl()){}
zmq_plugin::~zmq_plugin(){}
void zmq_plugin::set_program_options(options_description&, options_description& cfg)
{
cfg.add_options()
(SENDER_BIND_OPT, bpo::value<string>()->default_value(SENDER_BIND_DEFAULT),
"ZMQ Sender Socket binding");
cfg.add_options()
(WHITELIST_OPT, bpo::value<vector<string>>()->composing(),
"ZMQ plugin whitelist of contracts to track");
}
void zmq_plugin::plugin_initialize(const variables_map& options)
{
my->socket_bind_str = options.at(SENDER_BIND_OPT).as<string>();
if (my->socket_bind_str.empty()) {
wlog("zmq-sender-bind not specified => eosio::zmq_plugin disabled.");
return;
}
if( options.count(WHITELIST_OPT) > 0 ) {
my->use_whitelist = true;
auto whl = options.at(WHITELIST_OPT).as<vector<string>>();
for( auto& whlname: whl ) {
my->whitelist_accounts.insert(eosio::name(whlname));
}
}
ilog("Binding to ZMQ PUSH socket ${u}", ("u", my->socket_bind_str));
my->sender_socket.bind(my->socket_bind_str);
my->chain_plug = app().find_plugin<chain_plugin>();
my->abi_serializer_max_time = my->chain_plug->get_abi_serializer_max_time();
auto& chain = my->chain_plug->chain();
my->applied_transaction_connection.emplace
( chain.applied_transaction.connect( [&]( const transaction_trace_ptr& p ){
my->on_applied_transaction(p); }));
my->accepted_block_connection.emplace
( chain.accepted_block.connect([&](const block_state_ptr& p) {
my->on_accepted_block(p); }));
my->irreversible_block_connection.emplace
( chain.irreversible_block.connect( [&]( const chain::block_state_ptr& bs ) {
my->on_irreversible_block( bs ); } ));
}
void zmq_plugin::plugin_startup() {
}
void zmq_plugin::plugin_shutdown() {
if( ! my->socket_bind_str.empty() ) {
my->sender_socket.disconnect(my->socket_bind_str);
my->sender_socket.close();
}
}
}
FC_REFLECT( zmqplugin::syscontract::buyrambytes,
(payer)(receiver)(bytes) )
FC_REFLECT( zmqplugin::syscontract::buyram,
(payer)(receiver)(quant) )
FC_REFLECT( zmqplugin::syscontract::sellram,
(account)(bytes) )
FC_REFLECT( zmqplugin::syscontract::delegatebw,
(from)(receiver)(stake_net_quantity)(stake_cpu_quantity)(transfer) )
FC_REFLECT( zmqplugin::syscontract::undelegatebw,
(from)(receiver)(unstake_net_quantity)(unstake_cpu_quantity) )
FC_REFLECT( zmqplugin::syscontract::refund,
(owner) )
FC_REFLECT( zmqplugin::syscontract::regproducer,
(producer)(producer_key)(url)(location) )
FC_REFLECT( zmqplugin::syscontract::unregprod,
(producer) )
FC_REFLECT( zmqplugin::syscontract::regproxy,
(proxy)(isproxy) )
FC_REFLECT( zmqplugin::syscontract::voteproducer,
(voter)(proxy)(producers) )
FC_REFLECT( zmqplugin::syscontract::claimrewards,
(owner) )
FC_REFLECT( zmqplugin::token::transfer,
(from)(to)(quantity)(memo) )
FC_REFLECT( zmqplugin::token::issue,
(to)(quantity)(memo) )
FC_REFLECT( zmqplugin::token::open,
(owner)(symbol)(ram_payer) )
FC_REFLECT( zmqplugin::resource_balance,
(account_name)(ram_quota)(ram_usage)(net_weight)(cpu_weight)(net_limit)(cpu_limit) )
FC_REFLECT( zmqplugin::currency_balance,
(account_name)(contract)(balance)(deleted))
FC_REFLECT( zmqplugin::zmq_action_object,
(global_action_seq)(block_num)(block_time)(action_trace)
(resource_balances)(currency_balances)(last_irreversible_block) )
FC_REFLECT( zmqplugin::zmq_irreversible_block_object,
(irreversible_block_num)(irreversible_block_digest) )
FC_REFLECT( zmqplugin::zmq_fork_block_object,
(invalid_block_num) )
FC_REFLECT( zmqplugin::zmq_accepted_block_object,
(accepted_block_num)(accepted_block_timestamp)(accepted_block_producer)(accepted_block_digest) )
FC_REFLECT( zmqplugin::zmq_failed_transaction_object,
(trx_id)(block_num)(status_name)(status_int) )