-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathRpcGrpc.cs
2975 lines (2888 loc) · 238 KB
/
RpcGrpc.cs
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
// <auto-generated>
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rpc.proto
// </auto-generated>
#pragma warning disable 0414, 1591, 8981, 0612
#region Designer generated code
using grpc = global::Grpc.Core;
namespace Land.Gno.Gnonative.V1 {
/// <summary>
/// GnoNativeService is the service to interact with the Gno blockchain
/// </summary>
public static partial class GnoNativeService
{
static readonly string __ServiceName = "land.gno.gnonative.v1.GnoNativeService";
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static void __Helper_SerializeMessage(global::Google.Protobuf.IMessage message, grpc::SerializationContext context)
{
#if !GRPC_DISABLE_PROTOBUF_BUFFER_SERIALIZATION
if (message is global::Google.Protobuf.IBufferMessage)
{
context.SetPayloadLength(message.CalculateSize());
global::Google.Protobuf.MessageExtensions.WriteTo(message, context.GetBufferWriter());
context.Complete();
return;
}
#endif
context.Complete(global::Google.Protobuf.MessageExtensions.ToByteArray(message));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static class __Helper_MessageCache<T>
{
public static readonly bool IsBufferMessage = global::System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(global::Google.Protobuf.IBufferMessage)).IsAssignableFrom(typeof(T));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static T __Helper_DeserializeMessage<T>(grpc::DeserializationContext context, global::Google.Protobuf.MessageParser<T> parser) where T : global::Google.Protobuf.IMessage<T>
{
#if !GRPC_DISABLE_PROTOBUF_BUFFER_SERIALIZATION
if (__Helper_MessageCache<T>.IsBufferMessage)
{
return parser.ParseFrom(context.PayloadAsReadOnlySequence());
}
#endif
return parser.ParseFrom(context.PayloadAsNewBuffer());
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SetRemoteRequest> __Marshaller_land_gno_gnonative_v1_SetRemoteRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SetRemoteRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SetRemoteResponse> __Marshaller_land_gno_gnonative_v1_SetRemoteResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SetRemoteResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetRemoteRequest> __Marshaller_land_gno_gnonative_v1_GetRemoteRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetRemoteRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetRemoteResponse> __Marshaller_land_gno_gnonative_v1_GetRemoteResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetRemoteResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SetChainIDRequest> __Marshaller_land_gno_gnonative_v1_SetChainIDRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SetChainIDRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SetChainIDResponse> __Marshaller_land_gno_gnonative_v1_SetChainIDResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SetChainIDResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetChainIDRequest> __Marshaller_land_gno_gnonative_v1_GetChainIDRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetChainIDRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetChainIDResponse> __Marshaller_land_gno_gnonative_v1_GetChainIDResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetChainIDResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseRequest> __Marshaller_land_gno_gnonative_v1_GenerateRecoveryPhraseRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseResponse> __Marshaller_land_gno_gnonative_v1_GenerateRecoveryPhraseResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.ListKeyInfoRequest> __Marshaller_land_gno_gnonative_v1_ListKeyInfoRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.ListKeyInfoRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.ListKeyInfoResponse> __Marshaller_land_gno_gnonative_v1_ListKeyInfoResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.ListKeyInfoResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HasKeyByNameRequest> __Marshaller_land_gno_gnonative_v1_HasKeyByNameRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HasKeyByNameRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HasKeyByNameResponse> __Marshaller_land_gno_gnonative_v1_HasKeyByNameResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HasKeyByNameResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HasKeyByAddressRequest> __Marshaller_land_gno_gnonative_v1_HasKeyByAddressRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HasKeyByAddressRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HasKeyByAddressResponse> __Marshaller_land_gno_gnonative_v1_HasKeyByAddressResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HasKeyByAddressResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressRequest> __Marshaller_land_gno_gnonative_v1_HasKeyByNameOrAddressRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressResponse> __Marshaller_land_gno_gnonative_v1_HasKeyByNameOrAddressResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameRequest> __Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameResponse> __Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressRequest> __Marshaller_land_gno_gnonative_v1_GetKeyInfoByAddressRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressResponse> __Marshaller_land_gno_gnonative_v1_GetKeyInfoByAddressResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressRequest> __Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameOrAddressRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressResponse> __Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameOrAddressResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.CreateAccountRequest> __Marshaller_land_gno_gnonative_v1_CreateAccountRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.CreateAccountRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.CreateAccountResponse> __Marshaller_land_gno_gnonative_v1_CreateAccountResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.CreateAccountResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.ActivateAccountRequest> __Marshaller_land_gno_gnonative_v1_ActivateAccountRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.ActivateAccountRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.ActivateAccountResponse> __Marshaller_land_gno_gnonative_v1_ActivateAccountResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.ActivateAccountResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SetPasswordRequest> __Marshaller_land_gno_gnonative_v1_SetPasswordRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SetPasswordRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SetPasswordResponse> __Marshaller_land_gno_gnonative_v1_SetPasswordResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SetPasswordResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.RotatePasswordRequest> __Marshaller_land_gno_gnonative_v1_RotatePasswordRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.RotatePasswordRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.RotatePasswordResponse> __Marshaller_land_gno_gnonative_v1_RotatePasswordResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.RotatePasswordResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetActivatedAccountRequest> __Marshaller_land_gno_gnonative_v1_GetActivatedAccountRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetActivatedAccountRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.GetActivatedAccountResponse> __Marshaller_land_gno_gnonative_v1_GetActivatedAccountResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.GetActivatedAccountResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.QueryAccountRequest> __Marshaller_land_gno_gnonative_v1_QueryAccountRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.QueryAccountRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.QueryAccountResponse> __Marshaller_land_gno_gnonative_v1_QueryAccountResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.QueryAccountResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.DeleteAccountRequest> __Marshaller_land_gno_gnonative_v1_DeleteAccountRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.DeleteAccountRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.DeleteAccountResponse> __Marshaller_land_gno_gnonative_v1_DeleteAccountResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.DeleteAccountResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.QueryRequest> __Marshaller_land_gno_gnonative_v1_QueryRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.QueryRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.QueryResponse> __Marshaller_land_gno_gnonative_v1_QueryResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.QueryResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.RenderRequest> __Marshaller_land_gno_gnonative_v1_RenderRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.RenderRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.RenderResponse> __Marshaller_land_gno_gnonative_v1_RenderResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.RenderResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.QEvalRequest> __Marshaller_land_gno_gnonative_v1_QEvalRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.QEvalRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.QEvalResponse> __Marshaller_land_gno_gnonative_v1_QEvalResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.QEvalResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.CallRequest> __Marshaller_land_gno_gnonative_v1_CallRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.CallRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.CallResponse> __Marshaller_land_gno_gnonative_v1_CallResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.CallResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SendRequest> __Marshaller_land_gno_gnonative_v1_SendRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SendRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SendResponse> __Marshaller_land_gno_gnonative_v1_SendResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SendResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.RunRequest> __Marshaller_land_gno_gnonative_v1_RunRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.RunRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.RunResponse> __Marshaller_land_gno_gnonative_v1_RunResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.RunResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.MakeTxResponse> __Marshaller_land_gno_gnonative_v1_MakeTxResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.MakeTxResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.EstimateGasRequest> __Marshaller_land_gno_gnonative_v1_EstimateGasRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.EstimateGasRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.EstimateGasResponse> __Marshaller_land_gno_gnonative_v1_EstimateGasResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.EstimateGasResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SignTxRequest> __Marshaller_land_gno_gnonative_v1_SignTxRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SignTxRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.SignTxResponse> __Marshaller_land_gno_gnonative_v1_SignTxResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.SignTxResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.BroadcastTxCommitRequest> __Marshaller_land_gno_gnonative_v1_BroadcastTxCommitRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.BroadcastTxCommitRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.BroadcastTxCommitResponse> __Marshaller_land_gno_gnonative_v1_BroadcastTxCommitResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.BroadcastTxCommitResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.AddressToBech32Request> __Marshaller_land_gno_gnonative_v1_AddressToBech32Request = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.AddressToBech32Request.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.AddressToBech32Response> __Marshaller_land_gno_gnonative_v1_AddressToBech32Response = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.AddressToBech32Response.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.AddressFromBech32Request> __Marshaller_land_gno_gnonative_v1_AddressFromBech32Request = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.AddressFromBech32Request.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.AddressFromBech32Response> __Marshaller_land_gno_gnonative_v1_AddressFromBech32Response = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.AddressFromBech32Response.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.AddressFromMnemonicRequest> __Marshaller_land_gno_gnonative_v1_AddressFromMnemonicRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.AddressFromMnemonicRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.AddressFromMnemonicResponse> __Marshaller_land_gno_gnonative_v1_AddressFromMnemonicResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.AddressFromMnemonicResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.UpdateGasWantedTxRequest> __Marshaller_land_gno_gnonative_v1_UpdateGasWantedTxRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.UpdateGasWantedTxRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.UpdateGasWantedTxResponse> __Marshaller_land_gno_gnonative_v1_UpdateGasWantedTxResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.UpdateGasWantedTxResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HelloRequest> __Marshaller_land_gno_gnonative_v1_HelloRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HelloRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HelloResponse> __Marshaller_land_gno_gnonative_v1_HelloResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HelloResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HelloStreamRequest> __Marshaller_land_gno_gnonative_v1_HelloStreamRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HelloStreamRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Marshaller<global::Land.Gno.Gnonative.V1.HelloStreamResponse> __Marshaller_land_gno_gnonative_v1_HelloStreamResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Land.Gno.Gnonative.V1.HelloStreamResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.SetRemoteRequest, global::Land.Gno.Gnonative.V1.SetRemoteResponse> __Method_SetRemote = new grpc::Method<global::Land.Gno.Gnonative.V1.SetRemoteRequest, global::Land.Gno.Gnonative.V1.SetRemoteResponse>(
grpc::MethodType.Unary,
__ServiceName,
"SetRemote",
__Marshaller_land_gno_gnonative_v1_SetRemoteRequest,
__Marshaller_land_gno_gnonative_v1_SetRemoteResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GetRemoteRequest, global::Land.Gno.Gnonative.V1.GetRemoteResponse> __Method_GetRemote = new grpc::Method<global::Land.Gno.Gnonative.V1.GetRemoteRequest, global::Land.Gno.Gnonative.V1.GetRemoteResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GetRemote",
__Marshaller_land_gno_gnonative_v1_GetRemoteRequest,
__Marshaller_land_gno_gnonative_v1_GetRemoteResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.SetChainIDRequest, global::Land.Gno.Gnonative.V1.SetChainIDResponse> __Method_SetChainID = new grpc::Method<global::Land.Gno.Gnonative.V1.SetChainIDRequest, global::Land.Gno.Gnonative.V1.SetChainIDResponse>(
grpc::MethodType.Unary,
__ServiceName,
"SetChainID",
__Marshaller_land_gno_gnonative_v1_SetChainIDRequest,
__Marshaller_land_gno_gnonative_v1_SetChainIDResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GetChainIDRequest, global::Land.Gno.Gnonative.V1.GetChainIDResponse> __Method_GetChainID = new grpc::Method<global::Land.Gno.Gnonative.V1.GetChainIDRequest, global::Land.Gno.Gnonative.V1.GetChainIDResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GetChainID",
__Marshaller_land_gno_gnonative_v1_GetChainIDRequest,
__Marshaller_land_gno_gnonative_v1_GetChainIDResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseRequest, global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseResponse> __Method_GenerateRecoveryPhrase = new grpc::Method<global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseRequest, global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GenerateRecoveryPhrase",
__Marshaller_land_gno_gnonative_v1_GenerateRecoveryPhraseRequest,
__Marshaller_land_gno_gnonative_v1_GenerateRecoveryPhraseResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.ListKeyInfoRequest, global::Land.Gno.Gnonative.V1.ListKeyInfoResponse> __Method_ListKeyInfo = new grpc::Method<global::Land.Gno.Gnonative.V1.ListKeyInfoRequest, global::Land.Gno.Gnonative.V1.ListKeyInfoResponse>(
grpc::MethodType.Unary,
__ServiceName,
"ListKeyInfo",
__Marshaller_land_gno_gnonative_v1_ListKeyInfoRequest,
__Marshaller_land_gno_gnonative_v1_ListKeyInfoResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.HasKeyByNameRequest, global::Land.Gno.Gnonative.V1.HasKeyByNameResponse> __Method_HasKeyByName = new grpc::Method<global::Land.Gno.Gnonative.V1.HasKeyByNameRequest, global::Land.Gno.Gnonative.V1.HasKeyByNameResponse>(
grpc::MethodType.Unary,
__ServiceName,
"HasKeyByName",
__Marshaller_land_gno_gnonative_v1_HasKeyByNameRequest,
__Marshaller_land_gno_gnonative_v1_HasKeyByNameResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.HasKeyByAddressRequest, global::Land.Gno.Gnonative.V1.HasKeyByAddressResponse> __Method_HasKeyByAddress = new grpc::Method<global::Land.Gno.Gnonative.V1.HasKeyByAddressRequest, global::Land.Gno.Gnonative.V1.HasKeyByAddressResponse>(
grpc::MethodType.Unary,
__ServiceName,
"HasKeyByAddress",
__Marshaller_land_gno_gnonative_v1_HasKeyByAddressRequest,
__Marshaller_land_gno_gnonative_v1_HasKeyByAddressResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressRequest, global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressResponse> __Method_HasKeyByNameOrAddress = new grpc::Method<global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressRequest, global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressResponse>(
grpc::MethodType.Unary,
__ServiceName,
"HasKeyByNameOrAddress",
__Marshaller_land_gno_gnonative_v1_HasKeyByNameOrAddressRequest,
__Marshaller_land_gno_gnonative_v1_HasKeyByNameOrAddressResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameRequest, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameResponse> __Method_GetKeyInfoByName = new grpc::Method<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameRequest, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GetKeyInfoByName",
__Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameRequest,
__Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressRequest, global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressResponse> __Method_GetKeyInfoByAddress = new grpc::Method<global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressRequest, global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GetKeyInfoByAddress",
__Marshaller_land_gno_gnonative_v1_GetKeyInfoByAddressRequest,
__Marshaller_land_gno_gnonative_v1_GetKeyInfoByAddressResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressRequest, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressResponse> __Method_GetKeyInfoByNameOrAddress = new grpc::Method<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressRequest, global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GetKeyInfoByNameOrAddress",
__Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameOrAddressRequest,
__Marshaller_land_gno_gnonative_v1_GetKeyInfoByNameOrAddressResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.CreateAccountRequest, global::Land.Gno.Gnonative.V1.CreateAccountResponse> __Method_CreateAccount = new grpc::Method<global::Land.Gno.Gnonative.V1.CreateAccountRequest, global::Land.Gno.Gnonative.V1.CreateAccountResponse>(
grpc::MethodType.Unary,
__ServiceName,
"CreateAccount",
__Marshaller_land_gno_gnonative_v1_CreateAccountRequest,
__Marshaller_land_gno_gnonative_v1_CreateAccountResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.ActivateAccountRequest, global::Land.Gno.Gnonative.V1.ActivateAccountResponse> __Method_ActivateAccount = new grpc::Method<global::Land.Gno.Gnonative.V1.ActivateAccountRequest, global::Land.Gno.Gnonative.V1.ActivateAccountResponse>(
grpc::MethodType.Unary,
__ServiceName,
"ActivateAccount",
__Marshaller_land_gno_gnonative_v1_ActivateAccountRequest,
__Marshaller_land_gno_gnonative_v1_ActivateAccountResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.SetPasswordRequest, global::Land.Gno.Gnonative.V1.SetPasswordResponse> __Method_SetPassword = new grpc::Method<global::Land.Gno.Gnonative.V1.SetPasswordRequest, global::Land.Gno.Gnonative.V1.SetPasswordResponse>(
grpc::MethodType.Unary,
__ServiceName,
"SetPassword",
__Marshaller_land_gno_gnonative_v1_SetPasswordRequest,
__Marshaller_land_gno_gnonative_v1_SetPasswordResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.RotatePasswordRequest, global::Land.Gno.Gnonative.V1.RotatePasswordResponse> __Method_RotatePassword = new grpc::Method<global::Land.Gno.Gnonative.V1.RotatePasswordRequest, global::Land.Gno.Gnonative.V1.RotatePasswordResponse>(
grpc::MethodType.Unary,
__ServiceName,
"RotatePassword",
__Marshaller_land_gno_gnonative_v1_RotatePasswordRequest,
__Marshaller_land_gno_gnonative_v1_RotatePasswordResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.GetActivatedAccountRequest, global::Land.Gno.Gnonative.V1.GetActivatedAccountResponse> __Method_GetActivatedAccount = new grpc::Method<global::Land.Gno.Gnonative.V1.GetActivatedAccountRequest, global::Land.Gno.Gnonative.V1.GetActivatedAccountResponse>(
grpc::MethodType.Unary,
__ServiceName,
"GetActivatedAccount",
__Marshaller_land_gno_gnonative_v1_GetActivatedAccountRequest,
__Marshaller_land_gno_gnonative_v1_GetActivatedAccountResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.QueryAccountRequest, global::Land.Gno.Gnonative.V1.QueryAccountResponse> __Method_QueryAccount = new grpc::Method<global::Land.Gno.Gnonative.V1.QueryAccountRequest, global::Land.Gno.Gnonative.V1.QueryAccountResponse>(
grpc::MethodType.Unary,
__ServiceName,
"QueryAccount",
__Marshaller_land_gno_gnonative_v1_QueryAccountRequest,
__Marshaller_land_gno_gnonative_v1_QueryAccountResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.DeleteAccountRequest, global::Land.Gno.Gnonative.V1.DeleteAccountResponse> __Method_DeleteAccount = new grpc::Method<global::Land.Gno.Gnonative.V1.DeleteAccountRequest, global::Land.Gno.Gnonative.V1.DeleteAccountResponse>(
grpc::MethodType.Unary,
__ServiceName,
"DeleteAccount",
__Marshaller_land_gno_gnonative_v1_DeleteAccountRequest,
__Marshaller_land_gno_gnonative_v1_DeleteAccountResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.QueryRequest, global::Land.Gno.Gnonative.V1.QueryResponse> __Method_Query = new grpc::Method<global::Land.Gno.Gnonative.V1.QueryRequest, global::Land.Gno.Gnonative.V1.QueryResponse>(
grpc::MethodType.Unary,
__ServiceName,
"Query",
__Marshaller_land_gno_gnonative_v1_QueryRequest,
__Marshaller_land_gno_gnonative_v1_QueryResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.RenderRequest, global::Land.Gno.Gnonative.V1.RenderResponse> __Method_Render = new grpc::Method<global::Land.Gno.Gnonative.V1.RenderRequest, global::Land.Gno.Gnonative.V1.RenderResponse>(
grpc::MethodType.Unary,
__ServiceName,
"Render",
__Marshaller_land_gno_gnonative_v1_RenderRequest,
__Marshaller_land_gno_gnonative_v1_RenderResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.QEvalRequest, global::Land.Gno.Gnonative.V1.QEvalResponse> __Method_QEval = new grpc::Method<global::Land.Gno.Gnonative.V1.QEvalRequest, global::Land.Gno.Gnonative.V1.QEvalResponse>(
grpc::MethodType.Unary,
__ServiceName,
"QEval",
__Marshaller_land_gno_gnonative_v1_QEvalRequest,
__Marshaller_land_gno_gnonative_v1_QEvalResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.CallRequest, global::Land.Gno.Gnonative.V1.CallResponse> __Method_Call = new grpc::Method<global::Land.Gno.Gnonative.V1.CallRequest, global::Land.Gno.Gnonative.V1.CallResponse>(
grpc::MethodType.ServerStreaming,
__ServiceName,
"Call",
__Marshaller_land_gno_gnonative_v1_CallRequest,
__Marshaller_land_gno_gnonative_v1_CallResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.SendRequest, global::Land.Gno.Gnonative.V1.SendResponse> __Method_Send = new grpc::Method<global::Land.Gno.Gnonative.V1.SendRequest, global::Land.Gno.Gnonative.V1.SendResponse>(
grpc::MethodType.ServerStreaming,
__ServiceName,
"Send",
__Marshaller_land_gno_gnonative_v1_SendRequest,
__Marshaller_land_gno_gnonative_v1_SendResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.RunRequest, global::Land.Gno.Gnonative.V1.RunResponse> __Method_Run = new grpc::Method<global::Land.Gno.Gnonative.V1.RunRequest, global::Land.Gno.Gnonative.V1.RunResponse>(
grpc::MethodType.ServerStreaming,
__ServiceName,
"Run",
__Marshaller_land_gno_gnonative_v1_RunRequest,
__Marshaller_land_gno_gnonative_v1_RunResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.CallRequest, global::Land.Gno.Gnonative.V1.MakeTxResponse> __Method_MakeCallTx = new grpc::Method<global::Land.Gno.Gnonative.V1.CallRequest, global::Land.Gno.Gnonative.V1.MakeTxResponse>(
grpc::MethodType.Unary,
__ServiceName,
"MakeCallTx",
__Marshaller_land_gno_gnonative_v1_CallRequest,
__Marshaller_land_gno_gnonative_v1_MakeTxResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.SendRequest, global::Land.Gno.Gnonative.V1.MakeTxResponse> __Method_MakeSendTx = new grpc::Method<global::Land.Gno.Gnonative.V1.SendRequest, global::Land.Gno.Gnonative.V1.MakeTxResponse>(
grpc::MethodType.Unary,
__ServiceName,
"MakeSendTx",
__Marshaller_land_gno_gnonative_v1_SendRequest,
__Marshaller_land_gno_gnonative_v1_MakeTxResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.RunRequest, global::Land.Gno.Gnonative.V1.MakeTxResponse> __Method_MakeRunTx = new grpc::Method<global::Land.Gno.Gnonative.V1.RunRequest, global::Land.Gno.Gnonative.V1.MakeTxResponse>(
grpc::MethodType.Unary,
__ServiceName,
"MakeRunTx",
__Marshaller_land_gno_gnonative_v1_RunRequest,
__Marshaller_land_gno_gnonative_v1_MakeTxResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.EstimateGasRequest, global::Land.Gno.Gnonative.V1.EstimateGasResponse> __Method_EstimateGas = new grpc::Method<global::Land.Gno.Gnonative.V1.EstimateGasRequest, global::Land.Gno.Gnonative.V1.EstimateGasResponse>(
grpc::MethodType.Unary,
__ServiceName,
"EstimateGas",
__Marshaller_land_gno_gnonative_v1_EstimateGasRequest,
__Marshaller_land_gno_gnonative_v1_EstimateGasResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.SignTxRequest, global::Land.Gno.Gnonative.V1.SignTxResponse> __Method_SignTx = new grpc::Method<global::Land.Gno.Gnonative.V1.SignTxRequest, global::Land.Gno.Gnonative.V1.SignTxResponse>(
grpc::MethodType.Unary,
__ServiceName,
"SignTx",
__Marshaller_land_gno_gnonative_v1_SignTxRequest,
__Marshaller_land_gno_gnonative_v1_SignTxResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.BroadcastTxCommitRequest, global::Land.Gno.Gnonative.V1.BroadcastTxCommitResponse> __Method_BroadcastTxCommit = new grpc::Method<global::Land.Gno.Gnonative.V1.BroadcastTxCommitRequest, global::Land.Gno.Gnonative.V1.BroadcastTxCommitResponse>(
grpc::MethodType.ServerStreaming,
__ServiceName,
"BroadcastTxCommit",
__Marshaller_land_gno_gnonative_v1_BroadcastTxCommitRequest,
__Marshaller_land_gno_gnonative_v1_BroadcastTxCommitResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.AddressToBech32Request, global::Land.Gno.Gnonative.V1.AddressToBech32Response> __Method_AddressToBech32 = new grpc::Method<global::Land.Gno.Gnonative.V1.AddressToBech32Request, global::Land.Gno.Gnonative.V1.AddressToBech32Response>(
grpc::MethodType.Unary,
__ServiceName,
"AddressToBech32",
__Marshaller_land_gno_gnonative_v1_AddressToBech32Request,
__Marshaller_land_gno_gnonative_v1_AddressToBech32Response);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.AddressFromBech32Request, global::Land.Gno.Gnonative.V1.AddressFromBech32Response> __Method_AddressFromBech32 = new grpc::Method<global::Land.Gno.Gnonative.V1.AddressFromBech32Request, global::Land.Gno.Gnonative.V1.AddressFromBech32Response>(
grpc::MethodType.Unary,
__ServiceName,
"AddressFromBech32",
__Marshaller_land_gno_gnonative_v1_AddressFromBech32Request,
__Marshaller_land_gno_gnonative_v1_AddressFromBech32Response);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.AddressFromMnemonicRequest, global::Land.Gno.Gnonative.V1.AddressFromMnemonicResponse> __Method_AddressFromMnemonic = new grpc::Method<global::Land.Gno.Gnonative.V1.AddressFromMnemonicRequest, global::Land.Gno.Gnonative.V1.AddressFromMnemonicResponse>(
grpc::MethodType.Unary,
__ServiceName,
"AddressFromMnemonic",
__Marshaller_land_gno_gnonative_v1_AddressFromMnemonicRequest,
__Marshaller_land_gno_gnonative_v1_AddressFromMnemonicResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.UpdateGasWantedTxRequest, global::Land.Gno.Gnonative.V1.UpdateGasWantedTxResponse> __Method_UpdateGasWantedTx = new grpc::Method<global::Land.Gno.Gnonative.V1.UpdateGasWantedTxRequest, global::Land.Gno.Gnonative.V1.UpdateGasWantedTxResponse>(
grpc::MethodType.Unary,
__ServiceName,
"UpdateGasWantedTx",
__Marshaller_land_gno_gnonative_v1_UpdateGasWantedTxRequest,
__Marshaller_land_gno_gnonative_v1_UpdateGasWantedTxResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.HelloRequest, global::Land.Gno.Gnonative.V1.HelloResponse> __Method_Hello = new grpc::Method<global::Land.Gno.Gnonative.V1.HelloRequest, global::Land.Gno.Gnonative.V1.HelloResponse>(
grpc::MethodType.Unary,
__ServiceName,
"Hello",
__Marshaller_land_gno_gnonative_v1_HelloRequest,
__Marshaller_land_gno_gnonative_v1_HelloResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method<global::Land.Gno.Gnonative.V1.HelloStreamRequest, global::Land.Gno.Gnonative.V1.HelloStreamResponse> __Method_HelloStream = new grpc::Method<global::Land.Gno.Gnonative.V1.HelloStreamRequest, global::Land.Gno.Gnonative.V1.HelloStreamResponse>(
grpc::MethodType.ServerStreaming,
__ServiceName,
"HelloStream",
__Marshaller_land_gno_gnonative_v1_HelloStreamRequest,
__Marshaller_land_gno_gnonative_v1_HelloStreamResponse);
/// <summary>Service descriptor</summary>
public static global::Google.Protobuf.Reflection.ServiceDescriptor Descriptor
{
get { return global::Land.Gno.Gnonative.V1.RpcReflection.Descriptor.Services[0]; }
}
/// <summary>Base class for server-side implementations of GnoNativeService</summary>
[grpc::BindServiceMethod(typeof(GnoNativeService), "BindService")]
public abstract partial class GnoNativeServiceBase
{
/// <summary>
/// Set the connection address for the remote node. If you don't call this,
/// the default is "127.0.0.1:26657"
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.SetRemoteResponse> SetRemote(global::Land.Gno.Gnonative.V1.SetRemoteRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Get the connection address for the remote node. The response is either
/// the initial default, or the value which was set with SetRemote
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GetRemoteResponse> GetRemote(global::Land.Gno.Gnonative.V1.GetRemoteRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Set the chain ID for the remote node. If you don't call this, the default
/// is "dev"
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.SetChainIDResponse> SetChainID(global::Land.Gno.Gnonative.V1.SetChainIDRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Get the chain ID for the remote node. The response is either
/// the initial default, or the value which was set with SetChainID
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GetChainIDResponse> GetChainID(global::Land.Gno.Gnonative.V1.GetChainIDRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Generate a recovery phrase of BIP39 mnemonic words using entropy from the
/// crypto library random number generator. This can be used as the mnemonic in
/// CreateAccount.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseResponse> GenerateRecoveryPhrase(global::Land.Gno.Gnonative.V1.GenerateRecoveryPhraseRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Get the information for all keys in the keybase
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.ListKeyInfoResponse> ListKeyInfo(global::Land.Gno.Gnonative.V1.ListKeyInfoRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Check for the key in the keybase with the given name.
/// In the response, set has true if the keybase has the key.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.HasKeyByNameResponse> HasKeyByName(global::Land.Gno.Gnonative.V1.HasKeyByNameRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Check for the key in the keybase with the given address.
/// In the response, set has true if the keybase has the key.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.HasKeyByAddressResponse> HasKeyByAddress(global::Land.Gno.Gnonative.V1.HasKeyByAddressRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Check for the key in the keybase with the given name or bech32 string address.
/// In the response, set has true if the keybase has the key.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressResponse> HasKeyByNameOrAddress(global::Land.Gno.Gnonative.V1.HasKeyByNameOrAddressRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Get the information for the key in the keybase with the given name.
/// If the key doesn't exist, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrCryptoKeyNotFound.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameResponse> GetKeyInfoByName(global::Land.Gno.Gnonative.V1.GetKeyInfoByNameRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Get the information for the key in the keybase with the given address.
/// If the key doesn't exist, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrCryptoKeyNotFound.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressResponse> GetKeyInfoByAddress(global::Land.Gno.Gnonative.V1.GetKeyInfoByAddressRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Get the information for the key in the keybase with the given name or bech32 string address.
/// If the key doesn't exist, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrCryptoKeyNotFound.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressResponse> GetKeyInfoByNameOrAddress(global::Land.Gno.Gnonative.V1.GetKeyInfoByNameOrAddressRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Create a new account in the keybase using the name and password specified by SetAccount.
/// If an account with the same name already exists in the keybase,
/// this replaces it. (If you don't want to replace it, then it's your responsibility
/// to use GetKeyInfoByName to check if it exists before calling this.)
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.CreateAccountResponse> CreateAccount(global::Land.Gno.Gnonative.V1.CreateAccountRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Find the account in the keybase with the given name_or_bech32 and activate it. If the response has_password is
/// false, then you should call SetPassword before using a method which needs it.
/// If the account is already activated, return its info.
/// If the key doesn't exist, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrCryptoKeyNotFound.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.ActivateAccountResponse> ActivateAccount(global::Land.Gno.Gnonative.V1.ActivateAccountRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Set the password for the account in the keybase with the given address.
/// If there is no activated account with the given address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// If the password is wrong, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrDecryptionFailed.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.SetPasswordResponse> SetPassword(global::Land.Gno.Gnonative.V1.SetPasswordRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Rotate the password of a key to a new password for the accounts in the keybase with the given addresses.
/// Before calling this, you must call SetPassword with the current password for each account.
/// If there is an error, then roll back all accounts to the current password.
/// If there is no activated account with the given address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.RotatePasswordResponse> RotatePassword(global::Land.Gno.Gnonative.V1.RotatePasswordRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// GetActivatedAccount gets the info of the account by address which has been activated by ActivateAccount.
/// If there the given address is not specified, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrInvalidAddress.
/// If there is no activated account with the given address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.GetActivatedAccountResponse> GetActivatedAccount(global::Land.Gno.Gnonative.V1.GetActivatedAccountRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// QueryAccount retrieves account information from the blockchain for a given
/// address.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.QueryAccountResponse> QueryAccount(global::Land.Gno.Gnonative.V1.QueryAccountRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// DeleteAccount deletes the account with the given name, using the password
/// to ensure access. However, if skip_password is true, then ignore the
/// password.
/// If the account doesn't exist, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrCryptoKeyNotFound.
/// If the password is wrong, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrDecryptionFailed.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.DeleteAccountResponse> DeleteAccount(global::Land.Gno.Gnonative.V1.DeleteAccountRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Make an ABCI query to the remote node.
/// If the request path is unrecognized, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrUnknownRequest.
/// If the request data has a package path that is unrecognized, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrInvalidPkgPath.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.QueryResponse> Query(global::Land.Gno.Gnonative.V1.QueryRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Render calls the Render function for package_path with optional args. The
/// package path should include the prefix like "gno.land/". This is similar to
/// using a browser URL <nodeURL>/<pkgPath>:<args> where <pkgPath> doesn't have
/// the prefix like "gno.land/".
/// If the request package_path is unrecognized, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrInvalidPkgPath.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.RenderResponse> Render(global::Land.Gno.Gnonative.V1.RenderRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// QEval evaluates the given expression with the realm code at package_path.
/// The package path should include the prefix like "gno.land/". The expression
/// is usually a function call like "GetBoardIDFromName(\"testboard\")". The
/// return value is a typed expression like
/// "(1 gno.land/r/demo/boards.BoardID)\n(true bool)".
/// If the request package_path is unrecognized, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrInvalidPkgPath.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.QEvalResponse> QEval(global::Land.Gno.Gnonative.V1.QEvalRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Call a specific realm function. Sign the transaction with the given caller_address.
/// If there is no activated account with the given caller_address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// If the password is wrong, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrDecryptionFailed.
/// If the path of a realm function call is unrecognized, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrUnknownRequest.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="responseStream">Used for sending responses back to the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>A task indicating completion of the handler.</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task Call(global::Land.Gno.Gnonative.V1.CallRequest request, grpc::IServerStreamWriter<global::Land.Gno.Gnonative.V1.CallResponse> responseStream, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Send currency from the account with the given caller_address to an account on the blockchain.
/// If there is no activated account with the given caller_address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// If the password is wrong, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrDecryptionFailed.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="responseStream">Used for sending responses back to the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>A task indicating completion of the handler.</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task Send(global::Land.Gno.Gnonative.V1.SendRequest request, grpc::IServerStreamWriter<global::Land.Gno.Gnonative.V1.SendResponse> responseStream, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Temporarily load the code in package on the blockchain and run main() which can
/// call realm functions and use println() to output to the "console". Sign the transaction with the given caller_address.
/// This returns the "console" output.
/// If there is no activated account with the given caller_address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="responseStream">Used for sending responses back to the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>A task indicating completion of the handler.</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task Run(global::Land.Gno.Gnonative.V1.RunRequest request, grpc::IServerStreamWriter<global::Land.Gno.Gnonative.V1.RunResponse> responseStream, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Make an unsigned transaction to call a specific realm function.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.MakeTxResponse> MakeCallTx(global::Land.Gno.Gnonative.V1.CallRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Make an unsigned transaction to send currency to an account on the blockchain.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.MakeTxResponse> MakeSendTx(global::Land.Gno.Gnonative.V1.SendRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Make an unsigned transaction to temporarily load the code in package on the blockchain and run main().
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.MakeTxResponse> MakeRunTx(global::Land.Gno.Gnonative.V1.RunRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// EstimateGas returns the least amount of gas required for the transaction to go through on the chain (minimum gas wanted).
/// The estimation process assumes the transaction is properly signed.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.EstimateGasResponse> EstimateGas(global::Land.Gno.Gnonative.V1.EstimateGasRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Sign the transaction using the account with the given address.
/// If there is no activated account with the given address, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrNoActiveAccount.
/// If the password is wrong, return [ErrCode](#land.gno.gnonative.v1.ErrCode).ErrDecryptionFailed.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.SignTxResponse> SignTx(global::Land.Gno.Gnonative.V1.SignTxRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Broadcast the signed transaction to the blockchain configured in GetRemote and return a stream result.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="responseStream">Used for sending responses back to the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>A task indicating completion of the handler.</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task BroadcastTxCommit(global::Land.Gno.Gnonative.V1.BroadcastTxCommitRequest request, grpc::IServerStreamWriter<global::Land.Gno.Gnonative.V1.BroadcastTxCommitResponse> responseStream, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Convert a byte array address to a bech32 string address.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.AddressToBech32Response> AddressToBech32(global::Land.Gno.Gnonative.V1.AddressToBech32Request request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Convert a bech32 string address to a byte array address.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.AddressFromBech32Response> AddressFromBech32(global::Land.Gno.Gnonative.V1.AddressFromBech32Request request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Convert a mnemonic (as in CreateAccount) to a byte array address.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.AddressFromMnemonicResponse> AddressFromMnemonic(global::Land.Gno.Gnonative.V1.AddressFromMnemonicRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Update the GasWanted field of the transaction with the given amount.
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.UpdateGasWantedTxResponse> UpdateGasWantedTx(global::Land.Gno.Gnonative.V1.UpdateGasWantedTxRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// Hello is for debug purposes
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>The response to send back to the client (wrapped by a task).</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task<global::Land.Gno.Gnonative.V1.HelloResponse> Hello(global::Land.Gno.Gnonative.V1.HelloRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
/// <summary>
/// HelloStream is for debug purposes
/// </summary>
/// <param name="request">The request received from the client.</param>
/// <param name="responseStream">Used for sending responses back to the client.</param>
/// <param name="context">The context of the server-side call handler being invoked.</param>
/// <returns>A task indicating completion of the handler.</returns>
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public virtual global::System.Threading.Tasks.Task HelloStream(global::Land.Gno.Gnonative.V1.HelloStreamRequest request, grpc::IServerStreamWriter<global::Land.Gno.Gnonative.V1.HelloStreamResponse> responseStream, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
}
/// <summary>Client for GnoNativeService</summary>
public partial class GnoNativeServiceClient : grpc::ClientBase<GnoNativeServiceClient>