-
Notifications
You must be signed in to change notification settings - Fork 54
/
rpc.proto
769 lines (624 loc) · 18.4 KB
/
rpc.proto
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
syntax = "proto3";
option go_package = "github.com/ava-labs/avalanche-network-runner;rpcpb";
package rpcpb;
import "google/api/annotations.proto";
service PingService {
rpc Ping(PingRequest) returns (PingResponse) {
option (google.api.http) = {
post: "/v1/ping"
body: "*"
};
}
}
message PingRequest {}
message PingResponse {
int32 pid = 1;
}
service ControlService {
rpc RPCVersion(RPCVersionRequest) returns (RPCVersionResponse) {
option (google.api.http) = {
post: "/v1/control/rpcversion"
body: "*"
};
}
rpc Start(StartRequest) returns (StartResponse) {
option (google.api.http) = {
post: "/v1/control/start"
body: "*"
};
}
rpc CreateBlockchains(CreateBlockchainsRequest) returns (CreateBlockchainsResponse) {
option (google.api.http) = {
post: "/v1/control/createblockchains"
body: "*"
};
}
rpc TransformElasticSubnets(TransformElasticSubnetsRequest) returns (TransformElasticSubnetsResponse) {
option (google.api.http) = {
post: "/v1/control/transformelasticsubnets"
body: "*"
};
}
rpc AddPermissionlessDelegator(AddPermissionlessDelegatorRequest) returns (AddPermissionlessDelegatorResponse) {
option (google.api.http) = {
post: "/v1/control/addpermissionlessdelegator"
body: "*"
};
}
rpc AddPermissionlessValidator(AddPermissionlessValidatorRequest) returns (AddPermissionlessValidatorResponse) {
option (google.api.http) = {
post: "/v1/control/addpermissionlessvalidator"
body: "*"
};
}
rpc AddSubnetValidators(AddSubnetValidatorsRequest) returns (AddSubnetValidatorsResponse) {
option (google.api.http) = {
post: "/v1/control/addsubnetvalidators"
body: "*"
};
}
rpc RemoveSubnetValidator(RemoveSubnetValidatorRequest) returns (RemoveSubnetValidatorResponse) {
option (google.api.http) = {
post: "/v1/control/removesubnetvalidator"
body: "*"
};
}
rpc CreateSubnets(CreateSubnetsRequest) returns (CreateSubnetsResponse) {
option (google.api.http) = {
post: "/v1/control/createsubnets"
body: "*"
};
}
rpc Health(HealthRequest) returns (HealthResponse) {
option (google.api.http) = {
post: "/v1/control/health"
body: "*"
};
}
rpc URIs(URIsRequest) returns (URIsResponse) {
option (google.api.http) = {
post: "/v1/control/uris"
body: "*"
};
}
rpc WaitForHealthy(WaitForHealthyRequest) returns (WaitForHealthyResponse) {
option (google.api.http) = {
post: "/v1/control/waitforhealthy"
body: "*"
};
}
rpc Status(StatusRequest) returns (StatusResponse) {
option (google.api.http) = {
post: "/v1/control/status"
body: "*"
};
}
rpc StreamStatus(StreamStatusRequest) returns (stream StreamStatusResponse) {
option (google.api.http) = {
post: "/v1/control/streamstatus"
body: "*"
};
}
rpc RemoveNode(RemoveNodeRequest) returns (RemoveNodeResponse) {
option (google.api.http) = {
post: "/v1/control/removenode"
body: "*"
};
}
rpc AddNode(AddNodeRequest) returns (AddNodeResponse) {
option (google.api.http) = {
post: "/v1/control/addnode"
body: "*"
};
}
rpc RestartNode(RestartNodeRequest) returns (RestartNodeResponse) {
option (google.api.http) = {
post: "/v1/control/restartnode"
body: "*"
};
}
rpc PauseNode(PauseNodeRequest) returns (PauseNodeResponse) {
option (google.api.http) = {
post: "/v1/control/pausenode"
body: "*"
};
}
rpc ResumeNode(ResumeNodeRequest) returns (ResumeNodeResponse) {
option (google.api.http) = {
post: "/v1/control/resumenode"
body: "*"
};
}
rpc Stop(StopRequest) returns (StopResponse) {
option (google.api.http) = {
post: "/v1/control/stop"
body: "*"
};
}
rpc AttachPeer(AttachPeerRequest) returns (AttachPeerResponse) {
option (google.api.http) = {
post: "/v1/control/attachpeer"
body: "*"
};
}
rpc SendOutboundMessage(SendOutboundMessageRequest) returns (SendOutboundMessageResponse) {
option (google.api.http) = {
post: "/v1/control/sendoutboundmessage"
body: "*"
};
}
rpc SaveSnapshot(SaveSnapshotRequest) returns (SaveSnapshotResponse) {
option (google.api.http) = {
post: "/v1/control/savesnapshot"
body: "*"
};
}
rpc LoadSnapshot(LoadSnapshotRequest) returns (LoadSnapshotResponse) {
option (google.api.http) = {
post: "/v1/control/loadsnapshot"
body: "*"
};
}
rpc RemoveSnapshot(RemoveSnapshotRequest) returns (RemoveSnapshotResponse) {
option (google.api.http) = {
post: "/v1/control/removesnapshot"
body: "*"
};
}
rpc GetSnapshotNames(GetSnapshotNamesRequest) returns (GetSnapshotNamesResponse) {
option (google.api.http) = {
post: "/v1/control/getsnapshotnames"
body: "*"
};
}
rpc ListSubnets(ListSubnetsRequest) returns (ListSubnetsResponse) {
option (google.api.http) = {
post: "/v1/control/listsubnets"
body: "*"
};
}
rpc ListBlockchains(ListBlockchainsRequest) returns (ListBlockchainsResponse) {
option (google.api.http) = {
post: "/v1/control/listblockchains"
body: "*"
};
}
rpc ListRpcs(ListRpcsRequest) returns (ListRpcsResponse) {
option (google.api.http) = {
post: "/v1/control/listrpcs"
body: "*"
};
}
rpc VMID(VMIDRequest) returns (VMIDResponse) {
option (google.api.http) = {
post: "/v1/control/vmid"
body: "*"
};
}
}
message SubnetParticipants {
repeated string node_names = 1;
}
message ClusterInfo {
repeated string node_names = 1;
map<string, NodeInfo> node_infos = 2;
int32 pid = 3;
string root_data_dir = 4;
bool healthy = 5;
// Maps from the node ID to its attached peer infos.
map<string, ListOfAttachedPeerInfo> attached_peer_infos = 6;
// Set to "true" once custom blockchains are ready.
bool custom_chains_healthy = 7;
// The map of blockchain IDs in "ids.ID" format to its blockchain information.
map<string, CustomChainInfo> custom_chains = 8;
map<string, SubnetInfo> subnets = 9;
uint32 network_id = 10;
string log_root_dir = 11;
}
message SubnetInfo {
// If Subnet is an Elastic Subnet
bool is_elastic = 1;
// TXID for the elastic subnet transform
string elastic_subnet_id = 2;
// node validators of subnet
SubnetParticipants subnet_participants = 3;
}
message CustomChainInfo {
// Blockchain name given to the create blockchain TX
// Currently used to keep a record of the VM name,
// which is not saved anywhere and can't be recovered from VM ID
string chain_name = 1;
// VM ID in "ids.ID" format.
string vm_id = 2;
// Create subnet transaction ID -- subnet ID.
// The subnet ID must be whitelisted by the avalanche node.
string subnet_id = 3;
// Create blockchain transaction ID -- blockchain ID>
// The blockchain ID is used for RPC endpoints.
string chain_id = 4;
}
message NodeInfo {
string name = 1;
string exec_path = 2;
string uri = 3;
string id = 4;
string log_dir = 5;
string db_dir = 6;
string plugin_dir = 7;
string whitelisted_subnets = 8;
bytes config = 9;
bool paused = 10;
}
message AttachedPeerInfo {
string id = 1;
}
message ListOfAttachedPeerInfo {
repeated AttachedPeerInfo peers = 1;
}
message StartRequest {
string exec_path = 1;
optional uint32 num_nodes = 2;
optional string whitelisted_subnets = 3;
optional string global_node_config = 4;
// Used for both database and log files.
optional string root_data_dir = 5;
// Plugin dir from which to load all custom VM executables.
string plugin_dir = 6;
// The list of:
// - custom chain's VM name
// - genesis file path
// - (optional) subnet id to use.
// - chain config file path
// - network upgrade file path
//
// subnet id must be always nil when using StartRequest, as the network is empty and has no preloaded
// subnet ids available.
//
// The matching file with the name in "ids.ID" format must exist.
// e.g., ids.ToID(hashing.ComputeHash256("subnetevm")).String()
// e.g., subnet-cli create VMID subnetevm
//
// If this field is set to none (by default), the node/network-runner
// does not install the custom chain and does not create the subnet,
// even if the VM binary exists on the local plugins directory.
repeated BlockchainSpec blockchain_specs = 7;
map<string, string> custom_node_configs = 8;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/config.json" with
// the contents provided here.
map<string, string> chain_configs = 9;
// Map of chain name to upgrade file contents.
// If specified, will create a file "chainname/upgrade.json" with
// the contents provided here.
map<string, string> upgrade_configs = 10;
// reassign default/custom ports if they are already taken
optional bool reassign_ports_if_used = 11;
// use dynamic ports instead of default ones
optional bool dynamic_ports = 12;
// Map of subnet id to subnet config file contents.
// If specified, will create a file "subnetid.json" under subnets config dir with
// the contents provided here.
map<string, string> subnet_configs = 13;
// Network id to assign to the network, instead of default one
uint32 network_id = 14;
// Used for log files.
optional string log_root_dir = 15;
// wallet private key
string wallet_private_key = 16;
// genesis path
string genesis_path = 17;
// bootstrap data
repeated string bootstrap_node_ids = 18;
repeated string bootstrap_ip_port_pairs = 19;
// upgrade path
string upgrade_path = 20;
// return 0.0.0.0 as node IP if node has
// public HTTPHost settings
bool zero_ip = 21;
// always create new staking data
bool fresh_staking_ids = 22;
}
message RPCVersionRequest {}
message RPCVersionResponse {
uint32 version = 1;
}
message StartResponse {
ClusterInfo cluster_info = 1;
repeated string chain_ids = 2;
}
message SubnetSpec {
// if empty, assumes all nodes should be participants
repeated string participants = 1;
// either file path or file contents
string subnet_config = 2;
}
message ElasticSubnetSpec {
string subnet_id = 1;
string asset_name = 2;
string asset_symbol = 3;
uint64 initial_supply = 4;
uint64 max_supply = 5;
uint64 min_consumption_rate = 6;
uint64 max_consumption_rate = 7;
uint64 min_validator_stake = 8;
uint64 max_validator_stake = 9;
uint64 min_stake_duration = 10;
uint64 max_stake_duration = 11;
uint32 min_delegation_fee = 12;
uint64 min_delegator_stake = 13;
uint32 max_validator_weight_factor = 14;
uint32 uptime_requirement = 15;
}
message TransformElasticSubnetsRequest {
repeated ElasticSubnetSpec elastic_subnet_spec = 1;
}
message TransformElasticSubnetsResponse {
ClusterInfo cluster_info = 1;
repeated string tx_ids = 2;
repeated string asset_ids = 3;
}
message PermissionlessStakerSpec {
string subnet_id = 1;
string node_name = 2;
uint64 staked_token_amount = 3;
string asset_id = 4;
string start_time = 5;
uint64 stake_duration = 6;
}
message AddPermissionlessValidatorRequest {
repeated PermissionlessStakerSpec validator_spec = 1;
}
message AddPermissionlessValidatorResponse {
ClusterInfo cluster_info = 1;
}
message AddPermissionlessDelegatorRequest {
repeated PermissionlessStakerSpec validator_spec = 1;
}
message AddPermissionlessDelegatorResponse {
ClusterInfo cluster_info = 1;
}
message RemoveSubnetValidatorSpec {
string subnet_id = 1;
repeated string node_names = 2;
}
message RemoveSubnetValidatorRequest {
repeated RemoveSubnetValidatorSpec validator_spec = 1;
}
message RemoveSubnetValidatorResponse {
ClusterInfo cluster_info = 1;
}
message SubnetValidatorsSpec {
string subnet_id = 1;
repeated string node_names = 2;
}
message AddSubnetValidatorsRequest {
repeated SubnetValidatorsSpec validators_spec = 1;
}
message AddSubnetValidatorsResponse {
ClusterInfo cluster_info = 1;
}
message BlockchainSpec {
string vm_name = 1;
// either file path or file contents
string genesis = 2;
// either a subnet_id is given for a previously created subnet,
// or a subnet specification is given for a new subnet generation
optional string subnet_id = 3;
optional SubnetSpec subnet_spec = 4;
// General chain config, either file path or file contents
string chain_config = 5;
// either file path or file contents
string network_upgrade = 6;
string blockchain_alias = 7;
// Per node chain config, either file path or file contents
string per_node_chain_config = 8;
}
message CreateBlockchainsRequest {
// The list of:
// - custom chain's VM name
// - genesis file path
// - (optional) subnet id to use.
// - chain config file path
// - network upgrade file path
// - subnet config file path
// - chain config file path for specific nodes
//
// The matching file with the name in "ids.ID" format must exist.
// e.g., ids.ToID(hashing.ComputeHash256("subnetevm")).String()
// e.g., subnet-cli create VMID subnetevm
//
// If this field is set to none (by default), the node/network-runner
// will return error
repeated BlockchainSpec blockchain_specs = 1;
}
message CreateBlockchainsResponse {
ClusterInfo cluster_info = 1;
repeated string chain_ids = 2;
}
message CreateSubnetsRequest {
repeated SubnetSpec subnet_specs = 1;
}
message CreateSubnetsResponse {
ClusterInfo cluster_info = 1;
repeated string subnet_ids = 2;
}
message HealthRequest {}
message HealthResponse {
ClusterInfo cluster_info = 1;
}
message URIsRequest {}
message URIsResponse {
repeated string uris = 1;
}
message WaitForHealthyRequest {}
message WaitForHealthyResponse {
ClusterInfo cluster_info = 1;
}
message StatusRequest {}
message StatusResponse {
ClusterInfo cluster_info = 1;
}
message StreamStatusRequest {
int64 push_interval = 1;
}
message StreamStatusResponse {
ClusterInfo cluster_info = 1;
}
message RestartNodeRequest {
// Must be a valid node name.
string name = 1;
// Optional fields are set to the previous values if empty.
optional string exec_path = 2;
optional string whitelisted_subnets = 3;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/config.json" with
// the contents provided here.
map<string, string> chain_configs = 4;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/upgrade.json" with
// the contents provided here.
map<string, string> upgrade_configs = 5;
// Map of subnet id to subnet config file contents.
// If specified, will create a file "subnetid.json" under subnets config dir with
// the contents provided here.
map<string, string> subnet_configs = 6;
// Plugin dir from which to load all custom VM executables.
string plugin_dir = 7;
}
message RestartNodeResponse {
ClusterInfo cluster_info = 1;
}
message RemoveNodeRequest {
string name = 1;
}
message RemoveNodeResponse {
ClusterInfo cluster_info = 1;
}
message PauseNodeRequest {
string name = 1;
}
message PauseNodeResponse {
ClusterInfo cluster_info = 1;
}
message ResumeNodeRequest {
string name = 1;
}
message ResumeNodeResponse {
ClusterInfo cluster_info = 1;
}
message AddNodeRequest {
string name = 1;
string exec_path = 2;
optional string node_config = 3;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/config.json" with
// the contents provided here.
map<string, string> chain_configs = 4;
// Map of chain name to config file contents.
// If specified, will create a file "chainname/upgrade.json" with
// the contents provided here.
map<string, string> upgrade_configs = 5;
// Map of subnet id to subnet config file contents.
// If specified, will create a file "subnetid.json" under subnets config dir with
// the contents provided here.
map<string, string> subnet_configs = 6;
// Plugin dir from which to load all custom VM executables.
string plugin_dir = 7;
}
message AddNodeResponse {
ClusterInfo cluster_info = 1;
}
message StopRequest {}
message StopResponse {
ClusterInfo cluster_info = 1;
}
message AttachPeerRequest {
string node_name = 1;
}
message AttachPeerResponse {
ClusterInfo cluster_info = 1;
AttachedPeerInfo attached_peer_info = 2;
}
message SendOutboundMessageRequest {
string node_name = 1;
string peer_id = 2;
uint32 op = 3;
bytes bytes = 4;
}
message SendOutboundMessageResponse {
bool sent = 1;
}
message SaveSnapshotRequest {
string snapshot_name = 1;
bool force = 2;
string snapshot_path = 3;
}
message SaveSnapshotResponse {
string snapshot_path = 1;
}
message LoadSnapshotRequest {
string snapshot_name = 1;
optional string exec_path = 2;
string plugin_dir = 3;
optional string root_data_dir = 4;
map<string, string> chain_configs = 5;
map<string, string> upgrade_configs = 6;
optional string global_node_config = 7;
optional bool reassign_ports_if_used = 8;
map<string, string> subnet_configs = 9;
bool in_place = 10;
optional string log_root_dir = 11;
// wallet private key
string wallet_private_key = 12;
// bootstrap data
repeated string bootstrap_node_ids = 13;
repeated string bootstrap_ip_port_pairs = 14;
// to force an arbitrary path
string snapshot_path = 15;
// return 0.0.0.0 as node IP if node has
// public HTTPHost settings
bool zero_ip = 16;
}
message LoadSnapshotResponse {
ClusterInfo cluster_info = 1;
}
message RemoveSnapshotRequest {
string snapshot_name = 1;
string snapshot_path = 2;
}
message RemoveSnapshotResponse {
}
message GetSnapshotNamesRequest {
}
message GetSnapshotNamesResponse {
repeated string snapshot_names = 1;
}
message ListSubnetsRequest {
}
message ListSubnetsResponse {
repeated string subnet_ids = 1;
}
message ListBlockchainsRequest {
}
message ListBlockchainsResponse {
repeated CustomChainInfo blockchains = 1;
}
message ListRpcsRequest {
}
message NodeRpc {
string node_name = 1;
string rpc = 2;
}
message BlockchainRpcs {
string blockchain_id = 1;
repeated NodeRpc rpcs = 2;
}
message ListRpcsResponse {
repeated BlockchainRpcs blockchains_rpcs = 1;
}
message VMIDRequest {
string vm_name = 1;
}
message VMIDResponse {
string vm_id = 1;
}