lnd_ruby_sdk 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.codeclimate.yml +3 -0
- data/.gitattributes +2 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.rubocop.yml +8 -0
- data/.travis.yml +9 -0
- data/.yardopts +1 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +65 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/docs/Lightning.html +855 -0
- data/docs/Lightning/Invoice.html +448 -0
- data/docs/Lightning/Node.html +121 -0
- data/docs/Lightning/Stub.html +585 -0
- data/docs/LightningSDK.html +549 -0
- data/docs/_index.html +107 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.README.html +122 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +122 -0
- data/docs/js/app.js +303 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +91 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/lightning/invoices.rb +96 -0
- data/lib/lightning/node.rb +16 -0
- data/lib/lightning/stub.rb +62 -0
- data/lib/lightning/version.rb +5 -0
- data/lib/lnd_ruby_sdk.rb +24 -0
- data/lnd_ruby_sdk.gemspec +34 -0
- data/node_modules/.yarn-integrity +10 -0
- data/vendor/macaroon_interceptor.rb +18 -0
- data/vendor/rpc.proto +2367 -0
- data/vendor/rpc_pb.rb +864 -0
- data/vendor/rpc_services_pb.rb +375 -0
- metadata +206 -0
data/vendor/rpc_pb.rb
ADDED
@@ -0,0 +1,864 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: rpc.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
+
add_message "lnrpc.GenSeedRequest" do
|
9
|
+
optional :aezeed_passphrase, :bytes, 1
|
10
|
+
optional :seed_entropy, :bytes, 2
|
11
|
+
end
|
12
|
+
add_message "lnrpc.GenSeedResponse" do
|
13
|
+
repeated :cipher_seed_mnemonic, :string, 1
|
14
|
+
optional :enciphered_seed, :bytes, 2
|
15
|
+
end
|
16
|
+
add_message "lnrpc.InitWalletRequest" do
|
17
|
+
optional :wallet_password, :bytes, 1
|
18
|
+
repeated :cipher_seed_mnemonic, :string, 2
|
19
|
+
optional :aezeed_passphrase, :bytes, 3
|
20
|
+
optional :recovery_window, :int32, 4
|
21
|
+
optional :channel_backups, :message, 5, "lnrpc.ChanBackupSnapshot"
|
22
|
+
end
|
23
|
+
add_message "lnrpc.InitWalletResponse" do
|
24
|
+
end
|
25
|
+
add_message "lnrpc.UnlockWalletRequest" do
|
26
|
+
optional :wallet_password, :bytes, 1
|
27
|
+
optional :recovery_window, :int32, 2
|
28
|
+
optional :channel_backups, :message, 3, "lnrpc.ChanBackupSnapshot"
|
29
|
+
end
|
30
|
+
add_message "lnrpc.UnlockWalletResponse" do
|
31
|
+
end
|
32
|
+
add_message "lnrpc.ChangePasswordRequest" do
|
33
|
+
optional :current_password, :bytes, 1
|
34
|
+
optional :new_password, :bytes, 2
|
35
|
+
end
|
36
|
+
add_message "lnrpc.ChangePasswordResponse" do
|
37
|
+
end
|
38
|
+
add_message "lnrpc.Utxo" do
|
39
|
+
optional :type, :enum, 1, "lnrpc.AddressType"
|
40
|
+
optional :address, :string, 2
|
41
|
+
optional :amount_sat, :int64, 3
|
42
|
+
optional :pk_script, :string, 4
|
43
|
+
optional :outpoint, :message, 5, "lnrpc.OutPoint"
|
44
|
+
optional :confirmations, :int64, 6
|
45
|
+
end
|
46
|
+
add_message "lnrpc.Transaction" do
|
47
|
+
optional :tx_hash, :string, 1
|
48
|
+
optional :amount, :int64, 2
|
49
|
+
optional :num_confirmations, :int32, 3
|
50
|
+
optional :block_hash, :string, 4
|
51
|
+
optional :block_height, :int32, 5
|
52
|
+
optional :time_stamp, :int64, 6
|
53
|
+
optional :total_fees, :int64, 7
|
54
|
+
repeated :dest_addresses, :string, 8
|
55
|
+
end
|
56
|
+
add_message "lnrpc.GetTransactionsRequest" do
|
57
|
+
end
|
58
|
+
add_message "lnrpc.TransactionDetails" do
|
59
|
+
repeated :transactions, :message, 1, "lnrpc.Transaction"
|
60
|
+
end
|
61
|
+
add_message "lnrpc.FeeLimit" do
|
62
|
+
oneof :limit do
|
63
|
+
optional :fixed, :int64, 1
|
64
|
+
optional :percent, :int64, 2
|
65
|
+
end
|
66
|
+
end
|
67
|
+
add_message "lnrpc.SendRequest" do
|
68
|
+
optional :dest, :bytes, 1
|
69
|
+
optional :dest_string, :string, 2
|
70
|
+
optional :amt, :int64, 3
|
71
|
+
optional :payment_hash, :bytes, 4
|
72
|
+
optional :payment_hash_string, :string, 5
|
73
|
+
optional :payment_request, :string, 6
|
74
|
+
optional :final_cltv_delta, :int32, 7
|
75
|
+
optional :fee_limit, :message, 8, "lnrpc.FeeLimit"
|
76
|
+
optional :outgoing_chan_id, :uint64, 9
|
77
|
+
optional :cltv_limit, :uint32, 10
|
78
|
+
end
|
79
|
+
add_message "lnrpc.SendResponse" do
|
80
|
+
optional :payment_error, :string, 1
|
81
|
+
optional :payment_preimage, :bytes, 2
|
82
|
+
optional :payment_route, :message, 3, "lnrpc.Route"
|
83
|
+
optional :payment_hash, :bytes, 4
|
84
|
+
end
|
85
|
+
add_message "lnrpc.SendToRouteRequest" do
|
86
|
+
optional :payment_hash, :bytes, 1
|
87
|
+
optional :payment_hash_string, :string, 2
|
88
|
+
repeated :routes, :message, 3, "lnrpc.Route"
|
89
|
+
optional :route, :message, 4, "lnrpc.Route"
|
90
|
+
end
|
91
|
+
add_message "lnrpc.ChannelPoint" do
|
92
|
+
optional :output_index, :uint32, 3
|
93
|
+
oneof :funding_txid do
|
94
|
+
optional :funding_txid_bytes, :bytes, 1
|
95
|
+
optional :funding_txid_str, :string, 2
|
96
|
+
end
|
97
|
+
end
|
98
|
+
add_message "lnrpc.OutPoint" do
|
99
|
+
optional :txid_bytes, :bytes, 1
|
100
|
+
optional :txid_str, :string, 2
|
101
|
+
optional :output_index, :uint32, 3
|
102
|
+
end
|
103
|
+
add_message "lnrpc.LightningAddress" do
|
104
|
+
optional :pubkey, :string, 1
|
105
|
+
optional :host, :string, 2
|
106
|
+
end
|
107
|
+
add_message "lnrpc.EstimateFeeRequest" do
|
108
|
+
map :AddrToAmount, :string, :int64, 1
|
109
|
+
optional :target_conf, :int32, 2
|
110
|
+
end
|
111
|
+
add_message "lnrpc.EstimateFeeResponse" do
|
112
|
+
optional :fee_sat, :int64, 1
|
113
|
+
optional :feerate_sat_per_byte, :int64, 2
|
114
|
+
end
|
115
|
+
add_message "lnrpc.SendManyRequest" do
|
116
|
+
map :AddrToAmount, :string, :int64, 1
|
117
|
+
optional :target_conf, :int32, 3
|
118
|
+
optional :sat_per_byte, :int64, 5
|
119
|
+
end
|
120
|
+
add_message "lnrpc.SendManyResponse" do
|
121
|
+
optional :txid, :string, 1
|
122
|
+
end
|
123
|
+
add_message "lnrpc.SendCoinsRequest" do
|
124
|
+
optional :addr, :string, 1
|
125
|
+
optional :amount, :int64, 2
|
126
|
+
optional :target_conf, :int32, 3
|
127
|
+
optional :sat_per_byte, :int64, 5
|
128
|
+
optional :send_all, :bool, 6
|
129
|
+
end
|
130
|
+
add_message "lnrpc.SendCoinsResponse" do
|
131
|
+
optional :txid, :string, 1
|
132
|
+
end
|
133
|
+
add_message "lnrpc.ListUnspentRequest" do
|
134
|
+
optional :min_confs, :int32, 1
|
135
|
+
optional :max_confs, :int32, 2
|
136
|
+
end
|
137
|
+
add_message "lnrpc.ListUnspentResponse" do
|
138
|
+
repeated :utxos, :message, 1, "lnrpc.Utxo"
|
139
|
+
end
|
140
|
+
add_message "lnrpc.NewAddressRequest" do
|
141
|
+
optional :type, :enum, 1, "lnrpc.AddressType"
|
142
|
+
end
|
143
|
+
add_message "lnrpc.NewAddressResponse" do
|
144
|
+
optional :address, :string, 1
|
145
|
+
end
|
146
|
+
add_message "lnrpc.SignMessageRequest" do
|
147
|
+
optional :msg, :bytes, 1
|
148
|
+
end
|
149
|
+
add_message "lnrpc.SignMessageResponse" do
|
150
|
+
optional :signature, :string, 1
|
151
|
+
end
|
152
|
+
add_message "lnrpc.VerifyMessageRequest" do
|
153
|
+
optional :msg, :bytes, 1
|
154
|
+
optional :signature, :string, 2
|
155
|
+
end
|
156
|
+
add_message "lnrpc.VerifyMessageResponse" do
|
157
|
+
optional :valid, :bool, 1
|
158
|
+
optional :pubkey, :string, 2
|
159
|
+
end
|
160
|
+
add_message "lnrpc.ConnectPeerRequest" do
|
161
|
+
optional :addr, :message, 1, "lnrpc.LightningAddress"
|
162
|
+
optional :perm, :bool, 2
|
163
|
+
end
|
164
|
+
add_message "lnrpc.ConnectPeerResponse" do
|
165
|
+
end
|
166
|
+
add_message "lnrpc.DisconnectPeerRequest" do
|
167
|
+
optional :pub_key, :string, 1
|
168
|
+
end
|
169
|
+
add_message "lnrpc.DisconnectPeerResponse" do
|
170
|
+
end
|
171
|
+
add_message "lnrpc.HTLC" do
|
172
|
+
optional :incoming, :bool, 1
|
173
|
+
optional :amount, :int64, 2
|
174
|
+
optional :hash_lock, :bytes, 3
|
175
|
+
optional :expiration_height, :uint32, 4
|
176
|
+
end
|
177
|
+
add_message "lnrpc.Channel" do
|
178
|
+
optional :active, :bool, 1
|
179
|
+
optional :remote_pubkey, :string, 2
|
180
|
+
optional :channel_point, :string, 3
|
181
|
+
optional :chan_id, :uint64, 4
|
182
|
+
optional :capacity, :int64, 5
|
183
|
+
optional :local_balance, :int64, 6
|
184
|
+
optional :remote_balance, :int64, 7
|
185
|
+
optional :commit_fee, :int64, 8
|
186
|
+
optional :commit_weight, :int64, 9
|
187
|
+
optional :fee_per_kw, :int64, 10
|
188
|
+
optional :unsettled_balance, :int64, 11
|
189
|
+
optional :total_satoshis_sent, :int64, 12
|
190
|
+
optional :total_satoshis_received, :int64, 13
|
191
|
+
optional :num_updates, :uint64, 14
|
192
|
+
repeated :pending_htlcs, :message, 15, "lnrpc.HTLC"
|
193
|
+
optional :csv_delay, :uint32, 16
|
194
|
+
optional :private, :bool, 17
|
195
|
+
optional :initiator, :bool, 18
|
196
|
+
optional :chan_status_flags, :string, 19
|
197
|
+
end
|
198
|
+
add_message "lnrpc.ListChannelsRequest" do
|
199
|
+
optional :active_only, :bool, 1
|
200
|
+
optional :inactive_only, :bool, 2
|
201
|
+
optional :public_only, :bool, 3
|
202
|
+
optional :private_only, :bool, 4
|
203
|
+
end
|
204
|
+
add_message "lnrpc.ListChannelsResponse" do
|
205
|
+
repeated :channels, :message, 11, "lnrpc.Channel"
|
206
|
+
end
|
207
|
+
add_message "lnrpc.ChannelCloseSummary" do
|
208
|
+
optional :channel_point, :string, 1
|
209
|
+
optional :chan_id, :uint64, 2
|
210
|
+
optional :chain_hash, :string, 3
|
211
|
+
optional :closing_tx_hash, :string, 4
|
212
|
+
optional :remote_pubkey, :string, 5
|
213
|
+
optional :capacity, :int64, 6
|
214
|
+
optional :close_height, :uint32, 7
|
215
|
+
optional :settled_balance, :int64, 8
|
216
|
+
optional :time_locked_balance, :int64, 9
|
217
|
+
optional :close_type, :enum, 10, "lnrpc.ChannelCloseSummary.ClosureType"
|
218
|
+
end
|
219
|
+
add_enum "lnrpc.ChannelCloseSummary.ClosureType" do
|
220
|
+
value :COOPERATIVE_CLOSE, 0
|
221
|
+
value :LOCAL_FORCE_CLOSE, 1
|
222
|
+
value :REMOTE_FORCE_CLOSE, 2
|
223
|
+
value :BREACH_CLOSE, 3
|
224
|
+
value :FUNDING_CANCELED, 4
|
225
|
+
value :ABANDONED, 5
|
226
|
+
end
|
227
|
+
add_message "lnrpc.ClosedChannelsRequest" do
|
228
|
+
optional :cooperative, :bool, 1
|
229
|
+
optional :local_force, :bool, 2
|
230
|
+
optional :remote_force, :bool, 3
|
231
|
+
optional :breach, :bool, 4
|
232
|
+
optional :funding_canceled, :bool, 5
|
233
|
+
optional :abandoned, :bool, 6
|
234
|
+
end
|
235
|
+
add_message "lnrpc.ClosedChannelsResponse" do
|
236
|
+
repeated :channels, :message, 1, "lnrpc.ChannelCloseSummary"
|
237
|
+
end
|
238
|
+
add_message "lnrpc.Peer" do
|
239
|
+
optional :pub_key, :string, 1
|
240
|
+
optional :address, :string, 3
|
241
|
+
optional :bytes_sent, :uint64, 4
|
242
|
+
optional :bytes_recv, :uint64, 5
|
243
|
+
optional :sat_sent, :int64, 6
|
244
|
+
optional :sat_recv, :int64, 7
|
245
|
+
optional :inbound, :bool, 8
|
246
|
+
optional :ping_time, :int64, 9
|
247
|
+
optional :sync_type, :enum, 10, "lnrpc.Peer.SyncType"
|
248
|
+
end
|
249
|
+
add_enum "lnrpc.Peer.SyncType" do
|
250
|
+
value :UNKNOWN_SYNC, 0
|
251
|
+
value :ACTIVE_SYNC, 1
|
252
|
+
value :PASSIVE_SYNC, 2
|
253
|
+
end
|
254
|
+
add_message "lnrpc.ListPeersRequest" do
|
255
|
+
end
|
256
|
+
add_message "lnrpc.ListPeersResponse" do
|
257
|
+
repeated :peers, :message, 1, "lnrpc.Peer"
|
258
|
+
end
|
259
|
+
add_message "lnrpc.GetInfoRequest" do
|
260
|
+
end
|
261
|
+
add_message "lnrpc.GetInfoResponse" do
|
262
|
+
optional :identity_pubkey, :string, 1
|
263
|
+
optional :alias, :string, 2
|
264
|
+
optional :num_pending_channels, :uint32, 3
|
265
|
+
optional :num_active_channels, :uint32, 4
|
266
|
+
optional :num_peers, :uint32, 5
|
267
|
+
optional :block_height, :uint32, 6
|
268
|
+
optional :block_hash, :string, 8
|
269
|
+
optional :synced_to_chain, :bool, 9
|
270
|
+
optional :testnet, :bool, 10
|
271
|
+
repeated :uris, :string, 12
|
272
|
+
optional :best_header_timestamp, :int64, 13
|
273
|
+
optional :version, :string, 14
|
274
|
+
optional :num_inactive_channels, :uint32, 15
|
275
|
+
repeated :chains, :message, 16, "lnrpc.Chain"
|
276
|
+
end
|
277
|
+
add_message "lnrpc.Chain" do
|
278
|
+
optional :chain, :string, 1
|
279
|
+
optional :network, :string, 2
|
280
|
+
end
|
281
|
+
add_message "lnrpc.ConfirmationUpdate" do
|
282
|
+
optional :block_sha, :bytes, 1
|
283
|
+
optional :block_height, :int32, 2
|
284
|
+
optional :num_confs_left, :uint32, 3
|
285
|
+
end
|
286
|
+
add_message "lnrpc.ChannelOpenUpdate" do
|
287
|
+
optional :channel_point, :message, 1, "lnrpc.ChannelPoint"
|
288
|
+
end
|
289
|
+
add_message "lnrpc.ChannelCloseUpdate" do
|
290
|
+
optional :closing_txid, :bytes, 1
|
291
|
+
optional :success, :bool, 2
|
292
|
+
end
|
293
|
+
add_message "lnrpc.CloseChannelRequest" do
|
294
|
+
optional :channel_point, :message, 1, "lnrpc.ChannelPoint"
|
295
|
+
optional :force, :bool, 2
|
296
|
+
optional :target_conf, :int32, 3
|
297
|
+
optional :sat_per_byte, :int64, 4
|
298
|
+
end
|
299
|
+
add_message "lnrpc.CloseStatusUpdate" do
|
300
|
+
oneof :update do
|
301
|
+
optional :close_pending, :message, 1, "lnrpc.PendingUpdate"
|
302
|
+
optional :chan_close, :message, 3, "lnrpc.ChannelCloseUpdate"
|
303
|
+
end
|
304
|
+
end
|
305
|
+
add_message "lnrpc.PendingUpdate" do
|
306
|
+
optional :txid, :bytes, 1
|
307
|
+
optional :output_index, :uint32, 2
|
308
|
+
end
|
309
|
+
add_message "lnrpc.OpenChannelRequest" do
|
310
|
+
optional :node_pubkey, :bytes, 2
|
311
|
+
optional :node_pubkey_string, :string, 3
|
312
|
+
optional :local_funding_amount, :int64, 4
|
313
|
+
optional :push_sat, :int64, 5
|
314
|
+
optional :target_conf, :int32, 6
|
315
|
+
optional :sat_per_byte, :int64, 7
|
316
|
+
optional :private, :bool, 8
|
317
|
+
optional :min_htlc_msat, :int64, 9
|
318
|
+
optional :remote_csv_delay, :uint32, 10
|
319
|
+
optional :min_confs, :int32, 11
|
320
|
+
optional :spend_unconfirmed, :bool, 12
|
321
|
+
end
|
322
|
+
add_message "lnrpc.OpenStatusUpdate" do
|
323
|
+
oneof :update do
|
324
|
+
optional :chan_pending, :message, 1, "lnrpc.PendingUpdate"
|
325
|
+
optional :chan_open, :message, 3, "lnrpc.ChannelOpenUpdate"
|
326
|
+
end
|
327
|
+
end
|
328
|
+
add_message "lnrpc.PendingHTLC" do
|
329
|
+
optional :incoming, :bool, 1
|
330
|
+
optional :amount, :int64, 2
|
331
|
+
optional :outpoint, :string, 3
|
332
|
+
optional :maturity_height, :uint32, 4
|
333
|
+
optional :blocks_til_maturity, :int32, 5
|
334
|
+
optional :stage, :uint32, 6
|
335
|
+
end
|
336
|
+
add_message "lnrpc.PendingChannelsRequest" do
|
337
|
+
end
|
338
|
+
add_message "lnrpc.PendingChannelsResponse" do
|
339
|
+
optional :total_limbo_balance, :int64, 1
|
340
|
+
repeated :pending_open_channels, :message, 2, "lnrpc.PendingChannelsResponse.PendingOpenChannel"
|
341
|
+
repeated :pending_closing_channels, :message, 3, "lnrpc.PendingChannelsResponse.ClosedChannel"
|
342
|
+
repeated :pending_force_closing_channels, :message, 4, "lnrpc.PendingChannelsResponse.ForceClosedChannel"
|
343
|
+
repeated :waiting_close_channels, :message, 5, "lnrpc.PendingChannelsResponse.WaitingCloseChannel"
|
344
|
+
end
|
345
|
+
add_message "lnrpc.PendingChannelsResponse.PendingChannel" do
|
346
|
+
optional :remote_node_pub, :string, 1
|
347
|
+
optional :channel_point, :string, 2
|
348
|
+
optional :capacity, :int64, 3
|
349
|
+
optional :local_balance, :int64, 4
|
350
|
+
optional :remote_balance, :int64, 5
|
351
|
+
end
|
352
|
+
add_message "lnrpc.PendingChannelsResponse.PendingOpenChannel" do
|
353
|
+
optional :channel, :message, 1, "lnrpc.PendingChannelsResponse.PendingChannel"
|
354
|
+
optional :confirmation_height, :uint32, 2
|
355
|
+
optional :commit_fee, :int64, 4
|
356
|
+
optional :commit_weight, :int64, 5
|
357
|
+
optional :fee_per_kw, :int64, 6
|
358
|
+
end
|
359
|
+
add_message "lnrpc.PendingChannelsResponse.WaitingCloseChannel" do
|
360
|
+
optional :channel, :message, 1, "lnrpc.PendingChannelsResponse.PendingChannel"
|
361
|
+
optional :limbo_balance, :int64, 2
|
362
|
+
end
|
363
|
+
add_message "lnrpc.PendingChannelsResponse.ClosedChannel" do
|
364
|
+
optional :channel, :message, 1, "lnrpc.PendingChannelsResponse.PendingChannel"
|
365
|
+
optional :closing_txid, :string, 2
|
366
|
+
end
|
367
|
+
add_message "lnrpc.PendingChannelsResponse.ForceClosedChannel" do
|
368
|
+
optional :channel, :message, 1, "lnrpc.PendingChannelsResponse.PendingChannel"
|
369
|
+
optional :closing_txid, :string, 2
|
370
|
+
optional :limbo_balance, :int64, 3
|
371
|
+
optional :maturity_height, :uint32, 4
|
372
|
+
optional :blocks_til_maturity, :int32, 5
|
373
|
+
optional :recovered_balance, :int64, 6
|
374
|
+
repeated :pending_htlcs, :message, 8, "lnrpc.PendingHTLC"
|
375
|
+
end
|
376
|
+
add_message "lnrpc.ChannelEventSubscription" do
|
377
|
+
end
|
378
|
+
add_message "lnrpc.ChannelEventUpdate" do
|
379
|
+
optional :type, :enum, 5, "lnrpc.ChannelEventUpdate.UpdateType"
|
380
|
+
oneof :channel do
|
381
|
+
optional :open_channel, :message, 1, "lnrpc.Channel"
|
382
|
+
optional :closed_channel, :message, 2, "lnrpc.ChannelCloseSummary"
|
383
|
+
optional :active_channel, :message, 3, "lnrpc.ChannelPoint"
|
384
|
+
optional :inactive_channel, :message, 4, "lnrpc.ChannelPoint"
|
385
|
+
end
|
386
|
+
end
|
387
|
+
add_enum "lnrpc.ChannelEventUpdate.UpdateType" do
|
388
|
+
value :OPEN_CHANNEL, 0
|
389
|
+
value :CLOSED_CHANNEL, 1
|
390
|
+
value :ACTIVE_CHANNEL, 2
|
391
|
+
value :INACTIVE_CHANNEL, 3
|
392
|
+
end
|
393
|
+
add_message "lnrpc.WalletBalanceRequest" do
|
394
|
+
end
|
395
|
+
add_message "lnrpc.WalletBalanceResponse" do
|
396
|
+
optional :total_balance, :int64, 1
|
397
|
+
optional :confirmed_balance, :int64, 2
|
398
|
+
optional :unconfirmed_balance, :int64, 3
|
399
|
+
end
|
400
|
+
add_message "lnrpc.ChannelBalanceRequest" do
|
401
|
+
end
|
402
|
+
add_message "lnrpc.ChannelBalanceResponse" do
|
403
|
+
optional :balance, :int64, 1
|
404
|
+
optional :pending_open_balance, :int64, 2
|
405
|
+
end
|
406
|
+
add_message "lnrpc.QueryRoutesRequest" do
|
407
|
+
optional :pub_key, :string, 1
|
408
|
+
optional :amt, :int64, 2
|
409
|
+
optional :num_routes, :int32, 3
|
410
|
+
optional :final_cltv_delta, :int32, 4
|
411
|
+
optional :fee_limit, :message, 5, "lnrpc.FeeLimit"
|
412
|
+
repeated :ignored_nodes, :bytes, 6
|
413
|
+
repeated :ignored_edges, :message, 7, "lnrpc.EdgeLocator"
|
414
|
+
optional :source_pub_key, :string, 8
|
415
|
+
end
|
416
|
+
add_message "lnrpc.EdgeLocator" do
|
417
|
+
optional :channel_id, :uint64, 1
|
418
|
+
optional :direction_reverse, :bool, 2
|
419
|
+
end
|
420
|
+
add_message "lnrpc.QueryRoutesResponse" do
|
421
|
+
repeated :routes, :message, 1, "lnrpc.Route"
|
422
|
+
end
|
423
|
+
add_message "lnrpc.Hop" do
|
424
|
+
optional :chan_id, :uint64, 1
|
425
|
+
optional :chan_capacity, :int64, 2
|
426
|
+
optional :amt_to_forward, :int64, 3
|
427
|
+
optional :fee, :int64, 4
|
428
|
+
optional :expiry, :uint32, 5
|
429
|
+
optional :amt_to_forward_msat, :int64, 6
|
430
|
+
optional :fee_msat, :int64, 7
|
431
|
+
optional :pub_key, :string, 8
|
432
|
+
end
|
433
|
+
add_message "lnrpc.Route" do
|
434
|
+
optional :total_time_lock, :uint32, 1
|
435
|
+
optional :total_fees, :int64, 2
|
436
|
+
optional :total_amt, :int64, 3
|
437
|
+
repeated :hops, :message, 4, "lnrpc.Hop"
|
438
|
+
optional :total_fees_msat, :int64, 5
|
439
|
+
optional :total_amt_msat, :int64, 6
|
440
|
+
end
|
441
|
+
add_message "lnrpc.NodeInfoRequest" do
|
442
|
+
optional :pub_key, :string, 1
|
443
|
+
end
|
444
|
+
add_message "lnrpc.NodeInfo" do
|
445
|
+
optional :node, :message, 1, "lnrpc.LightningNode"
|
446
|
+
optional :num_channels, :uint32, 2
|
447
|
+
optional :total_capacity, :int64, 3
|
448
|
+
end
|
449
|
+
add_message "lnrpc.LightningNode" do
|
450
|
+
optional :last_update, :uint32, 1
|
451
|
+
optional :pub_key, :string, 2
|
452
|
+
optional :alias, :string, 3
|
453
|
+
repeated :addresses, :message, 4, "lnrpc.NodeAddress"
|
454
|
+
optional :color, :string, 5
|
455
|
+
end
|
456
|
+
add_message "lnrpc.NodeAddress" do
|
457
|
+
optional :network, :string, 1
|
458
|
+
optional :addr, :string, 2
|
459
|
+
end
|
460
|
+
add_message "lnrpc.RoutingPolicy" do
|
461
|
+
optional :time_lock_delta, :uint32, 1
|
462
|
+
optional :min_htlc, :int64, 2
|
463
|
+
optional :fee_base_msat, :int64, 3
|
464
|
+
optional :fee_rate_milli_msat, :int64, 4
|
465
|
+
optional :disabled, :bool, 5
|
466
|
+
optional :max_htlc_msat, :uint64, 6
|
467
|
+
end
|
468
|
+
add_message "lnrpc.ChannelEdge" do
|
469
|
+
optional :channel_id, :uint64, 1
|
470
|
+
optional :chan_point, :string, 2
|
471
|
+
optional :last_update, :uint32, 3
|
472
|
+
optional :node1_pub, :string, 4
|
473
|
+
optional :node2_pub, :string, 5
|
474
|
+
optional :capacity, :int64, 6
|
475
|
+
optional :node1_policy, :message, 7, "lnrpc.RoutingPolicy"
|
476
|
+
optional :node2_policy, :message, 8, "lnrpc.RoutingPolicy"
|
477
|
+
end
|
478
|
+
add_message "lnrpc.ChannelGraphRequest" do
|
479
|
+
optional :include_unannounced, :bool, 1
|
480
|
+
end
|
481
|
+
add_message "lnrpc.ChannelGraph" do
|
482
|
+
repeated :nodes, :message, 1, "lnrpc.LightningNode"
|
483
|
+
repeated :edges, :message, 2, "lnrpc.ChannelEdge"
|
484
|
+
end
|
485
|
+
add_message "lnrpc.ChanInfoRequest" do
|
486
|
+
optional :chan_id, :uint64, 1
|
487
|
+
end
|
488
|
+
add_message "lnrpc.NetworkInfoRequest" do
|
489
|
+
end
|
490
|
+
add_message "lnrpc.NetworkInfo" do
|
491
|
+
optional :graph_diameter, :uint32, 1
|
492
|
+
optional :avg_out_degree, :double, 2
|
493
|
+
optional :max_out_degree, :uint32, 3
|
494
|
+
optional :num_nodes, :uint32, 4
|
495
|
+
optional :num_channels, :uint32, 5
|
496
|
+
optional :total_network_capacity, :int64, 6
|
497
|
+
optional :avg_channel_size, :double, 7
|
498
|
+
optional :min_channel_size, :int64, 8
|
499
|
+
optional :max_channel_size, :int64, 9
|
500
|
+
optional :median_channel_size_sat, :int64, 10
|
501
|
+
end
|
502
|
+
add_message "lnrpc.StopRequest" do
|
503
|
+
end
|
504
|
+
add_message "lnrpc.StopResponse" do
|
505
|
+
end
|
506
|
+
add_message "lnrpc.GraphTopologySubscription" do
|
507
|
+
end
|
508
|
+
add_message "lnrpc.GraphTopologyUpdate" do
|
509
|
+
repeated :node_updates, :message, 1, "lnrpc.NodeUpdate"
|
510
|
+
repeated :channel_updates, :message, 2, "lnrpc.ChannelEdgeUpdate"
|
511
|
+
repeated :closed_chans, :message, 3, "lnrpc.ClosedChannelUpdate"
|
512
|
+
end
|
513
|
+
add_message "lnrpc.NodeUpdate" do
|
514
|
+
repeated :addresses, :string, 1
|
515
|
+
optional :identity_key, :string, 2
|
516
|
+
optional :global_features, :bytes, 3
|
517
|
+
optional :alias, :string, 4
|
518
|
+
end
|
519
|
+
add_message "lnrpc.ChannelEdgeUpdate" do
|
520
|
+
optional :chan_id, :uint64, 1
|
521
|
+
optional :chan_point, :message, 2, "lnrpc.ChannelPoint"
|
522
|
+
optional :capacity, :int64, 3
|
523
|
+
optional :routing_policy, :message, 4, "lnrpc.RoutingPolicy"
|
524
|
+
optional :advertising_node, :string, 5
|
525
|
+
optional :connecting_node, :string, 6
|
526
|
+
end
|
527
|
+
add_message "lnrpc.ClosedChannelUpdate" do
|
528
|
+
optional :chan_id, :uint64, 1
|
529
|
+
optional :capacity, :int64, 2
|
530
|
+
optional :closed_height, :uint32, 3
|
531
|
+
optional :chan_point, :message, 4, "lnrpc.ChannelPoint"
|
532
|
+
end
|
533
|
+
add_message "lnrpc.HopHint" do
|
534
|
+
optional :node_id, :string, 1
|
535
|
+
optional :chan_id, :uint64, 2
|
536
|
+
optional :fee_base_msat, :uint32, 3
|
537
|
+
optional :fee_proportional_millionths, :uint32, 4
|
538
|
+
optional :cltv_expiry_delta, :uint32, 5
|
539
|
+
end
|
540
|
+
add_message "lnrpc.RouteHint" do
|
541
|
+
repeated :hop_hints, :message, 1, "lnrpc.HopHint"
|
542
|
+
end
|
543
|
+
add_message "lnrpc.Invoice" do
|
544
|
+
optional :memo, :string, 1
|
545
|
+
optional :receipt, :bytes, 2
|
546
|
+
optional :r_preimage, :bytes, 3
|
547
|
+
optional :r_hash, :bytes, 4
|
548
|
+
optional :value, :int64, 5
|
549
|
+
optional :settled, :bool, 6
|
550
|
+
optional :creation_date, :int64, 7
|
551
|
+
optional :settle_date, :int64, 8
|
552
|
+
optional :payment_request, :string, 9
|
553
|
+
optional :description_hash, :bytes, 10
|
554
|
+
optional :expiry, :int64, 11
|
555
|
+
optional :fallback_addr, :string, 12
|
556
|
+
optional :cltv_expiry, :uint64, 13
|
557
|
+
repeated :route_hints, :message, 14, "lnrpc.RouteHint"
|
558
|
+
optional :private, :bool, 15
|
559
|
+
optional :add_index, :uint64, 16
|
560
|
+
optional :settle_index, :uint64, 17
|
561
|
+
optional :amt_paid, :int64, 18
|
562
|
+
optional :amt_paid_sat, :int64, 19
|
563
|
+
optional :amt_paid_msat, :int64, 20
|
564
|
+
optional :state, :enum, 21, "lnrpc.Invoice.InvoiceState"
|
565
|
+
end
|
566
|
+
add_enum "lnrpc.Invoice.InvoiceState" do
|
567
|
+
value :OPEN, 0
|
568
|
+
value :SETTLED, 1
|
569
|
+
value :CANCELED, 2
|
570
|
+
value :ACCEPTED, 3
|
571
|
+
end
|
572
|
+
add_message "lnrpc.AddInvoiceResponse" do
|
573
|
+
optional :r_hash, :bytes, 1
|
574
|
+
optional :payment_request, :string, 2
|
575
|
+
optional :add_index, :uint64, 16
|
576
|
+
end
|
577
|
+
add_message "lnrpc.PaymentHash" do
|
578
|
+
optional :r_hash_str, :string, 1
|
579
|
+
optional :r_hash, :bytes, 2
|
580
|
+
end
|
581
|
+
add_message "lnrpc.ListInvoiceRequest" do
|
582
|
+
optional :pending_only, :bool, 1
|
583
|
+
optional :index_offset, :uint64, 4
|
584
|
+
optional :num_max_invoices, :uint64, 5
|
585
|
+
optional :reversed, :bool, 6
|
586
|
+
end
|
587
|
+
add_message "lnrpc.ListInvoiceResponse" do
|
588
|
+
repeated :invoices, :message, 1, "lnrpc.Invoice"
|
589
|
+
optional :last_index_offset, :uint64, 2
|
590
|
+
optional :first_index_offset, :uint64, 3
|
591
|
+
end
|
592
|
+
add_message "lnrpc.InvoiceSubscription" do
|
593
|
+
optional :add_index, :uint64, 1
|
594
|
+
optional :settle_index, :uint64, 2
|
595
|
+
end
|
596
|
+
add_message "lnrpc.Payment" do
|
597
|
+
optional :payment_hash, :string, 1
|
598
|
+
optional :value, :int64, 2
|
599
|
+
optional :creation_date, :int64, 3
|
600
|
+
repeated :path, :string, 4
|
601
|
+
optional :fee, :int64, 5
|
602
|
+
optional :payment_preimage, :string, 6
|
603
|
+
optional :value_sat, :int64, 7
|
604
|
+
optional :value_msat, :int64, 8
|
605
|
+
end
|
606
|
+
add_message "lnrpc.ListPaymentsRequest" do
|
607
|
+
end
|
608
|
+
add_message "lnrpc.ListPaymentsResponse" do
|
609
|
+
repeated :payments, :message, 1, "lnrpc.Payment"
|
610
|
+
end
|
611
|
+
add_message "lnrpc.DeleteAllPaymentsRequest" do
|
612
|
+
end
|
613
|
+
add_message "lnrpc.DeleteAllPaymentsResponse" do
|
614
|
+
end
|
615
|
+
add_message "lnrpc.AbandonChannelRequest" do
|
616
|
+
optional :channel_point, :message, 1, "lnrpc.ChannelPoint"
|
617
|
+
end
|
618
|
+
add_message "lnrpc.AbandonChannelResponse" do
|
619
|
+
end
|
620
|
+
add_message "lnrpc.DebugLevelRequest" do
|
621
|
+
optional :show, :bool, 1
|
622
|
+
optional :level_spec, :string, 2
|
623
|
+
end
|
624
|
+
add_message "lnrpc.DebugLevelResponse" do
|
625
|
+
optional :sub_systems, :string, 1
|
626
|
+
end
|
627
|
+
add_message "lnrpc.PayReqString" do
|
628
|
+
optional :pay_req, :string, 1
|
629
|
+
end
|
630
|
+
add_message "lnrpc.PayReq" do
|
631
|
+
optional :destination, :string, 1
|
632
|
+
optional :payment_hash, :string, 2
|
633
|
+
optional :num_satoshis, :int64, 3
|
634
|
+
optional :timestamp, :int64, 4
|
635
|
+
optional :expiry, :int64, 5
|
636
|
+
optional :description, :string, 6
|
637
|
+
optional :description_hash, :string, 7
|
638
|
+
optional :fallback_addr, :string, 8
|
639
|
+
optional :cltv_expiry, :int64, 9
|
640
|
+
repeated :route_hints, :message, 10, "lnrpc.RouteHint"
|
641
|
+
end
|
642
|
+
add_message "lnrpc.FeeReportRequest" do
|
643
|
+
end
|
644
|
+
add_message "lnrpc.ChannelFeeReport" do
|
645
|
+
optional :chan_point, :string, 1
|
646
|
+
optional :base_fee_msat, :int64, 2
|
647
|
+
optional :fee_per_mil, :int64, 3
|
648
|
+
optional :fee_rate, :double, 4
|
649
|
+
end
|
650
|
+
add_message "lnrpc.FeeReportResponse" do
|
651
|
+
repeated :channel_fees, :message, 1, "lnrpc.ChannelFeeReport"
|
652
|
+
optional :day_fee_sum, :uint64, 2
|
653
|
+
optional :week_fee_sum, :uint64, 3
|
654
|
+
optional :month_fee_sum, :uint64, 4
|
655
|
+
end
|
656
|
+
add_message "lnrpc.PolicyUpdateRequest" do
|
657
|
+
optional :base_fee_msat, :int64, 3
|
658
|
+
optional :fee_rate, :double, 4
|
659
|
+
optional :time_lock_delta, :uint32, 5
|
660
|
+
oneof :scope do
|
661
|
+
optional :global, :bool, 1
|
662
|
+
optional :chan_point, :message, 2, "lnrpc.ChannelPoint"
|
663
|
+
end
|
664
|
+
end
|
665
|
+
add_message "lnrpc.PolicyUpdateResponse" do
|
666
|
+
end
|
667
|
+
add_message "lnrpc.ForwardingHistoryRequest" do
|
668
|
+
optional :start_time, :uint64, 1
|
669
|
+
optional :end_time, :uint64, 2
|
670
|
+
optional :index_offset, :uint32, 3
|
671
|
+
optional :num_max_events, :uint32, 4
|
672
|
+
end
|
673
|
+
add_message "lnrpc.ForwardingEvent" do
|
674
|
+
optional :timestamp, :uint64, 1
|
675
|
+
optional :chan_id_in, :uint64, 2
|
676
|
+
optional :chan_id_out, :uint64, 4
|
677
|
+
optional :amt_in, :uint64, 5
|
678
|
+
optional :amt_out, :uint64, 6
|
679
|
+
optional :fee, :uint64, 7
|
680
|
+
optional :fee_msat, :uint64, 8
|
681
|
+
end
|
682
|
+
add_message "lnrpc.ForwardingHistoryResponse" do
|
683
|
+
repeated :forwarding_events, :message, 1, "lnrpc.ForwardingEvent"
|
684
|
+
optional :last_offset_index, :uint32, 2
|
685
|
+
end
|
686
|
+
add_message "lnrpc.ExportChannelBackupRequest" do
|
687
|
+
optional :chan_point, :message, 1, "lnrpc.ChannelPoint"
|
688
|
+
end
|
689
|
+
add_message "lnrpc.ChannelBackup" do
|
690
|
+
optional :chan_point, :message, 1, "lnrpc.ChannelPoint"
|
691
|
+
optional :chan_backup, :bytes, 2
|
692
|
+
end
|
693
|
+
add_message "lnrpc.MultiChanBackup" do
|
694
|
+
repeated :chan_points, :message, 1, "lnrpc.ChannelPoint"
|
695
|
+
optional :multi_chan_backup, :bytes, 2
|
696
|
+
end
|
697
|
+
add_message "lnrpc.ChanBackupExportRequest" do
|
698
|
+
end
|
699
|
+
add_message "lnrpc.ChanBackupSnapshot" do
|
700
|
+
optional :single_chan_backups, :message, 1, "lnrpc.ChannelBackups"
|
701
|
+
optional :multi_chan_backup, :message, 2, "lnrpc.MultiChanBackup"
|
702
|
+
end
|
703
|
+
add_message "lnrpc.ChannelBackups" do
|
704
|
+
repeated :chan_backups, :message, 1, "lnrpc.ChannelBackup"
|
705
|
+
end
|
706
|
+
add_message "lnrpc.RestoreChanBackupRequest" do
|
707
|
+
oneof :backup do
|
708
|
+
optional :chan_backups, :message, 1, "lnrpc.ChannelBackups"
|
709
|
+
optional :multi_chan_backup, :bytes, 2
|
710
|
+
end
|
711
|
+
end
|
712
|
+
add_message "lnrpc.RestoreBackupResponse" do
|
713
|
+
end
|
714
|
+
add_message "lnrpc.ChannelBackupSubscription" do
|
715
|
+
end
|
716
|
+
add_message "lnrpc.VerifyChanBackupResponse" do
|
717
|
+
end
|
718
|
+
add_enum "lnrpc.AddressType" do
|
719
|
+
value :WITNESS_PUBKEY_HASH, 0
|
720
|
+
value :NESTED_PUBKEY_HASH, 1
|
721
|
+
value :UNUSED_WITNESS_PUBKEY_HASH, 2
|
722
|
+
value :UNUSED_NESTED_PUBKEY_HASH, 3
|
723
|
+
end
|
724
|
+
end
|
725
|
+
|
726
|
+
module Lnrpc
|
727
|
+
GenSeedRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GenSeedRequest").msgclass
|
728
|
+
GenSeedResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GenSeedResponse").msgclass
|
729
|
+
InitWalletRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.InitWalletRequest").msgclass
|
730
|
+
InitWalletResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.InitWalletResponse").msgclass
|
731
|
+
UnlockWalletRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.UnlockWalletRequest").msgclass
|
732
|
+
UnlockWalletResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.UnlockWalletResponse").msgclass
|
733
|
+
ChangePasswordRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChangePasswordRequest").msgclass
|
734
|
+
ChangePasswordResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChangePasswordResponse").msgclass
|
735
|
+
Utxo = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Utxo").msgclass
|
736
|
+
Transaction = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Transaction").msgclass
|
737
|
+
GetTransactionsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GetTransactionsRequest").msgclass
|
738
|
+
TransactionDetails = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.TransactionDetails").msgclass
|
739
|
+
FeeLimit = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.FeeLimit").msgclass
|
740
|
+
SendRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendRequest").msgclass
|
741
|
+
SendResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendResponse").msgclass
|
742
|
+
SendToRouteRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendToRouteRequest").msgclass
|
743
|
+
ChannelPoint = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelPoint").msgclass
|
744
|
+
OutPoint = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.OutPoint").msgclass
|
745
|
+
LightningAddress = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.LightningAddress").msgclass
|
746
|
+
EstimateFeeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.EstimateFeeRequest").msgclass
|
747
|
+
EstimateFeeResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.EstimateFeeResponse").msgclass
|
748
|
+
SendManyRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendManyRequest").msgclass
|
749
|
+
SendManyResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendManyResponse").msgclass
|
750
|
+
SendCoinsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendCoinsRequest").msgclass
|
751
|
+
SendCoinsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SendCoinsResponse").msgclass
|
752
|
+
ListUnspentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListUnspentRequest").msgclass
|
753
|
+
ListUnspentResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListUnspentResponse").msgclass
|
754
|
+
NewAddressRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NewAddressRequest").msgclass
|
755
|
+
NewAddressResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NewAddressResponse").msgclass
|
756
|
+
SignMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SignMessageRequest").msgclass
|
757
|
+
SignMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.SignMessageResponse").msgclass
|
758
|
+
VerifyMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.VerifyMessageRequest").msgclass
|
759
|
+
VerifyMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.VerifyMessageResponse").msgclass
|
760
|
+
ConnectPeerRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ConnectPeerRequest").msgclass
|
761
|
+
ConnectPeerResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ConnectPeerResponse").msgclass
|
762
|
+
DisconnectPeerRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DisconnectPeerRequest").msgclass
|
763
|
+
DisconnectPeerResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DisconnectPeerResponse").msgclass
|
764
|
+
HTLC = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.HTLC").msgclass
|
765
|
+
Channel = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Channel").msgclass
|
766
|
+
ListChannelsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListChannelsRequest").msgclass
|
767
|
+
ListChannelsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListChannelsResponse").msgclass
|
768
|
+
ChannelCloseSummary = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelCloseSummary").msgclass
|
769
|
+
ChannelCloseSummary::ClosureType = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelCloseSummary.ClosureType").enummodule
|
770
|
+
ClosedChannelsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ClosedChannelsRequest").msgclass
|
771
|
+
ClosedChannelsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ClosedChannelsResponse").msgclass
|
772
|
+
Peer = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Peer").msgclass
|
773
|
+
Peer::SyncType = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Peer.SyncType").enummodule
|
774
|
+
ListPeersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListPeersRequest").msgclass
|
775
|
+
ListPeersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListPeersResponse").msgclass
|
776
|
+
GetInfoRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GetInfoRequest").msgclass
|
777
|
+
GetInfoResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GetInfoResponse").msgclass
|
778
|
+
Chain = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Chain").msgclass
|
779
|
+
ConfirmationUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ConfirmationUpdate").msgclass
|
780
|
+
ChannelOpenUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelOpenUpdate").msgclass
|
781
|
+
ChannelCloseUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelCloseUpdate").msgclass
|
782
|
+
CloseChannelRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.CloseChannelRequest").msgclass
|
783
|
+
CloseStatusUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.CloseStatusUpdate").msgclass
|
784
|
+
PendingUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingUpdate").msgclass
|
785
|
+
OpenChannelRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.OpenChannelRequest").msgclass
|
786
|
+
OpenStatusUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.OpenStatusUpdate").msgclass
|
787
|
+
PendingHTLC = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingHTLC").msgclass
|
788
|
+
PendingChannelsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsRequest").msgclass
|
789
|
+
PendingChannelsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsResponse").msgclass
|
790
|
+
PendingChannelsResponse::PendingChannel = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsResponse.PendingChannel").msgclass
|
791
|
+
PendingChannelsResponse::PendingOpenChannel = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsResponse.PendingOpenChannel").msgclass
|
792
|
+
PendingChannelsResponse::WaitingCloseChannel = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsResponse.WaitingCloseChannel").msgclass
|
793
|
+
PendingChannelsResponse::ClosedChannel = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsResponse.ClosedChannel").msgclass
|
794
|
+
PendingChannelsResponse::ForceClosedChannel = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PendingChannelsResponse.ForceClosedChannel").msgclass
|
795
|
+
ChannelEventSubscription = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEventSubscription").msgclass
|
796
|
+
ChannelEventUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEventUpdate").msgclass
|
797
|
+
ChannelEventUpdate::UpdateType = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEventUpdate.UpdateType").enummodule
|
798
|
+
WalletBalanceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.WalletBalanceRequest").msgclass
|
799
|
+
WalletBalanceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.WalletBalanceResponse").msgclass
|
800
|
+
ChannelBalanceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBalanceRequest").msgclass
|
801
|
+
ChannelBalanceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBalanceResponse").msgclass
|
802
|
+
QueryRoutesRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.QueryRoutesRequest").msgclass
|
803
|
+
EdgeLocator = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.EdgeLocator").msgclass
|
804
|
+
QueryRoutesResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.QueryRoutesResponse").msgclass
|
805
|
+
Hop = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Hop").msgclass
|
806
|
+
Route = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Route").msgclass
|
807
|
+
NodeInfoRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NodeInfoRequest").msgclass
|
808
|
+
NodeInfo = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NodeInfo").msgclass
|
809
|
+
LightningNode = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.LightningNode").msgclass
|
810
|
+
NodeAddress = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NodeAddress").msgclass
|
811
|
+
RoutingPolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.RoutingPolicy").msgclass
|
812
|
+
ChannelEdge = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEdge").msgclass
|
813
|
+
ChannelGraphRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelGraphRequest").msgclass
|
814
|
+
ChannelGraph = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelGraph").msgclass
|
815
|
+
ChanInfoRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChanInfoRequest").msgclass
|
816
|
+
NetworkInfoRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NetworkInfoRequest").msgclass
|
817
|
+
NetworkInfo = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NetworkInfo").msgclass
|
818
|
+
StopRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.StopRequest").msgclass
|
819
|
+
StopResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.StopResponse").msgclass
|
820
|
+
GraphTopologySubscription = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GraphTopologySubscription").msgclass
|
821
|
+
GraphTopologyUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.GraphTopologyUpdate").msgclass
|
822
|
+
NodeUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.NodeUpdate").msgclass
|
823
|
+
ChannelEdgeUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelEdgeUpdate").msgclass
|
824
|
+
ClosedChannelUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ClosedChannelUpdate").msgclass
|
825
|
+
HopHint = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.HopHint").msgclass
|
826
|
+
RouteHint = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.RouteHint").msgclass
|
827
|
+
Invoice = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Invoice").msgclass
|
828
|
+
Invoice::InvoiceState = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Invoice.InvoiceState").enummodule
|
829
|
+
AddInvoiceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AddInvoiceResponse").msgclass
|
830
|
+
PaymentHash = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PaymentHash").msgclass
|
831
|
+
ListInvoiceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListInvoiceRequest").msgclass
|
832
|
+
ListInvoiceResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListInvoiceResponse").msgclass
|
833
|
+
InvoiceSubscription = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.InvoiceSubscription").msgclass
|
834
|
+
Payment = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.Payment").msgclass
|
835
|
+
ListPaymentsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListPaymentsRequest").msgclass
|
836
|
+
ListPaymentsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ListPaymentsResponse").msgclass
|
837
|
+
DeleteAllPaymentsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DeleteAllPaymentsRequest").msgclass
|
838
|
+
DeleteAllPaymentsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DeleteAllPaymentsResponse").msgclass
|
839
|
+
AbandonChannelRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AbandonChannelRequest").msgclass
|
840
|
+
AbandonChannelResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AbandonChannelResponse").msgclass
|
841
|
+
DebugLevelRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DebugLevelRequest").msgclass
|
842
|
+
DebugLevelResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.DebugLevelResponse").msgclass
|
843
|
+
PayReqString = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PayReqString").msgclass
|
844
|
+
PayReq = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PayReq").msgclass
|
845
|
+
FeeReportRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.FeeReportRequest").msgclass
|
846
|
+
ChannelFeeReport = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelFeeReport").msgclass
|
847
|
+
FeeReportResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.FeeReportResponse").msgclass
|
848
|
+
PolicyUpdateRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PolicyUpdateRequest").msgclass
|
849
|
+
PolicyUpdateResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.PolicyUpdateResponse").msgclass
|
850
|
+
ForwardingHistoryRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ForwardingHistoryRequest").msgclass
|
851
|
+
ForwardingEvent = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ForwardingEvent").msgclass
|
852
|
+
ForwardingHistoryResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ForwardingHistoryResponse").msgclass
|
853
|
+
ExportChannelBackupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ExportChannelBackupRequest").msgclass
|
854
|
+
ChannelBackup = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBackup").msgclass
|
855
|
+
MultiChanBackup = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.MultiChanBackup").msgclass
|
856
|
+
ChanBackupExportRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChanBackupExportRequest").msgclass
|
857
|
+
ChanBackupSnapshot = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChanBackupSnapshot").msgclass
|
858
|
+
ChannelBackups = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBackups").msgclass
|
859
|
+
RestoreChanBackupRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.RestoreChanBackupRequest").msgclass
|
860
|
+
RestoreBackupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.RestoreBackupResponse").msgclass
|
861
|
+
ChannelBackupSubscription = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.ChannelBackupSubscription").msgclass
|
862
|
+
VerifyChanBackupResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.VerifyChanBackupResponse").msgclass
|
863
|
+
AddressType = Google::Protobuf::DescriptorPool.generated_pool.lookup("lnrpc.AddressType").enummodule
|
864
|
+
end
|