-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathswagger.yaml
3251 lines (3250 loc) · 149 KB
/
swagger.yaml
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
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.3
info:
title: TON
version: 1.0.0
contact: {}
servers:
- url: http://{{url}}
paths:
/transactionDB:
get:
summary: getTransactionDB
description: getTransactionDB
operationId: gettransactiondb
parameters:
- name: account
in: query
schema:
type: string
example: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
- name: lt
in: query
schema:
type: string
example: '36834668000003'
- name: hash
in: query
schema:
type: string
example: 32fab7aa55d6b417962d45b551e95c0f0c96646beca09ec29a5f79f246c9d661
- name: count
in: query
schema:
type: string
example: '10'
responses:
'200':
description: getTransactionDB
headers:
Connection:
schema:
type: string
example: Keep-Alive
Content-Length:
schema:
type: string
example: '1293'
Date:
schema:
type: string
example: Wed, 24 May 2023 21:05:35 GMT
content:
application/json:
schema:
type: object
properties:
answer:
type: array
items:
type: object
properties:
address:
type: string
example: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
fee:
type: string
example: '5985684'
hash:
type: string
example: 32FAB7AA55D6B417962D45B551E95C0F0C96646BECA09EC29A5F79F246C9D661
lt:
type: number
example: 36834668000003
messageIn:
type: array
items:
type: object
properties:
destination:
type: string
example: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
lt:
type: number
example: 36834668000002
message_hash:
type: string
example: 77A23B6C190D6E1CBF6F521799D6C0F8DF3FF6040436CDDFD7B34868DD7C970C
source:
type: string
example: EQCDRDBFK0I6qIeXC4ZoLQEP7xdynVGEjG4Lo0vmQuU8_OXC
time:
type: number
example: 1681482103
transfer:
nullable: true
example: null
value:
type: string
example: '50000000'
example:
- destination: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
lt: 36834668000002
message_hash: 77A23B6C190D6E1CBF6F521799D6C0F8DF3FF6040436CDDFD7B34868DD7C970C
source: EQCDRDBFK0I6qIeXC4ZoLQEP7xdynVGEjG4Lo0vmQuU8_OXC
time: 1681482103
transfer: null
value: '50000000'
time:
type: number
example: 1681482103
type:
type: string
example: ordinary
example:
- address: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
fee: '5985684'
hash: 32FAB7AA55D6B417962D45B551E95C0F0C96646BECA09EC29A5F79F246C9D661
lt: 36834668000003
messageIn:
- destination: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
lt: 36834668000002
message_hash: 77A23B6C190D6E1CBF6F521799D6C0F8DF3FF6040436CDDFD7B34868DD7C970C
source: EQCDRDBFK0I6qIeXC4ZoLQEP7xdynVGEjG4Lo0vmQuU8_OXC
time: 1681482103
transfer: null
value: '50000000'
time: 1681482103
type: ordinary
- address: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
fee: '6244000'
hash: 9448854B22101CC0290119B3F33C9965C7DDBB7DAB62A6AAD3CEA3911D04C34E
lt: 36834638000005
messageIn:
- destination: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
lt: 36834638000004
message_hash: 992A0B24FC5E909AC0C0B64D979D307E821ED7AF5AC87D5D1948F857FCF860CD
source: EQDQoc5M3Bh8eWFephi9bClhevelbZZvWhkqdo80XuY_0qXv
time: 1681481998
transfer:
amount: '1022000000'
comment: ''
from: EQDQoc5M3Bh8eWFephi9bClhevelbZZvWhkqdo80XuY_0qXv
query_id: '0'
to: EQCDRDBFK0I6qIeXC4ZoLQEP7xdynVGEjG4Lo0vmQuU8_OXC
token: EQDQoc5M3Bh8eWFephi9bClhevelbZZvWhkqdo80XuY_0qXv
transfer_type: internal_transfer
type: jetton
value: '8000000'
time: 1681481998
type: ordinary
examples:
getTransactionDB:
value:
answer:
- address: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
fee: '5985684'
hash: 32FAB7AA55D6B417962D45B551E95C0F0C96646BECA09EC29A5F79F246C9D661
lt: 36834668000003
messageIn:
- destination: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
lt: 36834668000002
message_hash: 77A23B6C190D6E1CBF6F521799D6C0F8DF3FF6040436CDDFD7B34868DD7C970C
source: EQCDRDBFK0I6qIeXC4ZoLQEP7xdynVGEjG4Lo0vmQuU8_OXC
time: 1681482103
transfer: null
value: '50000000'
time: 1681482103
type: ordinary
- address: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
fee: '6244000'
hash: 9448854B22101CC0290119B3F33C9965C7DDBB7DAB62A6AAD3CEA3911D04C34E
lt: 36834638000005
messageIn:
- destination: EQBQT3yfp5i554TWGszTNEfbsyDca028ETPBFj_iBsx2vDMY
lt: 36834638000004
message_hash: 992A0B24FC5E909AC0C0B64D979D307E821ED7AF5AC87D5D1948F857FCF860CD
source: EQDQoc5M3Bh8eWFephi9bClhevelbZZvWhkqdo80XuY_0qXv
time: 1681481998
transfer:
amount: '1022000000'
comment: ''
from: EQDQoc5M3Bh8eWFephi9bClhevelbZZvWhkqdo80XuY_0qXv
query_id: '0'
to: EQCDRDBFK0I6qIeXC4ZoLQEP7xdynVGEjG4Lo0vmQuU8_OXC
token: EQDQoc5M3Bh8eWFephi9bClhevelbZZvWhkqdo80XuY_0qXv
transfer_type: internal_transfer
type: jetton
value: '8000000'
time: 1681481998
type: ordinary
/transaction2DB:
get:
summary: getTransaction1DB
description: getTransaction1DB
operationId: gettransaction1db
parameters:
- name: account
in: query
schema:
type: string
example: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
- name: lt
in: query
schema:
type: string
example: '31880435000001'
- name: hash
in: query
schema:
type: string
example: FDC208B6A1400E9D1179FDD81B40D478E9B632C8A00E5EBC7AF7C13ADE85DB22
responses:
'200':
description: getTransaction1DB
headers:
Connection:
schema:
type: string
example: Keep-Alive
Content-Length:
schema:
type: string
example: '2057'
Date:
schema:
type: string
example: Wed, 24 May 2023 21:05:51 GMT
content:
application/json:
schema:
type: object
properties:
account:
type: string
example: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
account_hex:
type: string
example: 2FA00161F81C8278A0F749986330DCE2A2A0A60CE2BA4BA21A79E7D3C1899186
block:
type: object
properties:
filehash:
type: string
example: 1875BC00000000001875BC00000000001875BC00000000001875BC0000000000
roothash:
type: string
example: 1875BC00000000001875BC00000000001875BC00000000001875BC0000000000
seqno:
type: number
example: 0
shard:
type: string
example: 0000000000000000
workchain:
type: number
example: -2147483648
description:
type: object
properties:
record:
type: object
properties:
aborted:
type: boolean
example: false
action:
type: object
properties:
action_list_hash:
type: string
example: A28D2A1781417B479ABEBF37F9150445266A44E92247A9C36A6B3427889A26D4
msgs_created:
type: number
example: 1
no_funds:
type: boolean
example: false
result_arg:
nullable: true
example: null
result_code:
type: number
example: 0
skipped_actions:
type: number
example: 0
spec_actions:
type: number
example: 0
status_change:
type: string
example: unchanged
succses:
type: boolean
example: true
tot_actions:
type: number
example: 1
tot_msg_size:
type: object
properties:
bits:
type: number
example: 2402
cells:
type: number
example: 4
total_action_fees:
type: number
example: 9936515
total_fwd_fees:
type: number
example: 29810000
valid:
type: boolean
example: true
compute:
type: object
properties:
account_activated:
type: boolean
example: false
exit_arg:
nullable: true
example: null
exit_code:
type: number
example: 0
gas_credit:
type: number
example: 10000
gas_fees:
nullable: true
example: null
gas_limit:
type: number
example: 0
gas_used:
type: number
example: 2994
mode:
type: number
example: 0
msg_state_used:
type: boolean
example: false
success:
type: boolean
example: true
type:
type: string
example: compute_vm
vm_final_state_hash:
type: string
example: 0000000000000000000000000000000000000000000000000000000000000000
vm_init_state_hash:
type: string
example: 0000000000000000000000000000000000000000000000000000000000000000
vm_steps:
type: number
example: 66
credit:
type: object
properties:
error:
type: string
example: Can't unpack maybe_TrCreditPhase
credit_first:
type: boolean
example: true
destroyed:
type: boolean
example: false
storage:
type: object
properties:
acc_status_change:
type: string
example: unchanged
storage_fees_collected:
type: number
example: 1404953
storage_fees_due:
nullable: true
example: null
type:
type: string
example: ordinary
fees:
type: string
example: '76331468'
hash:
type: string
example: FDC208B6A1400E9D1179FDD81B40D478E9B632C8A00E5EBC7AF7C13ADE85DB22
lt:
type: number
example: 31880435000001
messageIn:
type: object
properties:
destination:
type: string
example: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
import_fee:
type: number
example: 0
message_hash:
type: string
example: FA45F7BB4B3CC0ACAC1DA9053ECB7436CCDD7390D550366BC4B10D8268FEF738
messageOut:
type: array
items:
type: object
properties:
destination:
type: string
example: Ef8OvX_5ynDgbp4iqJIvWudSEanWo0qAlOjhWHtga9u2YjVp
fwd_fee:
type: number
example: 19873485
ihr_fee:
type: number
example: 0
lt:
type: number
example: 31880435000002
message_hash:
type: string
example: 1285A459B15A2DE7F57F0467CE5D2754655CEF4001BDABAB62D6BC0CEF5591D2
source:
type: string
example: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
time:
type: number
example: 1665336135
transfer:
nullable: true
example: null
value:
type: string
example: '5000000000'
example:
- destination: Ef8OvX_5ynDgbp4iqJIvWudSEanWo0qAlOjhWHtga9u2YjVp
fwd_fee: 19873485
ihr_fee: 0
lt: 31880435000002
message_hash: 1285A459B15A2DE7F57F0467CE5D2754655CEF4001BDABAB62D6BC0CEF5591D2
source: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
time: 1665336135
transfer: null
value: '5000000000'
time:
type: number
example: 1665336135
total_fees:
type: string
example: '96204953'
workchain:
type: number
example: -1
examples:
getTransaction1DB:
value:
account: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
account_hex: 2FA00161F81C8278A0F749986330DCE2A2A0A60CE2BA4BA21A79E7D3C1899186
block:
filehash: 1875BC00000000001875BC00000000001875BC00000000001875BC0000000000
roothash: 1875BC00000000001875BC00000000001875BC00000000001875BC0000000000
seqno: 0
shard: 0000000000000000
workchain: -2147483648
description:
record:
aborted: false
action:
action_list_hash: A28D2A1781417B479ABEBF37F9150445266A44E92247A9C36A6B3427889A26D4
msgs_created: 1
no_funds: false
result_arg: null
result_code: 0
skipped_actions: 0
spec_actions: 0
status_change: unchanged
succses: true
tot_actions: 1
tot_msg_size:
bits: 2402
cells: 4
total_action_fees: 9936515
total_fwd_fees: 29810000
valid: true
compute:
account_activated: false
exit_arg: null
exit_code: 0
gas_credit: 10000
gas_fees: null
gas_limit: 0
gas_used: 2994
mode: 0
msg_state_used: false
success: true
type: compute_vm
vm_final_state_hash: 0000000000000000000000000000000000000000000000000000000000000000
vm_init_state_hash: 0000000000000000000000000000000000000000000000000000000000000000
vm_steps: 66
credit:
error: Can't unpack maybe_TrCreditPhase
credit_first: true
destroyed: false
storage:
acc_status_change: unchanged
storage_fees_collected: 1404953
storage_fees_due: null
type: ordinary
fees: '76331468'
hash: FDC208B6A1400E9D1179FDD81B40D478E9B632C8A00E5EBC7AF7C13ADE85DB22
lt: 31880435000001
messageIn:
destination: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
import_fee: 0
message_hash: FA45F7BB4B3CC0ACAC1DA9053ECB7436CCDD7390D550366BC4B10D8268FEF738
messageOut:
- destination: Ef8OvX_5ynDgbp4iqJIvWudSEanWo0qAlOjhWHtga9u2YjVp
fwd_fee: 19873485
ihr_fee: 0
lt: 31880435000002
message_hash: 1285A459B15A2DE7F57F0467CE5D2754655CEF4001BDABAB62D6BC0CEF5591D2
source: Ef8voAFh-ByCeKD3SZhjMNzioqCmDOK6S6IaeefTwYmRhgsn
time: 1665336135
transfer: null
value: '5000000000'
time: 1665336135
total_fees: '96204953'
workchain: -1
/lastNum:
get:
summary: lastNum
description: lastNum
operationId: lastnum
responses:
'200':
description: lastNum
headers:
Connection:
schema:
type: string
example: Keep-Alive
Content-Length:
schema:
type: string
example: '402'
Date:
schema:
type: string
example: Wed, 24 May 2023 21:06:33 GMT
content:
application/json:
schema:
type: object
properties:
'-1':
type: object
properties:
'8000000000000000':
type: object
properties:
filehash:
type: string
example: B60455CC5ED20A3866DAF1430D90DF6C2EEBBFAEDD31003162BF0F103E960F6D
roothash:
type: string
example: 8D644B4AB7D5BBA49FC2659CF737DBAD635450FF399F4BC4CFB840C39694CB9A
seqno:
type: number
example: 29801410
'0':
type: object
properties:
'8000000000000000':
type: object
properties:
filehash:
type: string
example: B9FA20E270F55B5E0C885A69E4B40FDD0FFAA0BF38FE987D94052B2590402547
roothash:
type: string
example: 418264A61CB1B059AC257E20959AD9084C7311D5E3DE6BDF80A3998D00CECD1E
seqno:
type: number
example: 35473945
examples:
lastNum:
value:
'-1':
'8000000000000000':
filehash: B60455CC5ED20A3866DAF1430D90DF6C2EEBBFAEDD31003162BF0F103E960F6D
roothash: 8D644B4AB7D5BBA49FC2659CF737DBAD635450FF399F4BC4CFB840C39694CB9A
seqno: 29801410
'0':
'8000000000000000':
filehash: B9FA20E270F55B5E0C885A69E4B40FDD0FFAA0BF38FE987D94052B2590402547
roothash: 418264A61CB1B059AC257E20959AD9084C7311D5E3DE6BDF80A3998D00CECD1E
seqno: 35473945
/search:
get:
summary: searchBlock
description: searchBlock
operationId: searchblock
parameters:
- name: workchain
in: query
schema:
type: string
example: '-1'
- name: shard
in: query
schema:
type: string
example: '8000000000000000'
- name: seqno
in: query
schema:
type: string
example: '2954490'
responses:
'200':
description: searchBlock
headers:
Connection:
schema:
type: string
example: Keep-Alive
Content-Length:
schema:
type: string
example: '3693'
Date:
schema:
type: string
example: Wed, 24 May 2023 21:06:02 GMT
content:
application/json:
schema:
type: object
properties:
header:
type: object
properties:
after_merge:
type: boolean
example: false
after_split:
type: boolean
example: false
before_split:
type: boolean
example: false
block:
type: object
properties:
seqno:
type: number
example: 2954490
shard:
type: string
example: '8000000000000000'
workchain:
type: number
example: -1
catchain_seqno:
type: number
example: 45860
filehash:
type: string
example: 4686CABE267452012AE95CAC508011D84B12E344AF65A83FCE5056E8E90545DD
flags:
type: number
example: 0
global_id:
type: number
example: -239
key_block:
type: boolean
example: false
lt_end:
type: number
example: 4561205000004
lt_start:
type: number
example: 4561205000000
masterchain_block:
type: object
properties:
filehash:
type: string
example: 2BA47945F6D51D3B2F300E699E1043874B35CE4BE5E2CC9C2C47BD8ACD377686
roothash:
type: string
example: 48AAE24D7D259727E6837AD48E2BE5CD770C62C86B46FD38EE160F06A927C9D6
seqno:
type: number
example: 2954489
shard:
type: string
example: '8000000000000000'
workchain:
type: number
example: -1
min_ref_mc_seqno:
type: number
example: 2954485
next_block:
type: object
properties:
seqno:
type: number
example: 2954491
shard:
type: string
example: '8000000000000000'
workchain:
type: number
example: -1
not_master:
type: boolean
example: false
prev_key_block_seqno:
type: object
properties:
seqno:
type: number
example: 2945428
shard:
type: string
example: '8000000000000000'
workchain:
type: number
example: -1
previous:
type: array
items:
type: object
properties:
filehas:
type: string
example: 2BA47945F6D51D3B2F300E699E1043874B35CE4BE5E2CC9C2C47BD8ACD377686
roothash:
type: string
example: 48AAE24D7D259727E6837AD48E2BE5CD770C62C86B46FD38EE160F06A927C9D6
seqno:
type: number
example: 2954489
shard:
type: string
example: '8000000000000000'
workchain:
type: number
example: -1
example:
- filehas: 2BA47945F6D51D3B2F300E699E1043874B35CE4BE5E2CC9C2C47BD8ACD377686
roothash: 48AAE24D7D259727E6837AD48E2BE5CD770C62C86B46FD38EE160F06A927C9D6
seqno: 2954489
shard: '8000000000000000'
workchain: -1
roothash:
type: string
example: 1E43BD87E75B864BD843B22D4C99B4AA4BB39FC7DCEFED04955E1BF366B7479D
time:
type: number
example: 1585275662
validator_list_hash_short:
type: number
example: 1272303594
version:
type: number
example: 0
vert_seqno:
type: number
example: 0
vert_seqno_incr:
type: boolean
example: false
want_merge:
type: boolean
example: true
want_split:
type: boolean
example: false
shards:
type: array
items:
type: object
properties:
beforemerge:
type: boolean
example: false
beforesplit:
type: boolean
example: false
created:
type: number
example: 1585275659
seqno:
type: string
example: '3983216'
shard:
type: object
properties:
shard:
type: string
example: '1000000000000000'
workchain:
type: number
example: 0
wantmerge:
type: boolean
example: true
wantsplit:
type: boolean
example: false
example:
- beforemerge: false
beforesplit: false
created: 1585275659
seqno: '3983216'
shard:
shard: '1000000000000000'
workchain: 0
wantmerge: true
wantsplit: false
- beforemerge: false
beforesplit: false
created: 1585275658
seqno: '3983182'
shard:
shard: '2800000000000000'
workchain: 0
wantmerge: true
wantsplit: false
- beforemerge: false
beforesplit: false
created: 1585275654
seqno: '3983143'
shard:
shard: '3400000000000000'
workchain: 0
wantmerge: false
wantsplit: false
- beforemerge: false
beforesplit: false
created: 1585275659
seqno: '3983143'
shard:
shard: 3c00000000000000
workchain: 0
wantmerge: true
wantsplit: false
- beforemerge: false
beforesplit: false
created: 1585275658
seqno: '3979945'
shard:
shard: '6000000000000000'
workchain: 0
wantmerge: true
wantsplit: false
- beforemerge: false
beforesplit: false
created: 1585275659
seqno: '3982967'
shard:
shard: a000000000000000
workchain: 0
wantmerge: true
wantsplit: false
- beforemerge: false
beforesplit: false
created: 1585275656
seqno: '3983555'
shard:
shard: e000000000000000
workchain: 0
wantmerge: true
wantsplit: false
transactions:
type: array
items:
type: object
properties:
address:
type: string
example: Ef8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzM0vF
fee:
type: string
example: '0'
hash:
type: string
example: 9AC7490410553ECE735EE7CE869B94EAE08DDDC1EDCBD8A5BE5C8C03CBC634CA
lt:
type: number
example: 4561205000001
messageIn:
type: array
items:
type: object
properties:
destination:
type: string
example: Ef8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzM0vF
lt:
type: number
example: 4561205000000
message_hash:
type: string
example: 6C600212C1F245B94C93B048813F29912E478A7FC2F4E0911184EAA6C2DDED44
source:
type: string
example: Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU
time:
type: number
example: 1585275662
transfer:
nullable: true
example: null
value:
type: string
example: '4148218741'
example:
- destination: Ef8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzM0vF
lt: 4561205000000
message_hash: 6C600212C1F245B94C93B048813F29912E478A7FC2F4E0911184EAA6C2DDED44
source: Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU
time: 1585275662
transfer: null
value: '4148218741'
time:
type: number
example: 1585275662
type:
type: string
example: tick_tock
example:
- address: Ef8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzM0vF
hash: 9AC7490410553ECE735EE7CE869B94EAE08DDDC1EDCBD8A5BE5C8C03CBC634CA
lt: 4561205000001
time: 1585275662
type: tick_tock
- address: Ef8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzM0vF
fee: '0'
hash: CE3BAC295CE2E98AE333BF610A884D67DC3D09C178B7BE37E4FED01B716D64A5
lt: 4561205000002
messageIn:
- destination: Ef8zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzM0vF
lt: 4561205000000
message_hash: 6C600212C1F245B94C93B048813F29912E478A7FC2F4E0911184EAA6C2DDED44
source: Ef8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAU
time: 1585275662
transfer: null
value: '4148218741'
time: 1585275662
type: ordinary
- address: Ef80UXx731GHxVr0-LYf3DIViMerdo3uJLAG3ykQZFjXz2kW
hash: E397639CEB1F982A6191D48D84B04E3B67000BBC7550E5C89389C5A029F3C428
lt: 4561205000003
time: 1585275662
type: tick_tock
- address: Ef9VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVbxn
hash: BCB7E7D297718582DC9CB3960B0836C71002FB5EF855009989D67668B5931DD1
lt: 4561205000003
time: 1585275662
type: tick_tock
- address: Ef80UXx731GHxVr0-LYf3DIViMerdo3uJLAG3ykQZFjXz2kW
hash: EF021F5FBED24C01630C5B8D4076AD3A965429439BCE98E9D12FC159EE457350
lt: 4561205000001
time: 1585275662
type: tick_tock
examples:
searchBlock:
value:
header:
after_merge: false
after_split: false
before_split: false
block:
seqno: 2954490
shard: '8000000000000000'
workchain: -1
catchain_seqno: 45860
filehash: 4686CABE267452012AE95CAC508011D84B12E344AF65A83FCE5056E8E90545DD
flags: 0
global_id: -239
key_block: false
lt_end: 4561205000004
lt_start: 4561205000000
masterchain_block:
filehash: 2BA47945F6D51D3B2F300E699E1043874B35CE4BE5E2CC9C2C47BD8ACD377686
roothash: 48AAE24D7D259727E6837AD48E2BE5CD770C62C86B46FD38EE160F06A927C9D6
seqno: 2954489
shard: '8000000000000000'
workchain: -1