forked from 0chain/0chain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger-sharder.yaml
More file actions
4231 lines (4231 loc) · 140 KB
/
Copy pathswagger-sharder.yaml
File metadata and controls
4231 lines (4231 loc) · 140 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
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
basePath: /
definitions:
Allocation:
properties:
User:
$ref: '#/definitions/User'
allocation_id:
type: string
x-go-name: AllocationID
cancelled:
type: boolean
x-go-name: Cancelled
created_at:
format: date-time
type: string
x-go-name: CreatedAt
data_shards:
format: int64
type: integer
x-go-name: DataShards
expiration:
format: int64
type: integer
x-go-name: Expiration
failed_challenges:
format: int64
type: integer
x-go-name: FailedChallenges
file_options:
format: uint16
type: integer
x-go-name: FileOptions
finalized:
type: boolean
x-go-name: Finalized
id:
format: uint64
type: integer
x-go-name: ID
latest_closed_challenge_txn:
type: string
x-go-name: LatestClosedChallengeTxn
moved_back:
$ref: '#/definitions/Coin'
moved_to_challenge:
$ref: '#/definitions/Coin'
moved_to_validators:
$ref: '#/definitions/Coin'
num_reads:
format: int64
type: integer
x-go-name: NumReads
num_writes:
format: int64
type: integer
x-go-name: NumWrites
open_challenges:
format: int64
type: integer
x-go-name: OpenChallenges
owner:
type: string
x-go-name: Owner
owner_public_key:
type: string
x-go-name: OwnerPublicKey
parity_shards:
format: int64
type: integer
x-go-name: ParityShards
read_price_max:
$ref: '#/definitions/Coin'
read_price_min:
$ref: '#/definitions/Coin'
size:
format: int64
type: integer
x-go-name: Size
start_time:
format: int64
type: integer
x-go-name: StartTime
successful_challenges:
format: int64
type: integer
x-go-name: SuccessfulChallenges
terms:
items:
$ref: '#/definitions/AllocationBlobberTerm'
type: array
x-go-name: Terms
third_party_extendable:
type: boolean
x-go-name: ThirdPartyExtendable
time_unit:
format: int64
type: integer
x-go-name: TimeUnit
total_challenges:
format: int64
type: integer
x-go-name: TotalChallenges
transaction_id:
type: string
x-go-name: TransactionID
updated_at:
format: date-time
type: string
x-go-name: UpdatedAt
used_size:
format: int64
type: integer
x-go-name: UsedSize
write_pool:
$ref: '#/definitions/Coin'
write_price_max:
$ref: '#/definitions/Coin'
write_price_min:
$ref: '#/definitions/Coin'
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
AllocationBlobberTerm:
properties:
CreatedAt:
format: date-time
type: string
DeletedAt:
$ref: '#/definitions/DeletedAt'
ID:
format: uint64
type: integer
UpdatedAt:
format: date-time
type: string
alloc_blobber_idx:
format: int64
type: integer
x-go-name: AllocBlobberIdx
alloc_id:
format: int64
type: integer
x-go-name: AllocationID
allocation_id:
type: string
x-go-name: AllocationIdHash
blobber_id:
type: string
x-go-name: BlobberID
read_price:
format: int64
type: integer
x-go-name: ReadPrice
write_price:
format: int64
type: integer
x-go-name: WritePrice
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
ApprovedMinter:
format: int64
type: integer
x-go-package: 0chain.net/chaincore/chain/state
AuthorizerSnapshot:
properties:
creation_round:
format: int64
type: integer
x-go-name: CreationRound
fee:
$ref: '#/definitions/Coin'
id:
type: string
x-go-name: AuthorizerID
is_killed:
type: boolean
x-go-name: IsKilled
is_shutdown:
type: boolean
x-go-name: IsShutdown
round:
format: int64
type: integer
x-go-name: Round
service_charge:
format: double
type: number
x-go-name: ServiceCharge
total_burn:
$ref: '#/definitions/Coin'
total_mint:
$ref: '#/definitions/Coin'
total_rewards:
$ref: '#/definitions/Coin'
total_stake:
$ref: '#/definitions/Coin'
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
BlobberAllocation:
properties:
allocation_id:
type: string
x-go-name: AllocationID
allocation_root:
type: string
x-go-name: AllocationRoot
blobber_id:
type: string
x-go-name: BlobberID
challenge_pool_integral_value:
$ref: '#/definitions/Coin'
challenge_reward:
$ref: '#/definitions/Coin'
latest_finalized_chall_created_att:
$ref: '#/definitions/Timestamp'
latest_successful_chall_created_at:
$ref: '#/definitions/Timestamp'
penalty:
$ref: '#/definitions/Coin'
read_reward:
$ref: '#/definitions/Coin'
returned:
$ref: '#/definitions/Coin'
size:
description: Size is blobber allocation maximum size
format: int64
type: integer
x-go-name: Size
stats:
$ref: '#/definitions/StorageAllocationStats'
terms:
$ref: '#/definitions/Terms'
write_marker:
$ref: '#/definitions/WriteMarker'
type: object
x-go-package: 0chain.net/smartcontract/storagesc
BlobberSnapshot:
properties:
allocated:
format: int64
type: integer
x-go-name: Allocated
capacity:
format: int64
type: integer
x-go-name: Capacity
challenges_completed:
format: uint64
type: integer
x-go-name: ChallengesCompleted
challenges_passed:
format: uint64
type: integer
x-go-name: ChallengesPassed
creation_round:
format: int64
type: integer
x-go-name: CreationRound
id:
type: string
x-go-name: BlobberID
is_killed:
type: boolean
x-go-name: IsKilled
is_shutdown:
type: boolean
x-go-name: IsShutdown
offers_total:
$ref: '#/definitions/Coin'
open_challenges:
format: uint64
type: integer
x-go-name: OpenChallenges
rank_metric:
format: double
type: number
x-go-name: RankMetric
read_data:
format: int64
type: integer
x-go-name: ReadData
round:
format: int64
type: integer
x-go-name: Round
saved_data:
format: int64
type: integer
x-go-name: SavedData
total_block_rewards:
$ref: '#/definitions/Coin'
total_read_income:
$ref: '#/definitions/Coin'
total_rewards:
$ref: '#/definitions/Coin'
total_service_charge:
$ref: '#/definitions/Coin'
total_slashed_stake:
$ref: '#/definitions/Coin'
total_stake:
$ref: '#/definitions/Coin'
total_storage_income:
$ref: '#/definitions/Coin'
write_price:
$ref: '#/definitions/Coin'
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
Block:
properties:
chain_id:
type: string
x-go-name: ChainId
created_at:
format: date-time
type: string
x-go-name: CreatedAt
creation_date:
format: int64
type: integer
x-go-name: CreationDate
hash:
type: string
x-go-name: Hash
id:
format: uint64
type: integer
x-go-name: ID
magic_block_hash:
type: string
x-go-name: MagicBlockHash
merkle_tree_root:
type: string
x-go-name: MerkleTreeRoot
miner_id:
type: string
x-go-name: MinerID
num_txns:
format: int64
type: integer
x-go-name: NumTxns
prev_hash:
type: string
x-go-name: PrevHash
receipt_merkle_tree_root:
type: string
x-go-name: ReceiptMerkleTreeRoot
round:
format: int64
type: integer
x-go-name: Round
round_random_seed:
format: int64
type: integer
x-go-name: RoundRandomSeed
round_timeout_count:
format: int64
type: integer
x-go-name: RoundTimeoutCount
running_txn_count:
type: string
x-go-name: RunningTxnCount
signature:
type: string
x-go-name: Signature
state_changes_count:
format: int64
type: integer
x-go-name: StateChangesCount
state_hash:
type: string
x-go-name: StateHash
updated_at:
format: date-time
type: string
x-go-name: UpdatedAt
version:
type: string
x-go-name: Version
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
ChainStats:
properties:
count:
format: int64
type: integer
x-go-name: Count
current_round:
format: int64
type: integer
x-go-name: CurrentRound
delta:
$ref: '#/definitions/Duration'
latest_finalized_round:
format: int64
type: integer
x-go-name: LastFinalizedRound
max:
format: double
type: number
x-go-name: Max
mean:
format: double
type: number
x-go-name: Mean
min:
format: double
type: number
x-go-name: Min
percentile_50:
format: double
type: number
x-go-name: Percentile50
percentile_90:
format: double
type: number
x-go-name: Percentile90
percentile_95:
format: double
type: number
x-go-name: Percentile95
percentile_99:
format: double
type: number
x-go-name: Percentile99
rate_1_min:
format: double
type: number
x-go-name: Rate1
rate_5_min:
format: double
type: number
x-go-name: Rate5
rate_15_min:
format: double
type: number
x-go-name: Rate15
rate_mean:
format: double
type: number
x-go-name: RateMean
std_dev:
format: double
type: number
x-go-name: StdDev
total_txns:
format: int64
type: integer
x-go-name: RunningTxnCount
type: object
x-go-package: 0chain.net/chaincore/diagnostics
Challenge:
properties:
allocation_id:
type: string
x-go-name: AllocationID
allocation_root:
type: string
x-go-name: AllocationRoot
blobber_id:
type: string
x-go-name: BlobberID
challenge_id:
type: string
x-go-name: ChallengeID
created_at:
$ref: '#/definitions/Timestamp'
format: date-time
type: string
x-go-name: CreatedAt
expired_n:
format: int64
type: integer
x-go-name: ExpiredN
id:
format: uint64
type: integer
x-go-name: ID
passed:
type: boolean
x-go-name: Passed
responded:
format: int64
type: integer
x-go-name: Responded
round_created_at:
format: int64
type: integer
x-go-name: RoundCreatedAt
round_responded:
format: int64
type: integer
x-go-name: RoundResponded
seed:
format: int64
type: integer
x-go-name: Seed
timestamp:
$ref: '#/definitions/Timestamp'
updated_at:
format: date-time
type: string
x-go-name: UpdatedAt
validators_id:
type: string
x-go-name: ValidatorsID
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
Challenges:
items:
$ref: '#/definitions/Challenge'
type: array
x-go-package: 0chain.net/smartcontract/dbs/event
ChallengesResponse:
properties:
blobber_id:
type: string
x-go-name: BlobberID
challenges:
items:
$ref: '#/definitions/StorageChallengeResponse'
type: array
x-go-name: Challenges
type: object
x-go-package: 0chain.net/smartcontract/storagesc
Client:
description: go:generate msgp -io=false -tests=false -v
properties:
creation_date:
$ref: '#/definitions/Timestamp'
id:
type: string
x-go-name: ID
public_key:
type: string
x-go-name: PublicKey
version:
type: string
x-go-name: Version
title: Client - data structure that holds the client data
type: object
x-go-package: 0chain.net/chaincore/client
Coin:
description: go:generate msgp -io=false -tests=false -v
format: uint64
title: Coin - any quantity that is represented as an integer in the lowest denomination
type: integer
x-go-package: github.com/0chain/common/core/currency
CreationDateField:
description: |-
go:generate msgp -io=false -tests=false -v
CreationDateField - Can be used to add a creation date functionality to an entity */
properties:
creation_date:
$ref: '#/definitions/Timestamp'
type: object
x-go-package: 0chain.net/core/datastore
DKGKeyShare:
properties:
id:
type: string
x-go-name: ID
message:
type: string
x-go-name: Message
share:
type: string
x-go-name: Share
sign:
type: string
x-go-name: Sign
type: object
x-go-package: 0chain.net/chaincore/threshold/bls
DKGMinerNodes:
properties:
k:
format: int64
type: integer
x-go-name: K
k_percent:
format: double
type: number
x-go-name: KPercent
max_n:
format: int64
type: integer
x-go-name: MaxN
min_n:
format: int64
type: integer
x-go-name: MinN
"n":
format: int64
type: integer
x-go-name: "N"
revealed_shares:
additionalProperties:
format: int64
type: integer
type: object
x-go-name: RevealedShares
start_round:
description: StartRound used to filter responses from old MB where sharders comes up.
format: int64
type: integer
x-go-name: StartRound
t:
format: int64
type: integer
x-go-name: T
t_percent:
format: double
type: number
x-go-name: TPercent
waited:
additionalProperties:
type: boolean
type: object
x-go-name: Waited
x_percent:
format: double
type: number
x-go-name: XPercent
type: object
x-go-package: 0chain.net/smartcontract/minersc
DelegatePool:
properties:
balance:
$ref: '#/definitions/Coin'
delegate_id:
type: string
x-go-name: DelegateID
reward:
$ref: '#/definitions/Coin'
round_created:
format: int64
type: integer
x-go-name: RoundCreated
staked_at:
$ref: '#/definitions/Timestamp'
status:
$ref: '#/definitions/PoolStatus'
type: object
x-go-package: 0chain.net/smartcontract/stakepool
DelegatePoolResponse:
properties:
balance:
$ref: '#/definitions/Coin'
delegate_id:
type: string
x-go-name: DelegateID
reward:
$ref: '#/definitions/Coin'
round_created:
format: int64
type: integer
x-go-name: RoundCreated
round_pool_last_updated:
format: int64
type: integer
x-go-name: RoundPoolLastUpdated
staked_at:
$ref: '#/definitions/Timestamp'
status:
$ref: '#/definitions/PoolStatus'
type: object
x-go-package: 0chain.net/smartcontract/minersc
DelegatePoolStat:
properties:
balance:
$ref: '#/definitions/Coin'
delegate_id:
type: string
x-go-name: DelegateID
id:
type: string
x-go-name: ID
provider_id:
type: string
x-go-name: ProviderId
provider_type:
$ref: '#/definitions/Provider'
rewards:
$ref: '#/definitions/Coin'
round_created:
format: int64
type: integer
x-go-name: RoundCreated
staked_at:
$ref: '#/definitions/Timestamp'
status:
type: string
x-go-name: Status
total_penalty:
$ref: '#/definitions/Coin'
total_reward:
$ref: '#/definitions/Coin'
unstake:
type: boolean
x-go-name: UnStake
type: object
x-go-package: 0chain.net/smartcontract/storagesc
DeletedAt:
$ref: '#/definitions/NullTime'
Duration:
description: |-
A Duration represents the elapsed time between two instants
as an int64 nanosecond count. The representation limits the
largest representable duration to approximately 290 years.
format: int64
type: integer
x-go-package: time
Error:
properties:
Error:
type: string
TransactionID:
type: string
created_at:
format: date-time
type: string
x-go-name: CreatedAt
id:
format: uint64
type: integer
x-go-name: ID
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
Event:
properties:
block_number:
format: int64
type: integer
x-go-name: BlockNumber
created_at:
format: date-time
type: string
x-go-name: CreatedAt
data:
x-go-name: Data
id:
format: uint64
type: integer
x-go-name: ID
index:
type: string
x-go-name: Index
tag:
$ref: '#/definitions/EventTag'
tx_hash:
type: string
x-go-name: TxHash
type:
$ref: '#/definitions/EventType'
type: object
x-go-package: 0chain.net/smartcontract/dbs/event
EventTag:
format: int64
type: integer
x-go-package: 0chain.net/smartcontract/dbs/event
EventType:
format: int64
type: integer
x-go-package: 0chain.net/smartcontract/dbs/event
ExplorerStats:
properties:
average_block_size:
format: int64
type: integer
x-go-name: AverageBlockSize
last_finalized_round:
format: int64
type: integer
x-go-name: LastFinalizedRound
mean_scan_block_stats_time:
format: double
type: number
x-go-name: MeanScanBlockStatsTime
pervious_invocation_count:
format: uint64
type: integer
x-go-name: PrevInvocationCount
previous_incovcation_scan_time:
type: string
x-go-name: PrevInvocationScanTime
state_health:
format: int64
type: integer
x-go-name: StateHealth
type: object
x-go-package: 0chain.net/sharder
GroupSharesOrSigns:
properties:
shares:
additionalProperties:
$ref: '#/definitions/ShareOrSigns'
type: object
x-go-name: Shares
type: object
x-go-package: 0chain.net/chaincore/block
HashIDField:
properties:
hash:
type: string
x-go-name: Hash
title: HashIDField - Useful to embed this into all the entities and get consistent behavior */
type: object
x-go-package: 0chain.net/core/datastore
IDField:
description: |-
go:generate msgp -io=false -tests=false -v
IDField - Useful to embed this into all the entities and get consistent behavior */
properties:
id:
type: string
x-go-name: ID
type: object
x-go-package: 0chain.net/core/datastore
ImmutableModel:
description: |-
type User struct {
model.Model
}
properties:
created_at:
format: date-time
type: string
x-go-name: CreatedAt
id:
format: uint64
type: integer
x-go-name: ID
title: |-
Model a basic GoLang struct which includes the following fields: ID, CreatedAt
It may be embedded into your model or you may build your own model without it
type: object
x-go-package: 0chain.net/smartcontract/dbs/model
Info:
description: Info - (informal) info of a node that can be shared with other nodes
properties:
avg_block_txns:
format: int64
type: integer
x-go-name: AvgBlockTxns
build_tag:
type: string
x-go-name: BuildTag
miners_median_network_time:
$ref: '#/definitions/Duration'
state_missing_nodes:
format: int64
type: integer
x-go-name: StateMissingNodes
type: object
x-go-package: 0chain.net/chaincore/node
Int64Map:
additionalProperties:
format: int64
type: integer
type: object
x-go-package: 0chain.net/smartcontract/rest
InterfaceMap:
additionalProperties: {}
type: object
x-go-package: 0chain.net/smartcontract/rest
MPK:
properties:
ID:
type: string
Mpk:
items:
type: string
type: array
type: object
x-go-package: 0chain.net/chaincore/block
MagicBlock:
properties:
hash:
type: string
x-go-name: Hash
k:
format: int64
type: integer
x-go-name: K
magic_block_number:
format: int64
type: integer
x-go-name: MagicBlockNumber
miners:
$ref: '#/definitions/Pool'
mpks:
$ref: '#/definitions/Mpks'
"n":
format: int64
type: integer
x-go-name: "N"
previous_hash:
type: string
x-go-name: PreviousMagicBlockHash
sharders:
$ref: '#/definitions/Pool'
share_or_signs:
$ref: '#/definitions/GroupSharesOrSigns'
starting_round:
format: int64
type: integer
x-go-name: StartingRound
t:
format: int64
type: integer
x-go-name: T
type: object
x-go-package: 0chain.net/chaincore/block
MinerDtoNode:
properties:
build_tag:
type: string
x-go-name: BuildTag
delete:
type: boolean
x-go-name: Delete
host:
type: string
x-go-name: Host
id:
type: string
x-go-name: ID
is_dead:
type: boolean
x-go-name: HasBeenKilled
is_killed:
type: boolean
x-go-name: HasBeenKilled
is_shut_down:
type: boolean
x-go-name: HasBeenShutDown
last_health_check:
$ref: '#/definitions/Timestamp'
last_setting_update_round:
description: LastSettingUpdateRound will be set to round number when settings were updated
format: int64
type: integer
x-go-name: LastSettingUpdateRound
minter:
$ref: '#/definitions/ApprovedMinter'
n2n_host:
type: string
x-go-name: N2NHost
node_type:
$ref: '#/definitions/NodeType'
path:
type: string
x-go-name: Path
pools:
additionalProperties:
$ref: '#/definitions/DelegatePool'
type: object
x-go-name: Pools
port:
format: int64
type: integer
x-go-name: Port
provider_type:
$ref: '#/definitions/Provider'
public_key:
type: string
x-go-name: PublicKey
rewards:
$ref: '#/definitions/Coin'
settings:
$ref: '#/definitions/Settings'
short_name:
type: string
x-go-name: ShortName
total_stake:
$ref: '#/definitions/Coin'
title: MinerDtoNode struct that holds information about the registering miner.
type: object
x-go-package: 0chain.net/smartcontract/dto
MinerGlobalSettings:
properties:
fields:
additionalProperties:
type: string
type: object
x-go-name: Fields
version:
format: int64
type: integer
x-go-name: Version
type: object
x-go-name: GlobalSettings
x-go-package: 0chain.net/smartcontract/minersc
MinerNode:
properties:
build_tag:
type: string
x-go-name: BuildTag
delete:
type: boolean
x-go-name: Delete
host: