lnrpc 0.11.1 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +23 -23
- data/README.md +8 -9
- data/examples.rb +43 -0
- data/generate-grpc-service-files.sh +2 -3
- data/lib/grpc_services/autopilotrpc/autopilot_services_pb.rb +5 -5
- data/lib/grpc_services/chainrpc/chainnotifier_services_pb.rb +4 -4
- data/lib/grpc_services/invoicesrpc/invoices_pb.rb +18 -0
- data/lib/grpc_services/invoicesrpc/invoices_services_pb.rb +9 -5
- data/lib/grpc_services/lnclipb/lncli_pb.rb +1 -0
- data/lib/grpc_services/routerrpc/router_pb.rb +50 -0
- data/lib/grpc_services/routerrpc/router_services_pb.rb +33 -14
- data/lib/grpc_services/rpc_pb.rb +123 -0
- data/lib/grpc_services/rpc_services_pb.rb +77 -63
- data/lib/grpc_services/signrpc/signer_pb.rb +3 -0
- data/lib/grpc_services/signrpc/signer_services_pb.rb +9 -8
- data/lib/grpc_services/verrpc/verrpc_services_pb.rb +2 -2
- data/lib/grpc_services/walletrpc/walletkit_pb.rb +108 -0
- data/lib/grpc_services/walletrpc/walletkit_services_pb.rb +87 -14
- data/lib/grpc_services/walletunlocker_pb.rb +23 -0
- data/lib/grpc_services/walletunlocker_services_pb.rb +5 -5
- data/lib/grpc_services/watchtowerrpc/watchtower_services_pb.rb +2 -2
- data/lib/grpc_services/wtclientrpc/wtclient_pb.rb +8 -0
- data/lib/grpc_services/wtclientrpc/wtclient_services_pb.rb +7 -7
- data/lib/lnrpc/client.rb +1 -0
- data/lib/lnrpc/version.rb +1 -1
- data/lnrpc.gemspec +3 -3
- metadata +11 -11
data/lib/grpc_services/rpc_pb.rb
CHANGED
@@ -28,6 +28,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
28
28
|
add_message "lnrpc.GetTransactionsRequest" do
|
29
29
|
optional :start_height, :int32, 1
|
30
30
|
optional :end_height, :int32, 2
|
31
|
+
optional :account, :string, 3
|
31
32
|
end
|
32
33
|
add_message "lnrpc.TransactionDetails" do
|
33
34
|
repeated :transactions, :message, 1, "lnrpc.Transaction"
|
@@ -55,6 +56,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
55
56
|
map :dest_custom_records, :uint64, :bytes, 11
|
56
57
|
optional :allow_self_payment, :bool, 14
|
57
58
|
repeated :dest_features, :enum, 15, "lnrpc.FeatureBit"
|
59
|
+
optional :payment_addr, :bytes, 16
|
58
60
|
end
|
59
61
|
add_message "lnrpc.SendResponse" do
|
60
62
|
optional :payment_error, :string, 1
|
@@ -85,6 +87,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
85
87
|
add_message "lnrpc.ChannelAcceptResponse" do
|
86
88
|
optional :accept, :bool, 1
|
87
89
|
optional :pending_chan_id, :bytes, 2
|
90
|
+
optional :error, :string, 3
|
91
|
+
optional :upfront_shutdown, :string, 4
|
92
|
+
optional :csv_delay, :uint32, 5
|
93
|
+
optional :reserve_sat, :uint64, 6
|
94
|
+
optional :in_flight_max_msat, :uint64, 7
|
95
|
+
optional :max_htlc_count, :uint32, 8
|
96
|
+
optional :min_htlc_in, :uint64, 9
|
97
|
+
optional :min_accept_depth, :uint32, 10
|
88
98
|
end
|
89
99
|
add_message "lnrpc.ChannelPoint" do
|
90
100
|
optional :output_index, :uint32, 3
|
@@ -105,16 +115,22 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
105
115
|
add_message "lnrpc.EstimateFeeRequest" do
|
106
116
|
map :AddrToAmount, :string, :int64, 1
|
107
117
|
optional :target_conf, :int32, 2
|
118
|
+
optional :min_confs, :int32, 3
|
119
|
+
optional :spend_unconfirmed, :bool, 4
|
108
120
|
end
|
109
121
|
add_message "lnrpc.EstimateFeeResponse" do
|
110
122
|
optional :fee_sat, :int64, 1
|
111
123
|
optional :feerate_sat_per_byte, :int64, 2
|
124
|
+
optional :sat_per_vbyte, :uint64, 3
|
112
125
|
end
|
113
126
|
add_message "lnrpc.SendManyRequest" do
|
114
127
|
map :AddrToAmount, :string, :int64, 1
|
115
128
|
optional :target_conf, :int32, 3
|
129
|
+
optional :sat_per_vbyte, :uint64, 4
|
116
130
|
optional :sat_per_byte, :int64, 5
|
117
131
|
optional :label, :string, 6
|
132
|
+
optional :min_confs, :int32, 7
|
133
|
+
optional :spend_unconfirmed, :bool, 8
|
118
134
|
end
|
119
135
|
add_message "lnrpc.SendManyResponse" do
|
120
136
|
optional :txid, :string, 1
|
@@ -123,9 +139,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
123
139
|
optional :addr, :string, 1
|
124
140
|
optional :amount, :int64, 2
|
125
141
|
optional :target_conf, :int32, 3
|
142
|
+
optional :sat_per_vbyte, :uint64, 4
|
126
143
|
optional :sat_per_byte, :int64, 5
|
127
144
|
optional :send_all, :bool, 6
|
128
145
|
optional :label, :string, 7
|
146
|
+
optional :min_confs, :int32, 8
|
147
|
+
optional :spend_unconfirmed, :bool, 9
|
129
148
|
end
|
130
149
|
add_message "lnrpc.SendCoinsResponse" do
|
131
150
|
optional :txid, :string, 1
|
@@ -133,12 +152,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
133
152
|
add_message "lnrpc.ListUnspentRequest" do
|
134
153
|
optional :min_confs, :int32, 1
|
135
154
|
optional :max_confs, :int32, 2
|
155
|
+
optional :account, :string, 3
|
136
156
|
end
|
137
157
|
add_message "lnrpc.ListUnspentResponse" do
|
138
158
|
repeated :utxos, :message, 1, "lnrpc.Utxo"
|
139
159
|
end
|
140
160
|
add_message "lnrpc.NewAddressRequest" do
|
141
161
|
optional :type, :enum, 1, "lnrpc.AddressType"
|
162
|
+
optional :account, :string, 2
|
142
163
|
end
|
143
164
|
add_message "lnrpc.NewAddressResponse" do
|
144
165
|
optional :address, :string, 1
|
@@ -160,6 +181,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
160
181
|
add_message "lnrpc.ConnectPeerRequest" do
|
161
182
|
optional :addr, :message, 1, "lnrpc.LightningAddress"
|
162
183
|
optional :perm, :bool, 2
|
184
|
+
optional :timeout, :uint64, 3
|
163
185
|
end
|
164
186
|
add_message "lnrpc.ConnectPeerResponse" do
|
165
187
|
end
|
@@ -173,6 +195,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
173
195
|
optional :amount, :int64, 2
|
174
196
|
optional :hash_lock, :bytes, 3
|
175
197
|
optional :expiration_height, :uint32, 4
|
198
|
+
optional :htlc_index, :uint64, 5
|
199
|
+
optional :forwarding_channel, :uint64, 6
|
200
|
+
optional :forwarding_htlc_index, :uint64, 7
|
176
201
|
end
|
177
202
|
add_message "lnrpc.ChannelConstraints" do
|
178
203
|
optional :csv_delay, :uint32, 1
|
@@ -277,11 +302,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
277
302
|
optional :sync_type, :enum, 10, "lnrpc.Peer.SyncType"
|
278
303
|
map :features, :uint32, :message, 11, "lnrpc.Feature"
|
279
304
|
repeated :errors, :message, 12, "lnrpc.TimestampedError"
|
305
|
+
optional :flap_count, :int32, 13
|
306
|
+
optional :last_flap_ns, :int64, 14
|
280
307
|
end
|
281
308
|
add_enum "lnrpc.Peer.SyncType" do
|
282
309
|
value :UNKNOWN_SYNC, 0
|
283
310
|
value :ACTIVE_SYNC, 1
|
284
311
|
value :PASSIVE_SYNC, 2
|
312
|
+
value :PINNED_SYNC, 3
|
285
313
|
end
|
286
314
|
add_message "lnrpc.TimestampedError" do
|
287
315
|
optional :timestamp, :uint64, 1
|
@@ -354,6 +382,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
354
382
|
optional :target_conf, :int32, 3
|
355
383
|
optional :sat_per_byte, :int64, 4
|
356
384
|
optional :delivery_address, :string, 5
|
385
|
+
optional :sat_per_vbyte, :uint64, 6
|
357
386
|
end
|
358
387
|
add_message "lnrpc.CloseStatusUpdate" do
|
359
388
|
oneof :update do
|
@@ -371,6 +400,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
371
400
|
optional :psbt, :bytes, 3
|
372
401
|
end
|
373
402
|
add_message "lnrpc.OpenChannelRequest" do
|
403
|
+
optional :sat_per_vbyte, :uint64, 1
|
374
404
|
optional :node_pubkey, :bytes, 2
|
375
405
|
optional :node_pubkey_string, :string, 3
|
376
406
|
optional :local_funding_amount, :int64, 4
|
@@ -385,6 +415,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
385
415
|
optional :close_address, :string, 13
|
386
416
|
optional :funding_shim, :message, 14, "lnrpc.FundingShim"
|
387
417
|
optional :remote_max_value_in_flight_msat, :uint64, 15
|
418
|
+
optional :remote_max_htlcs, :uint32, 16
|
419
|
+
optional :max_local_csv, :uint32, 17
|
388
420
|
end
|
389
421
|
add_message "lnrpc.OpenStatusUpdate" do
|
390
422
|
optional :pending_chan_id, :bytes, 4
|
@@ -431,6 +463,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
431
463
|
add_message "lnrpc.FundingPsbtFinalize" do
|
432
464
|
optional :signed_psbt, :bytes, 1
|
433
465
|
optional :pending_chan_id, :bytes, 2
|
466
|
+
optional :final_raw_tx, :bytes, 3
|
434
467
|
end
|
435
468
|
add_message "lnrpc.FundingTransitionMsg" do
|
436
469
|
oneof :trigger do
|
@@ -528,18 +561,33 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
528
561
|
value :INACTIVE_CHANNEL, 3
|
529
562
|
value :PENDING_OPEN_CHANNEL, 4
|
530
563
|
end
|
564
|
+
add_message "lnrpc.WalletAccountBalance" do
|
565
|
+
optional :confirmed_balance, :int64, 1
|
566
|
+
optional :unconfirmed_balance, :int64, 2
|
567
|
+
end
|
531
568
|
add_message "lnrpc.WalletBalanceRequest" do
|
532
569
|
end
|
533
570
|
add_message "lnrpc.WalletBalanceResponse" do
|
534
571
|
optional :total_balance, :int64, 1
|
535
572
|
optional :confirmed_balance, :int64, 2
|
536
573
|
optional :unconfirmed_balance, :int64, 3
|
574
|
+
map :account_balance, :string, :message, 4, "lnrpc.WalletAccountBalance"
|
575
|
+
end
|
576
|
+
add_message "lnrpc.Amount" do
|
577
|
+
optional :sat, :uint64, 1
|
578
|
+
optional :msat, :uint64, 2
|
537
579
|
end
|
538
580
|
add_message "lnrpc.ChannelBalanceRequest" do
|
539
581
|
end
|
540
582
|
add_message "lnrpc.ChannelBalanceResponse" do
|
541
583
|
optional :balance, :int64, 1
|
542
584
|
optional :pending_open_balance, :int64, 2
|
585
|
+
optional :local_balance, :message, 3, "lnrpc.Amount"
|
586
|
+
optional :remote_balance, :message, 4, "lnrpc.Amount"
|
587
|
+
optional :unsettled_local_balance, :message, 5, "lnrpc.Amount"
|
588
|
+
optional :unsettled_remote_balance, :message, 6, "lnrpc.Amount"
|
589
|
+
optional :pending_open_local_balance, :message, 7, "lnrpc.Amount"
|
590
|
+
optional :pending_open_remote_balance, :message, 8, "lnrpc.Amount"
|
543
591
|
end
|
544
592
|
add_message "lnrpc.QueryRoutesRequest" do
|
545
593
|
optional :pub_key, :string, 1
|
@@ -582,12 +630,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
582
630
|
optional :pub_key, :string, 8
|
583
631
|
optional :tlv_payload, :bool, 9
|
584
632
|
optional :mpp_record, :message, 10, "lnrpc.MPPRecord"
|
633
|
+
optional :amp_record, :message, 12, "lnrpc.AMPRecord"
|
585
634
|
map :custom_records, :uint64, :bytes, 11
|
586
635
|
end
|
587
636
|
add_message "lnrpc.MPPRecord" do
|
588
637
|
optional :payment_addr, :bytes, 11
|
589
638
|
optional :total_amt_msat, :int64, 10
|
590
639
|
end
|
640
|
+
add_message "lnrpc.AMPRecord" do
|
641
|
+
optional :root_share, :bytes, 1
|
642
|
+
optional :set_id, :bytes, 2
|
643
|
+
optional :child_index, :uint32, 3
|
644
|
+
end
|
591
645
|
add_message "lnrpc.Route" do
|
592
646
|
optional :total_time_lock, :uint32, 1
|
593
647
|
optional :total_fees, :int64, 2
|
@@ -689,6 +743,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
689
743
|
optional :global_features, :bytes, 3
|
690
744
|
optional :alias, :string, 4
|
691
745
|
optional :color, :string, 5
|
746
|
+
repeated :node_addresses, :message, 7, "lnrpc.NodeAddress"
|
747
|
+
map :features, :uint32, :message, 6, "lnrpc.Feature"
|
692
748
|
end
|
693
749
|
add_message "lnrpc.ChannelEdgeUpdate" do
|
694
750
|
optional :chan_id, :uint64, 1
|
@@ -739,6 +795,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
739
795
|
repeated :htlcs, :message, 22, "lnrpc.InvoiceHTLC"
|
740
796
|
map :features, :uint32, :message, 24, "lnrpc.Feature"
|
741
797
|
optional :is_keysend, :bool, 25
|
798
|
+
optional :payment_addr, :bytes, 26
|
799
|
+
optional :is_amp, :bool, 27
|
742
800
|
end
|
743
801
|
add_enum "lnrpc.Invoice.InvoiceState" do
|
744
802
|
value :OPEN, 0
|
@@ -757,11 +815,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
757
815
|
optional :state, :enum, 8, "lnrpc.InvoiceHTLCState"
|
758
816
|
map :custom_records, :uint64, :bytes, 9
|
759
817
|
optional :mpp_total_amt_msat, :uint64, 10
|
818
|
+
optional :amp, :message, 11, "lnrpc.AMP"
|
819
|
+
end
|
820
|
+
add_message "lnrpc.AMP" do
|
821
|
+
optional :root_share, :bytes, 1
|
822
|
+
optional :set_id, :bytes, 2
|
823
|
+
optional :child_index, :uint32, 3
|
824
|
+
optional :hash, :bytes, 4
|
825
|
+
optional :preimage, :bytes, 5
|
760
826
|
end
|
761
827
|
add_message "lnrpc.AddInvoiceResponse" do
|
762
828
|
optional :r_hash, :bytes, 1
|
763
829
|
optional :payment_request, :string, 2
|
764
830
|
optional :add_index, :uint64, 16
|
831
|
+
optional :payment_addr, :bytes, 17
|
765
832
|
end
|
766
833
|
add_message "lnrpc.PaymentHash" do
|
767
834
|
optional :r_hash_str, :string, 1
|
@@ -806,6 +873,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
806
873
|
value :FAILED, 3
|
807
874
|
end
|
808
875
|
add_message "lnrpc.HTLCAttempt" do
|
876
|
+
optional :attempt_id, :uint64, 7
|
809
877
|
optional :status, :enum, 1, "lnrpc.HTLCAttempt.HTLCStatus"
|
810
878
|
optional :route, :message, 2, "lnrpc.Route"
|
811
879
|
optional :attempt_time_ns, :int64, 3
|
@@ -830,11 +898,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
830
898
|
optional :last_index_offset, :uint64, 3
|
831
899
|
end
|
832
900
|
add_message "lnrpc.DeleteAllPaymentsRequest" do
|
901
|
+
optional :failed_payments_only, :bool, 1
|
902
|
+
optional :failed_htlcs_only, :bool, 2
|
833
903
|
end
|
834
904
|
add_message "lnrpc.DeleteAllPaymentsResponse" do
|
835
905
|
end
|
836
906
|
add_message "lnrpc.AbandonChannelRequest" do
|
837
907
|
optional :channel_point, :message, 1, "lnrpc.ChannelPoint"
|
908
|
+
optional :pending_funding_shim_only, :bool, 2
|
838
909
|
end
|
839
910
|
add_message "lnrpc.AbandonChannelResponse" do
|
840
911
|
end
|
@@ -913,6 +984,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
913
984
|
optional :fee_msat, :uint64, 8
|
914
985
|
optional :amt_in_msat, :uint64, 9
|
915
986
|
optional :amt_out_msat, :uint64, 10
|
987
|
+
optional :timestamp_ns, :uint64, 11
|
916
988
|
end
|
917
989
|
add_message "lnrpc.ForwardingHistoryResponse" do
|
918
990
|
repeated :forwarding_events, :message, 1, "lnrpc.ForwardingEvent"
|
@@ -956,10 +1028,30 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
956
1028
|
end
|
957
1029
|
add_message "lnrpc.BakeMacaroonRequest" do
|
958
1030
|
repeated :permissions, :message, 1, "lnrpc.MacaroonPermission"
|
1031
|
+
optional :root_key_id, :uint64, 2
|
959
1032
|
end
|
960
1033
|
add_message "lnrpc.BakeMacaroonResponse" do
|
961
1034
|
optional :macaroon, :string, 1
|
962
1035
|
end
|
1036
|
+
add_message "lnrpc.ListMacaroonIDsRequest" do
|
1037
|
+
end
|
1038
|
+
add_message "lnrpc.ListMacaroonIDsResponse" do
|
1039
|
+
repeated :root_key_ids, :uint64, 1
|
1040
|
+
end
|
1041
|
+
add_message "lnrpc.DeleteMacaroonIDRequest" do
|
1042
|
+
optional :root_key_id, :uint64, 1
|
1043
|
+
end
|
1044
|
+
add_message "lnrpc.DeleteMacaroonIDResponse" do
|
1045
|
+
optional :deleted, :bool, 1
|
1046
|
+
end
|
1047
|
+
add_message "lnrpc.MacaroonPermissionList" do
|
1048
|
+
repeated :permissions, :message, 1, "lnrpc.MacaroonPermission"
|
1049
|
+
end
|
1050
|
+
add_message "lnrpc.ListPermissionsRequest" do
|
1051
|
+
end
|
1052
|
+
add_message "lnrpc.ListPermissionsResponse" do
|
1053
|
+
map :method_permissions, :string, :message, 1, "lnrpc.MacaroonPermissionList"
|
1054
|
+
end
|
963
1055
|
add_message "lnrpc.Failure" do
|
964
1056
|
optional :code, :enum, 1, "lnrpc.Failure.FailureCode"
|
965
1057
|
optional :channel_update, :message, 3, "lnrpc.ChannelUpdate"
|
@@ -995,6 +1087,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
995
1087
|
value :PERMANENT_CHANNEL_FAILURE, 21
|
996
1088
|
value :EXPIRY_TOO_FAR, 22
|
997
1089
|
value :MPP_TIMEOUT, 23
|
1090
|
+
value :INVALID_ONION_PAYLOAD, 24
|
998
1091
|
value :INTERNAL_FAILURE, 997
|
999
1092
|
value :UNKNOWN_FAILURE, 998
|
1000
1093
|
value :UNREADABLE_FAILURE, 999
|
@@ -1013,6 +1106,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
1013
1106
|
optional :htlc_maximum_msat, :uint64, 11
|
1014
1107
|
optional :extra_opaque_data, :bytes, 12
|
1015
1108
|
end
|
1109
|
+
add_message "lnrpc.MacaroonId" do
|
1110
|
+
optional :nonce, :bytes, 1
|
1111
|
+
optional :storageId, :bytes, 2
|
1112
|
+
repeated :ops, :message, 3, "lnrpc.Op"
|
1113
|
+
end
|
1114
|
+
add_message "lnrpc.Op" do
|
1115
|
+
optional :entity, :string, 1
|
1116
|
+
repeated :actions, :string, 2
|
1117
|
+
end
|
1016
1118
|
add_enum "lnrpc.AddressType" do
|
1017
1119
|
value :WITNESS_PUBKEY_HASH, 0
|
1018
1120
|
value :NESTED_PUBKEY_HASH, 1
|
@@ -1081,6 +1183,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
1081
1183
|
value :PAYMENT_ADDR_OPT, 15
|
1082
1184
|
value :MPP_REQ, 16
|
1083
1185
|
value :MPP_OPT, 17
|
1186
|
+
value :WUMBO_CHANNELS_REQ, 18
|
1187
|
+
value :WUMBO_CHANNELS_OPT, 19
|
1188
|
+
value :ANCHORS_REQ, 20
|
1189
|
+
value :ANCHORS_OPT, 21
|
1190
|
+
value :ANCHORS_ZERO_FEE_HTLC_REQ, 22
|
1191
|
+
value :ANCHORS_ZERO_FEE_HTLC_OPT, 23
|
1192
|
+
value :AMP_REQ, 30
|
1193
|
+
value :AMP_OPT, 31
|
1084
1194
|
end
|
1085
1195
|
end
|
1086
1196
|
end
|
@@ -1172,8 +1282,10 @@ module Lnrpc
|
|
1172
1282
|
ChannelEventSubscription = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEventSubscription").msgclass
|
1173
1283
|
ChannelEventUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEventUpdate").msgclass
|
1174
1284
|
ChannelEventUpdate::UpdateType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEventUpdate.UpdateType").enummodule
|
1285
|
+
WalletAccountBalance = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.WalletAccountBalance").msgclass
|
1175
1286
|
WalletBalanceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.WalletBalanceRequest").msgclass
|
1176
1287
|
WalletBalanceResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.WalletBalanceResponse").msgclass
|
1288
|
+
Amount = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Amount").msgclass
|
1177
1289
|
ChannelBalanceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBalanceRequest").msgclass
|
1178
1290
|
ChannelBalanceResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBalanceResponse").msgclass
|
1179
1291
|
QueryRoutesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.QueryRoutesRequest").msgclass
|
@@ -1182,6 +1294,7 @@ module Lnrpc
|
|
1182
1294
|
QueryRoutesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.QueryRoutesResponse").msgclass
|
1183
1295
|
Hop = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Hop").msgclass
|
1184
1296
|
MPPRecord = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.MPPRecord").msgclass
|
1297
|
+
AMPRecord = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AMPRecord").msgclass
|
1185
1298
|
Route = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Route").msgclass
|
1186
1299
|
NodeInfoRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NodeInfoRequest").msgclass
|
1187
1300
|
NodeInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NodeInfo").msgclass
|
@@ -1209,6 +1322,7 @@ module Lnrpc
|
|
1209
1322
|
Invoice = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Invoice").msgclass
|
1210
1323
|
Invoice::InvoiceState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Invoice.InvoiceState").enummodule
|
1211
1324
|
InvoiceHTLC = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.InvoiceHTLC").msgclass
|
1325
|
+
AMP = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AMP").msgclass
|
1212
1326
|
AddInvoiceResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AddInvoiceResponse").msgclass
|
1213
1327
|
PaymentHash = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PaymentHash").msgclass
|
1214
1328
|
ListInvoiceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListInvoiceRequest").msgclass
|
@@ -1250,9 +1364,18 @@ module Lnrpc
|
|
1250
1364
|
MacaroonPermission = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.MacaroonPermission").msgclass
|
1251
1365
|
BakeMacaroonRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.BakeMacaroonRequest").msgclass
|
1252
1366
|
BakeMacaroonResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.BakeMacaroonResponse").msgclass
|
1367
|
+
ListMacaroonIDsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListMacaroonIDsRequest").msgclass
|
1368
|
+
ListMacaroonIDsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListMacaroonIDsResponse").msgclass
|
1369
|
+
DeleteMacaroonIDRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DeleteMacaroonIDRequest").msgclass
|
1370
|
+
DeleteMacaroonIDResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DeleteMacaroonIDResponse").msgclass
|
1371
|
+
MacaroonPermissionList = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.MacaroonPermissionList").msgclass
|
1372
|
+
ListPermissionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListPermissionsRequest").msgclass
|
1373
|
+
ListPermissionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListPermissionsResponse").msgclass
|
1253
1374
|
Failure = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Failure").msgclass
|
1254
1375
|
Failure::FailureCode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Failure.FailureCode").enummodule
|
1255
1376
|
ChannelUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelUpdate").msgclass
|
1377
|
+
MacaroonId = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.MacaroonId").msgclass
|
1378
|
+
Op = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Op").msgclass
|
1256
1379
|
AddressType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AddressType").enummodule
|
1257
1380
|
CommitmentType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.CommitmentType").enummodule
|
1258
1381
|
Initiator = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Initiator").enummodule
|