@@ -27,13 +27,13 @@ These events are sent to the configured endpoint at two URLs:
27
27
This payload includes data related to a newly processed block,
28
28
and any events emitted from Stacks transactions during the block.
29
29
30
- If the transaction originally comes from the parent microblock stream
30
+ If the transaction originally comes from the parent microblock stream
31
31
preceding this block, the microblock related fields will be filled in.
32
32
33
33
If the ` raw_tx ` field for a particular transaction is "0x00", that indicates
34
- that it is a burnchain operation. A burnchain operation is a transaction that
34
+ that it is a burnchain operation. A burnchain operation is a transaction that
35
35
is executed on the Stacks network, but was sent through the Bitcoin network.
36
- The Stacks network supports a few specific burnchain operations. You can read
36
+ The Stacks network supports a few specific burnchain operations. You can read
37
37
more about them [ here] ( https://github.com/stacksgov/sips/blob/main/sips/sip-007/sip-007-stacking-consensus.md#stx-operations-on-bitcoin ) .
38
38
The section below has example json encodings for each of the burnchain operations.
39
39
@@ -152,8 +152,8 @@ Example:
152
152
}
153
153
```
154
154
155
- #### Example json values for burnchain operations
156
- - TransferStx
155
+ #### Example json values for burnchain operations
156
+ - TransferStx
157
157
``` json
158
158
{
159
159
"transfer_stx" : {
@@ -233,6 +233,8 @@ Example:
233
233
``` json
234
234
{
235
235
"burn_block_hash" : " 0x4eaabcd105865e471f697eff5dd5bd85d47ecb5a26a3379d74fae0ae87c40904" ,
236
+ "consensus_hash" : " 0x53c166a709a9abd64a92a57f928a8b26aad08992" ,
237
+ "parent_burn_block_hash" : " 0x6eaebcd105865e471f697eff5dd5bd85d47ecb5a26a3379d74fae0ae87c40904" ,
236
238
"burn_block_height" : 331 ,
237
239
"reward_recipients" : [
238
240
{
@@ -258,8 +260,8 @@ Example:
258
260
259
261
### ` POST /new_microblocks `
260
262
261
- This payload includes data related to one or more microblocks that are either emmitted by the
262
- node itself, or received through the network.
263
+ This payload includes data related to one or more microblocks that are either emmitted by the
264
+ node itself, or received through the network.
263
265
264
266
Example:
265
267
@@ -311,9 +313,9 @@ Example:
311
313
}
312
314
```
313
315
314
- * ` burn_block_{} ` are the stats related to the burn block that is associated with the stacks
316
+ * ` burn_block_{} ` are the stats related to the burn block that is associated with the stacks
315
317
block that precedes this microblock stream.
316
- * Each transaction json object includes information about the microblock the transaction was packaged into.
318
+ * Each transaction json object includes information about the microblock the transaction was packaged into.
317
319
318
320
### ` POST /new_mempool_tx `
319
321
@@ -384,23 +386,23 @@ Example:
384
386
"tx_events" : [
385
387
{
386
388
"Success" : {
387
- "txid" : " 3e04ada5426332bfef446ba0a06d124aace4ade5c11840f541bf88e2e919faf6" ,
388
- "fee" : 0 ,
389
- "execution_cost" : {
390
- "write_length" : 0 ,
391
- "write_count" : 0 ,
392
- "read_length" : 0 ,
393
- "read_count" : 0 ,
389
+ "txid" : " 3e04ada5426332bfef446ba0a06d124aace4ade5c11840f541bf88e2e919faf6" ,
390
+ "fee" : 0 ,
391
+ "execution_cost" : {
392
+ "write_length" : 0 ,
393
+ "write_count" : 0 ,
394
+ "read_length" : 0 ,
395
+ "read_count" : 0 ,
394
396
"runtime" : 0
395
- },
397
+ },
396
398
"result" : {
397
- "ResponseData" :
399
+ "ResponseData" :
398
400
{
399
401
"committed" : true ,
400
402
"data" : true
401
403
}
402
404
}
403
- }},
405
+ }},
404
406
{
405
407
"ProcessingError" : {
406
408
"txid" : " eef9f46b20fb637bd07ec92ad3ec175a5a4bdf3e8799259fc5b16a272090d4de" ,
@@ -432,23 +434,23 @@ Example:
432
434
"tx_events" : [
433
435
{
434
436
"Success" : {
435
- "txid" : " 3e04ada5426332bfef446ba0a06d124aace4ade5c11840f541bf88e2e919faf6" ,
436
- "fee" : 0 ,
437
- "execution_cost" : {
438
- "write_length" : 10 ,
439
- "write_count" : 10 ,
440
- "read_length" : 20 ,
441
- "read_count" : 10 ,
437
+ "txid" : " 3e04ada5426332bfef446ba0a06d124aace4ade5c11840f541bf88e2e919faf6" ,
438
+ "fee" : 0 ,
439
+ "execution_cost" : {
440
+ "write_length" : 10 ,
441
+ "write_count" : 10 ,
442
+ "read_length" : 20 ,
443
+ "read_count" : 10 ,
442
444
"runtime" : 1290
443
- },
445
+ },
444
446
"result" : {
445
- "ResponseData" :
447
+ "ResponseData" :
446
448
{
447
449
"committed" : true ,
448
450
"data" : true
449
451
}
450
452
}
451
- }},
453
+ }},
452
454
{
453
455
"Skipped" : {
454
456
"txid" : " eef9f46b20fb637bd07ec92ad3ec175a5a4bdf3e8799259fc5b16a272090d4de" ,
0 commit comments