mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-03-26 17:51:48 +01:00
#3181 updated proto
This commit is contained in:
parent
242b33bc20
commit
514eb25e60
@ -42,6 +42,7 @@ from . import walletunlocker_pb2 as walletunlocker__pb2
|
||||
Make sure the first lines (ignore comments) of the `walletunlocker_pb2.py` look like the following for python3 compatibility:
|
||||
```
|
||||
from google.protobuf import descriptor as _descriptor
|
||||
from google.protobuf import descriptor_pool as _descriptor_pool
|
||||
from google.protobuf import message as _message
|
||||
from google.protobuf import reflection as _reflection
|
||||
from google.protobuf import symbol_database as _symbol_database
|
||||
|
@ -620,6 +620,38 @@ message Utxo {
|
||||
int64 confirmations = 6;
|
||||
}
|
||||
|
||||
enum OutputScriptType {
|
||||
SCRIPT_TYPE_PUBKEY_HASH = 0;
|
||||
SCRIPT_TYPE_SCRIPT_HASH = 1;
|
||||
SCRIPT_TYPE_WITNESS_V0_PUBKEY_HASH = 2;
|
||||
SCRIPT_TYPE_WITNESS_V0_SCRIPT_HASH = 3;
|
||||
SCRIPT_TYPE_PUBKEY = 4;
|
||||
SCRIPT_TYPE_MULTISIG = 5;
|
||||
SCRIPT_TYPE_NULLDATA = 6;
|
||||
SCRIPT_TYPE_NON_STANDARD = 7;
|
||||
SCRIPT_TYPE_WITNESS_UNKNOWN = 8;
|
||||
}
|
||||
|
||||
message OutputDetail {
|
||||
// The type of the output
|
||||
OutputScriptType output_type = 1;
|
||||
|
||||
// The address
|
||||
string address = 2;
|
||||
|
||||
// The pkscript in hex
|
||||
string pk_script = 3;
|
||||
|
||||
// The output index used in the raw transaction
|
||||
int64 output_index = 4;
|
||||
|
||||
// The value of the output coin in satoshis
|
||||
int64 amount = 5;
|
||||
|
||||
// Denotes if the output is controlled by the internal wallet
|
||||
bool is_our_address = 6;
|
||||
}
|
||||
|
||||
message Transaction {
|
||||
// The transaction hash
|
||||
string tx_hash = 1;
|
||||
@ -642,15 +674,23 @@ message Transaction {
|
||||
// Fees paid for this transaction
|
||||
int64 total_fees = 7;
|
||||
|
||||
// Addresses that received funds for this transaction
|
||||
repeated string dest_addresses = 8;
|
||||
// Addresses that received funds for this transaction. Deprecated as it is
|
||||
// now incorporated in the output_details field.
|
||||
repeated string dest_addresses = 8 [deprecated = true];
|
||||
|
||||
// Outputs that received funds for this transaction
|
||||
repeated OutputDetail output_details = 11;
|
||||
|
||||
// The raw transaction hex.
|
||||
string raw_tx_hex = 9;
|
||||
|
||||
// A label that was optionally set on transaction broadcast.
|
||||
string label = 10;
|
||||
|
||||
// PreviousOutpoints/Inputs of this transaction.
|
||||
repeated PreviousOutPoint previous_outpoints = 12;
|
||||
}
|
||||
|
||||
message GetTransactionsRequest {
|
||||
/*
|
||||
The height from which to list transactions, inclusive. If this value is
|
||||
@ -753,7 +793,8 @@ message SendRequest {
|
||||
The maximum number of satoshis that will be paid as a fee of the payment.
|
||||
This value can be represented either as a percentage of the amount being
|
||||
sent, or as a fixed amount of the maximum fee the user is willing the pay to
|
||||
send the payment.
|
||||
send the payment. If not specified, lnd will use a default value of 100%
|
||||
fees for small amounts (<=1k sat) or 5% fees for larger amounts.
|
||||
*/
|
||||
FeeLimit fee_limit = 8;
|
||||
|
||||
@ -970,12 +1011,21 @@ message OutPoint {
|
||||
uint32 output_index = 3;
|
||||
}
|
||||
|
||||
message PreviousOutPoint {
|
||||
// The outpoint in format txid:n.
|
||||
string outpoint = 1;
|
||||
|
||||
// Denotes if the outpoint is controlled by the internal wallet.
|
||||
// The flag will only detect p2wkh, np2wkh and p2tr inputs as its own.
|
||||
bool is_our_output = 2;
|
||||
}
|
||||
|
||||
message LightningAddress {
|
||||
// The identity pubkey of the Lightning node
|
||||
// The identity pubkey of the Lightning node.
|
||||
string pubkey = 1;
|
||||
|
||||
// The network location of the lightning node, e.g. `69.69.69.69:1337` or
|
||||
// `localhost:10011`
|
||||
// `localhost:10011`.
|
||||
string host = 2;
|
||||
}
|
||||
|
||||
@ -1101,12 +1151,15 @@ message ListUnspentResponse {
|
||||
|
||||
- `p2wkh`: Pay to witness key hash (`WITNESS_PUBKEY_HASH` = 0)
|
||||
- `np2wkh`: Pay to nested witness key hash (`NESTED_PUBKEY_HASH` = 1)
|
||||
- `p2tr`: Pay to taproot pubkey (`TAPROOT_PUBKEY` = 4)
|
||||
*/
|
||||
enum AddressType {
|
||||
WITNESS_PUBKEY_HASH = 0;
|
||||
NESTED_PUBKEY_HASH = 1;
|
||||
UNUSED_WITNESS_PUBKEY_HASH = 2;
|
||||
UNUSED_NESTED_PUBKEY_HASH = 3;
|
||||
TAPROOT_PUBKEY = 4;
|
||||
UNUSED_TAPROOT_PUBKEY = 5;
|
||||
}
|
||||
|
||||
message NewAddressRequest {
|
||||
@ -1161,11 +1214,15 @@ message VerifyMessageResponse {
|
||||
}
|
||||
|
||||
message ConnectPeerRequest {
|
||||
// Lightning address of the peer, in the format `<pubkey>@host`
|
||||
/*
|
||||
Lightning address of the peer to connect to.
|
||||
*/
|
||||
LightningAddress addr = 1;
|
||||
|
||||
/* If set, the daemon will attempt to persistently connect to the target
|
||||
* peer. Otherwise, the call will be synchronous. */
|
||||
/*
|
||||
If set, the daemon will attempt to persistently connect to the target
|
||||
peer. Otherwise, the call will be synchronous.
|
||||
*/
|
||||
bool perm = 2;
|
||||
|
||||
/*
|
||||
@ -1769,6 +1826,11 @@ message GetInfoResponse {
|
||||
announcements and invoices.
|
||||
*/
|
||||
map<uint32, Feature> features = 19;
|
||||
|
||||
/*
|
||||
Indicates whether the HTLC interceptor API is in always-on mode.
|
||||
*/
|
||||
bool require_htlc_interceptor = 21;
|
||||
}
|
||||
|
||||
message GetRecoveryInfoRequest {
|
||||
@ -2315,15 +2377,15 @@ message PendingChannelsResponse {
|
||||
|
||||
// A set of flags showing the current state of the channel.
|
||||
string chan_status_flags = 11;
|
||||
|
||||
// Whether this channel is advertised to the network or not.
|
||||
bool private = 12;
|
||||
}
|
||||
|
||||
message PendingOpenChannel {
|
||||
// The pending channel
|
||||
PendingChannel channel = 1;
|
||||
|
||||
// The height at which this channel will be confirmed
|
||||
uint32 confirmation_height = 2;
|
||||
|
||||
/*
|
||||
The amount calculated to be paid in fees for the current set of
|
||||
commitment transactions. The fee amount is persisted with the channel
|
||||
@ -2342,6 +2404,9 @@ message PendingChannelsResponse {
|
||||
transaction. This value can later be updated once the channel is open.
|
||||
*/
|
||||
int64 fee_per_kw = 6;
|
||||
|
||||
// Previously used for confirmation_height. Do not reuse.
|
||||
reserved 2;
|
||||
}
|
||||
|
||||
message WaitingCloseChannel {
|
||||
@ -2356,6 +2421,9 @@ message PendingChannelsResponse {
|
||||
this point.
|
||||
*/
|
||||
Commitments commitments = 3;
|
||||
|
||||
// The transaction id of the closing transaction
|
||||
string closing_txid = 4;
|
||||
}
|
||||
|
||||
message Commitments {
|
||||
@ -2495,6 +2563,13 @@ message WalletBalanceResponse {
|
||||
// The unconfirmed balance of a wallet(with 0 confirmations)
|
||||
int64 unconfirmed_balance = 3;
|
||||
|
||||
// The total amount of wallet UTXOs held in outputs that are locked for
|
||||
// other usage.
|
||||
int64 locked_balance = 5;
|
||||
|
||||
// The amount of reserve required.
|
||||
int64 reserved_balance_anchor_chan = 6;
|
||||
|
||||
// A mapping of each wallet account's name to its balance.
|
||||
map<string, WalletAccountBalance> account_balance = 4;
|
||||
}
|
||||
@ -2568,7 +2643,8 @@ message QueryRoutesRequest {
|
||||
The maximum number of satoshis that will be paid as a fee of the payment.
|
||||
This value can be represented either as a percentage of the amount being
|
||||
sent, or as a fixed amount of the maximum fee the user is willing the pay to
|
||||
send the payment.
|
||||
send the payment. If not specified, lnd will use a default value of 100%
|
||||
fees for small amounts (<=1k sat) or 5% fees for larger amounts.
|
||||
*/
|
||||
FeeLimit fee_limit = 5;
|
||||
|
||||
@ -2641,6 +2717,12 @@ message QueryRoutesRequest {
|
||||
fallback.
|
||||
*/
|
||||
repeated lnrpc.FeatureBit dest_features = 17;
|
||||
|
||||
/*
|
||||
The time preference for this payment. Set to -1 to optimize for fees
|
||||
only, to 1 to optimize for reliability only or a value inbetween for a mix.
|
||||
*/
|
||||
double time_pref = 18;
|
||||
}
|
||||
|
||||
message NodePair {
|
||||
@ -2709,7 +2791,7 @@ message Hop {
|
||||
TLV format. Note that if any custom tlv_records below are specified, then
|
||||
this field MUST be set to true for them to be encoded properly.
|
||||
*/
|
||||
bool tlv_payload = 9;
|
||||
bool tlv_payload = 9 [deprecated = true];
|
||||
|
||||
/*
|
||||
An optional TLV record that signals the use of an MPP payment. If present,
|
||||
@ -2735,6 +2817,9 @@ message Hop {
|
||||
to drop off at each hop within the onion.
|
||||
*/
|
||||
map<uint64, bytes> custom_records = 11;
|
||||
|
||||
// The payment metadata to send along with the payment to the payee.
|
||||
bytes metadata = 13;
|
||||
}
|
||||
|
||||
message MPPRecord {
|
||||
@ -3106,6 +3191,7 @@ message Invoice {
|
||||
/*
|
||||
The hash of the preimage. When using REST, this field must be encoded as
|
||||
base64.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
bytes r_hash = 4;
|
||||
|
||||
@ -3126,16 +3212,23 @@ message Invoice {
|
||||
// Whether this invoice has been fulfilled
|
||||
bool settled = 6 [deprecated = true];
|
||||
|
||||
// When this invoice was created
|
||||
/*
|
||||
When this invoice was created.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
int64 creation_date = 7;
|
||||
|
||||
// When this invoice was settled
|
||||
/*
|
||||
When this invoice was settled.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
int64 settle_date = 8;
|
||||
|
||||
/*
|
||||
A bare-bones invoice for a payment within the Lightning Network. With the
|
||||
details of the invoice, the sender has all the data necessary to send a
|
||||
payment to the recipient.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
string payment_request = 9;
|
||||
|
||||
@ -3170,6 +3263,7 @@ message Invoice {
|
||||
this index making it monotonically increasing. Callers to the
|
||||
SubscribeInvoices call can use this to instantly get notified of all added
|
||||
invoices with an add_index greater than this one.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
uint64 add_index = 16;
|
||||
|
||||
@ -3178,6 +3272,7 @@ message Invoice {
|
||||
increment this index making it monotonically increasing. Callers to the
|
||||
SubscribeInvoices call can use this to instantly get notified of all
|
||||
settled invoices with an settle_index greater than this one.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
uint64 settle_index = 17;
|
||||
|
||||
@ -3191,6 +3286,7 @@ message Invoice {
|
||||
was ultimately accepted. Additionally, it's possible that the sender paid
|
||||
MORE that was specified in the original invoice. So we'll record that here
|
||||
as well.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
int64 amt_paid_sat = 19;
|
||||
|
||||
@ -3201,6 +3297,7 @@ message Invoice {
|
||||
amount was ultimately accepted. Additionally, it's possible that the sender
|
||||
paid MORE that was specified in the original invoice. So we'll record that
|
||||
here as well.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
int64 amt_paid_msat = 20;
|
||||
|
||||
@ -3213,18 +3310,26 @@ message Invoice {
|
||||
|
||||
/*
|
||||
The state the invoice is in.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
InvoiceState state = 21;
|
||||
|
||||
// List of HTLCs paying to this invoice [EXPERIMENTAL].
|
||||
/*
|
||||
List of HTLCs paying to this invoice [EXPERIMENTAL].
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
repeated InvoiceHTLC htlcs = 22;
|
||||
|
||||
// List of features advertised on the invoice.
|
||||
/*
|
||||
List of features advertised on the invoice.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
map<uint32, Feature> features = 24;
|
||||
|
||||
/*
|
||||
Indicates if this invoice was a spontaneous payment that arrived via keysend
|
||||
[EXPERIMENTAL].
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
bool is_keysend = 25;
|
||||
|
||||
@ -3232,6 +3337,7 @@ message Invoice {
|
||||
The payment address of this invoice. This value will be used in MPP
|
||||
payments, and also for newer invoices that always require the MPP payload
|
||||
for added end-to-end security.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
bytes payment_addr = 26;
|
||||
|
||||
@ -3247,6 +3353,7 @@ message Invoice {
|
||||
given set ID. This field is always populated for AMP invoices, and can be
|
||||
used along side LookupInvoice to obtain the HTLC information related to a
|
||||
given sub-invoice.
|
||||
Note: Output only, don't specify for creating an invoice.
|
||||
*/
|
||||
map<string, AMPInvoiceState> amp_invoice_state = 28;
|
||||
}
|
||||
@ -3568,6 +3675,14 @@ message ListPaymentsRequest {
|
||||
of the returned payments is always oldest first (ascending index order).
|
||||
*/
|
||||
bool reversed = 4;
|
||||
|
||||
/*
|
||||
If set, all payments (complete and incomplete, independent of the
|
||||
max_payments parameter) will be counted. Note that setting this to true will
|
||||
increase the run time of the call significantly on systems that have a lot
|
||||
of payments, as all of them have to be iterated through to be counted.
|
||||
*/
|
||||
bool count_total_payments = 5;
|
||||
}
|
||||
|
||||
message ListPaymentsResponse {
|
||||
@ -3585,6 +3700,14 @@ message ListPaymentsResponse {
|
||||
as the index_offset to continue seeking forwards in the next request.
|
||||
*/
|
||||
uint64 last_index_offset = 3;
|
||||
|
||||
/*
|
||||
Will only be set if count_total_payments in the request was set. Represents
|
||||
the total number of payments (complete and incomplete, independent of the
|
||||
number of payments requested in the query) currently present in the payments
|
||||
database.
|
||||
*/
|
||||
uint64 total_num_payments = 4;
|
||||
}
|
||||
|
||||
message DeletePaymentRequest {
|
||||
@ -3745,6 +3868,9 @@ message PolicyUpdateRequest {
|
||||
// goes up to 6 decimal places, so 1e-6.
|
||||
double fee_rate = 4;
|
||||
|
||||
// The effective fee rate in micro-satoshis (parts per million).
|
||||
uint32 fee_rate_ppm = 9;
|
||||
|
||||
// The required timelock delta for HTLCs forwarded over the channel.
|
||||
uint32 time_lock_delta = 5;
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -3,6 +3,7 @@
|
||||
# source: walletunlocker.proto
|
||||
"""Generated protocol buffer code."""
|
||||
from google.protobuf import descriptor as _descriptor
|
||||
from google.protobuf import descriptor_pool as _descriptor_pool
|
||||
from google.protobuf import message as _message
|
||||
from google.protobuf import reflection as _reflection
|
||||
from google.protobuf import symbol_database as _symbol_database
|
||||
@ -14,494 +15,20 @@ _sym_db = _symbol_database.Default()
|
||||
from . import lightning_pb2 as lightning__pb2
|
||||
|
||||
|
||||
DESCRIPTOR = _descriptor.FileDescriptor(
|
||||
name='walletunlocker.proto',
|
||||
package='lnrpc',
|
||||
syntax='proto3',
|
||||
serialized_options=b'Z%github.com/lightningnetwork/lnd/lnrpc',
|
||||
create_key=_descriptor._internal_create_key,
|
||||
serialized_pb=b'\n\x14walletunlocker.proto\x12\x05lnrpc\x1a\x0flightning.proto\"A\n\x0eGenSeedRequest\x12\x19\n\x11\x61\x65zeed_passphrase\x18\x01 \x01(\x0c\x12\x14\n\x0cseed_entropy\x18\x02 \x01(\x0c\"H\n\x0fGenSeedResponse\x12\x1c\n\x14\x63ipher_seed_mnemonic\x18\x01 \x03(\t\x12\x17\n\x0f\x65nciphered_seed\x18\x02 \x01(\x0c\"\xbd\x02\n\x11InitWalletRequest\x12\x17\n\x0fwallet_password\x18\x01 \x01(\x0c\x12\x1c\n\x14\x63ipher_seed_mnemonic\x18\x02 \x03(\t\x12\x19\n\x11\x61\x65zeed_passphrase\x18\x03 \x01(\x0c\x12\x17\n\x0frecovery_window\x18\x04 \x01(\x05\x12\x32\n\x0f\x63hannel_backups\x18\x05 \x01(\x0b\x32\x19.lnrpc.ChanBackupSnapshot\x12\x16\n\x0estateless_init\x18\x06 \x01(\x08\x12\x1b\n\x13\x65xtended_master_key\x18\x07 \x01(\t\x12.\n&extended_master_key_birthday_timestamp\x18\x08 \x01(\x04\x12$\n\nwatch_only\x18\t \x01(\x0b\x32\x10.lnrpc.WatchOnly\",\n\x12InitWalletResponse\x12\x16\n\x0e\x61\x64min_macaroon\x18\x01 \x01(\x0c\"}\n\tWatchOnly\x12%\n\x1dmaster_key_birthday_timestamp\x18\x01 \x01(\x04\x12\x1e\n\x16master_key_fingerprint\x18\x02 \x01(\x0c\x12)\n\x08\x61\x63\x63ounts\x18\x03 \x03(\x0b\x32\x17.lnrpc.WatchOnlyAccount\"U\n\x10WatchOnlyAccount\x12\x0f\n\x07purpose\x18\x01 \x01(\r\x12\x11\n\tcoin_type\x18\x02 \x01(\r\x12\x0f\n\x07\x61\x63\x63ount\x18\x03 \x01(\r\x12\x0c\n\x04xpub\x18\x04 \x01(\t\"\x93\x01\n\x13UnlockWalletRequest\x12\x17\n\x0fwallet_password\x18\x01 \x01(\x0c\x12\x17\n\x0frecovery_window\x18\x02 \x01(\x05\x12\x32\n\x0f\x63hannel_backups\x18\x03 \x01(\x0b\x32\x19.lnrpc.ChanBackupSnapshot\x12\x16\n\x0estateless_init\x18\x04 \x01(\x08\"\x16\n\x14UnlockWalletResponse\"~\n\x15\x43hangePasswordRequest\x12\x18\n\x10\x63urrent_password\x18\x01 \x01(\x0c\x12\x14\n\x0cnew_password\x18\x02 \x01(\x0c\x12\x16\n\x0estateless_init\x18\x03 \x01(\x08\x12\x1d\n\x15new_macaroon_root_key\x18\x04 \x01(\x08\"0\n\x16\x43hangePasswordResponse\x12\x16\n\x0e\x61\x64min_macaroon\x18\x01 \x01(\x0c\x32\xa5\x02\n\x0eWalletUnlocker\x12\x38\n\x07GenSeed\x12\x15.lnrpc.GenSeedRequest\x1a\x16.lnrpc.GenSeedResponse\x12\x41\n\nInitWallet\x12\x18.lnrpc.InitWalletRequest\x1a\x19.lnrpc.InitWalletResponse\x12G\n\x0cUnlockWallet\x12\x1a.lnrpc.UnlockWalletRequest\x1a\x1b.lnrpc.UnlockWalletResponse\x12M\n\x0e\x43hangePassword\x12\x1c.lnrpc.ChangePasswordRequest\x1a\x1d.lnrpc.ChangePasswordResponseB\'Z%github.com/lightningnetwork/lnd/lnrpcb\x06proto3'
|
||||
,
|
||||
dependencies=[lightning__pb2.DESCRIPTOR,])
|
||||
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x14walletunlocker.proto\x12\x05lnrpc\x1a\x0flightning.proto\"A\n\x0eGenSeedRequest\x12\x19\n\x11\x61\x65zeed_passphrase\x18\x01 \x01(\x0c\x12\x14\n\x0cseed_entropy\x18\x02 \x01(\x0c\"H\n\x0fGenSeedResponse\x12\x1c\n\x14\x63ipher_seed_mnemonic\x18\x01 \x03(\t\x12\x17\n\x0f\x65nciphered_seed\x18\x02 \x01(\x0c\"\xbd\x02\n\x11InitWalletRequest\x12\x17\n\x0fwallet_password\x18\x01 \x01(\x0c\x12\x1c\n\x14\x63ipher_seed_mnemonic\x18\x02 \x03(\t\x12\x19\n\x11\x61\x65zeed_passphrase\x18\x03 \x01(\x0c\x12\x17\n\x0frecovery_window\x18\x04 \x01(\x05\x12\x32\n\x0f\x63hannel_backups\x18\x05 \x01(\x0b\x32\x19.lnrpc.ChanBackupSnapshot\x12\x16\n\x0estateless_init\x18\x06 \x01(\x08\x12\x1b\n\x13\x65xtended_master_key\x18\x07 \x01(\t\x12.\n&extended_master_key_birthday_timestamp\x18\x08 \x01(\x04\x12$\n\nwatch_only\x18\t \x01(\x0b\x32\x10.lnrpc.WatchOnly\",\n\x12InitWalletResponse\x12\x16\n\x0e\x61\x64min_macaroon\x18\x01 \x01(\x0c\"}\n\tWatchOnly\x12%\n\x1dmaster_key_birthday_timestamp\x18\x01 \x01(\x04\x12\x1e\n\x16master_key_fingerprint\x18\x02 \x01(\x0c\x12)\n\x08\x61\x63\x63ounts\x18\x03 \x03(\x0b\x32\x17.lnrpc.WatchOnlyAccount\"U\n\x10WatchOnlyAccount\x12\x0f\n\x07purpose\x18\x01 \x01(\r\x12\x11\n\tcoin_type\x18\x02 \x01(\r\x12\x0f\n\x07\x61\x63\x63ount\x18\x03 \x01(\r\x12\x0c\n\x04xpub\x18\x04 \x01(\t\"\x93\x01\n\x13UnlockWalletRequest\x12\x17\n\x0fwallet_password\x18\x01 \x01(\x0c\x12\x17\n\x0frecovery_window\x18\x02 \x01(\x05\x12\x32\n\x0f\x63hannel_backups\x18\x03 \x01(\x0b\x32\x19.lnrpc.ChanBackupSnapshot\x12\x16\n\x0estateless_init\x18\x04 \x01(\x08\"\x16\n\x14UnlockWalletResponse\"~\n\x15\x43hangePasswordRequest\x12\x18\n\x10\x63urrent_password\x18\x01 \x01(\x0c\x12\x14\n\x0cnew_password\x18\x02 \x01(\x0c\x12\x16\n\x0estateless_init\x18\x03 \x01(\x08\x12\x1d\n\x15new_macaroon_root_key\x18\x04 \x01(\x08\"0\n\x16\x43hangePasswordResponse\x12\x16\n\x0e\x61\x64min_macaroon\x18\x01 \x01(\x0c\x32\xa5\x02\n\x0eWalletUnlocker\x12\x38\n\x07GenSeed\x12\x15.lnrpc.GenSeedRequest\x1a\x16.lnrpc.GenSeedResponse\x12\x41\n\nInitWallet\x12\x18.lnrpc.InitWalletRequest\x1a\x19.lnrpc.InitWalletResponse\x12G\n\x0cUnlockWallet\x12\x1a.lnrpc.UnlockWalletRequest\x1a\x1b.lnrpc.UnlockWalletResponse\x12M\n\x0e\x43hangePassword\x12\x1c.lnrpc.ChangePasswordRequest\x1a\x1d.lnrpc.ChangePasswordResponseB\'Z%github.com/lightningnetwork/lnd/lnrpcb\x06proto3')
|
||||
|
||||
|
||||
|
||||
|
||||
_GENSEEDREQUEST = _descriptor.Descriptor(
|
||||
name='GenSeedRequest',
|
||||
full_name='lnrpc.GenSeedRequest',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='aezeed_passphrase', full_name='lnrpc.GenSeedRequest.aezeed_passphrase', index=0,
|
||||
number=1, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='seed_entropy', full_name='lnrpc.GenSeedRequest.seed_entropy', index=1,
|
||||
number=2, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=48,
|
||||
serialized_end=113,
|
||||
)
|
||||
|
||||
|
||||
_GENSEEDRESPONSE = _descriptor.Descriptor(
|
||||
name='GenSeedResponse',
|
||||
full_name='lnrpc.GenSeedResponse',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='cipher_seed_mnemonic', full_name='lnrpc.GenSeedResponse.cipher_seed_mnemonic', index=0,
|
||||
number=1, type=9, cpp_type=9, label=3,
|
||||
has_default_value=False, default_value=[],
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='enciphered_seed', full_name='lnrpc.GenSeedResponse.enciphered_seed', index=1,
|
||||
number=2, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=115,
|
||||
serialized_end=187,
|
||||
)
|
||||
|
||||
|
||||
_INITWALLETREQUEST = _descriptor.Descriptor(
|
||||
name='InitWalletRequest',
|
||||
full_name='lnrpc.InitWalletRequest',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='wallet_password', full_name='lnrpc.InitWalletRequest.wallet_password', index=0,
|
||||
number=1, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='cipher_seed_mnemonic', full_name='lnrpc.InitWalletRequest.cipher_seed_mnemonic', index=1,
|
||||
number=2, type=9, cpp_type=9, label=3,
|
||||
has_default_value=False, default_value=[],
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='aezeed_passphrase', full_name='lnrpc.InitWalletRequest.aezeed_passphrase', index=2,
|
||||
number=3, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='recovery_window', full_name='lnrpc.InitWalletRequest.recovery_window', index=3,
|
||||
number=4, type=5, cpp_type=1, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='channel_backups', full_name='lnrpc.InitWalletRequest.channel_backups', index=4,
|
||||
number=5, type=11, cpp_type=10, label=1,
|
||||
has_default_value=False, default_value=None,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='stateless_init', full_name='lnrpc.InitWalletRequest.stateless_init', index=5,
|
||||
number=6, type=8, cpp_type=7, label=1,
|
||||
has_default_value=False, default_value=False,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='extended_master_key', full_name='lnrpc.InitWalletRequest.extended_master_key', index=6,
|
||||
number=7, type=9, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"".decode('utf-8'),
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='extended_master_key_birthday_timestamp', full_name='lnrpc.InitWalletRequest.extended_master_key_birthday_timestamp', index=7,
|
||||
number=8, type=4, cpp_type=4, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='watch_only', full_name='lnrpc.InitWalletRequest.watch_only', index=8,
|
||||
number=9, type=11, cpp_type=10, label=1,
|
||||
has_default_value=False, default_value=None,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=190,
|
||||
serialized_end=507,
|
||||
)
|
||||
|
||||
|
||||
_INITWALLETRESPONSE = _descriptor.Descriptor(
|
||||
name='InitWalletResponse',
|
||||
full_name='lnrpc.InitWalletResponse',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='admin_macaroon', full_name='lnrpc.InitWalletResponse.admin_macaroon', index=0,
|
||||
number=1, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=509,
|
||||
serialized_end=553,
|
||||
)
|
||||
|
||||
|
||||
_WATCHONLY = _descriptor.Descriptor(
|
||||
name='WatchOnly',
|
||||
full_name='lnrpc.WatchOnly',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='master_key_birthday_timestamp', full_name='lnrpc.WatchOnly.master_key_birthday_timestamp', index=0,
|
||||
number=1, type=4, cpp_type=4, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='master_key_fingerprint', full_name='lnrpc.WatchOnly.master_key_fingerprint', index=1,
|
||||
number=2, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='accounts', full_name='lnrpc.WatchOnly.accounts', index=2,
|
||||
number=3, type=11, cpp_type=10, label=3,
|
||||
has_default_value=False, default_value=[],
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=555,
|
||||
serialized_end=680,
|
||||
)
|
||||
|
||||
|
||||
_WATCHONLYACCOUNT = _descriptor.Descriptor(
|
||||
name='WatchOnlyAccount',
|
||||
full_name='lnrpc.WatchOnlyAccount',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='purpose', full_name='lnrpc.WatchOnlyAccount.purpose', index=0,
|
||||
number=1, type=13, cpp_type=3, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='coin_type', full_name='lnrpc.WatchOnlyAccount.coin_type', index=1,
|
||||
number=2, type=13, cpp_type=3, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='account', full_name='lnrpc.WatchOnlyAccount.account', index=2,
|
||||
number=3, type=13, cpp_type=3, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='xpub', full_name='lnrpc.WatchOnlyAccount.xpub', index=3,
|
||||
number=4, type=9, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"".decode('utf-8'),
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=682,
|
||||
serialized_end=767,
|
||||
)
|
||||
|
||||
|
||||
_UNLOCKWALLETREQUEST = _descriptor.Descriptor(
|
||||
name='UnlockWalletRequest',
|
||||
full_name='lnrpc.UnlockWalletRequest',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='wallet_password', full_name='lnrpc.UnlockWalletRequest.wallet_password', index=0,
|
||||
number=1, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='recovery_window', full_name='lnrpc.UnlockWalletRequest.recovery_window', index=1,
|
||||
number=2, type=5, cpp_type=1, label=1,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='channel_backups', full_name='lnrpc.UnlockWalletRequest.channel_backups', index=2,
|
||||
number=3, type=11, cpp_type=10, label=1,
|
||||
has_default_value=False, default_value=None,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='stateless_init', full_name='lnrpc.UnlockWalletRequest.stateless_init', index=3,
|
||||
number=4, type=8, cpp_type=7, label=1,
|
||||
has_default_value=False, default_value=False,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=770,
|
||||
serialized_end=917,
|
||||
)
|
||||
|
||||
|
||||
_UNLOCKWALLETRESPONSE = _descriptor.Descriptor(
|
||||
name='UnlockWalletResponse',
|
||||
full_name='lnrpc.UnlockWalletResponse',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=919,
|
||||
serialized_end=941,
|
||||
)
|
||||
|
||||
|
||||
_CHANGEPASSWORDREQUEST = _descriptor.Descriptor(
|
||||
name='ChangePasswordRequest',
|
||||
full_name='lnrpc.ChangePasswordRequest',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='current_password', full_name='lnrpc.ChangePasswordRequest.current_password', index=0,
|
||||
number=1, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='new_password', full_name='lnrpc.ChangePasswordRequest.new_password', index=1,
|
||||
number=2, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='stateless_init', full_name='lnrpc.ChangePasswordRequest.stateless_init', index=2,
|
||||
number=3, type=8, cpp_type=7, label=1,
|
||||
has_default_value=False, default_value=False,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
_descriptor.FieldDescriptor(
|
||||
name='new_macaroon_root_key', full_name='lnrpc.ChangePasswordRequest.new_macaroon_root_key', index=3,
|
||||
number=4, type=8, cpp_type=7, label=1,
|
||||
has_default_value=False, default_value=False,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=943,
|
||||
serialized_end=1069,
|
||||
)
|
||||
|
||||
|
||||
_CHANGEPASSWORDRESPONSE = _descriptor.Descriptor(
|
||||
name='ChangePasswordResponse',
|
||||
full_name='lnrpc.ChangePasswordResponse',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
fields=[
|
||||
_descriptor.FieldDescriptor(
|
||||
name='admin_macaroon', full_name='lnrpc.ChangePasswordResponse.admin_macaroon', index=0,
|
||||
number=1, type=12, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=b"",
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
serialized_options=None, file=DESCRIPTOR, create_key=_descriptor._internal_create_key),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
serialized_options=None,
|
||||
is_extendable=False,
|
||||
syntax='proto3',
|
||||
extension_ranges=[],
|
||||
oneofs=[
|
||||
],
|
||||
serialized_start=1071,
|
||||
serialized_end=1119,
|
||||
)
|
||||
|
||||
_INITWALLETREQUEST.fields_by_name['channel_backups'].message_type = lightning__pb2._CHANBACKUPSNAPSHOT
|
||||
_INITWALLETREQUEST.fields_by_name['watch_only'].message_type = _WATCHONLY
|
||||
_WATCHONLY.fields_by_name['accounts'].message_type = _WATCHONLYACCOUNT
|
||||
_UNLOCKWALLETREQUEST.fields_by_name['channel_backups'].message_type = lightning__pb2._CHANBACKUPSNAPSHOT
|
||||
DESCRIPTOR.message_types_by_name['GenSeedRequest'] = _GENSEEDREQUEST
|
||||
DESCRIPTOR.message_types_by_name['GenSeedResponse'] = _GENSEEDRESPONSE
|
||||
DESCRIPTOR.message_types_by_name['InitWalletRequest'] = _INITWALLETREQUEST
|
||||
DESCRIPTOR.message_types_by_name['InitWalletResponse'] = _INITWALLETRESPONSE
|
||||
DESCRIPTOR.message_types_by_name['WatchOnly'] = _WATCHONLY
|
||||
DESCRIPTOR.message_types_by_name['WatchOnlyAccount'] = _WATCHONLYACCOUNT
|
||||
DESCRIPTOR.message_types_by_name['UnlockWalletRequest'] = _UNLOCKWALLETREQUEST
|
||||
DESCRIPTOR.message_types_by_name['UnlockWalletResponse'] = _UNLOCKWALLETRESPONSE
|
||||
DESCRIPTOR.message_types_by_name['ChangePasswordRequest'] = _CHANGEPASSWORDREQUEST
|
||||
DESCRIPTOR.message_types_by_name['ChangePasswordResponse'] = _CHANGEPASSWORDRESPONSE
|
||||
_sym_db.RegisterFileDescriptor(DESCRIPTOR)
|
||||
|
||||
_GENSEEDREQUEST = DESCRIPTOR.message_types_by_name['GenSeedRequest']
|
||||
_GENSEEDRESPONSE = DESCRIPTOR.message_types_by_name['GenSeedResponse']
|
||||
_INITWALLETREQUEST = DESCRIPTOR.message_types_by_name['InitWalletRequest']
|
||||
_INITWALLETRESPONSE = DESCRIPTOR.message_types_by_name['InitWalletResponse']
|
||||
_WATCHONLY = DESCRIPTOR.message_types_by_name['WatchOnly']
|
||||
_WATCHONLYACCOUNT = DESCRIPTOR.message_types_by_name['WatchOnlyAccount']
|
||||
_UNLOCKWALLETREQUEST = DESCRIPTOR.message_types_by_name['UnlockWalletRequest']
|
||||
_UNLOCKWALLETRESPONSE = DESCRIPTOR.message_types_by_name['UnlockWalletResponse']
|
||||
_CHANGEPASSWORDREQUEST = DESCRIPTOR.message_types_by_name['ChangePasswordRequest']
|
||||
_CHANGEPASSWORDRESPONSE = DESCRIPTOR.message_types_by_name['ChangePasswordResponse']
|
||||
GenSeedRequest = _reflection.GeneratedProtocolMessageType('GenSeedRequest', (_message.Message,), {
|
||||
'DESCRIPTOR' : _GENSEEDREQUEST,
|
||||
'__module__' : 'walletunlocker_pb2'
|
||||
@ -572,62 +99,31 @@ ChangePasswordResponse = _reflection.GeneratedProtocolMessageType('ChangePasswor
|
||||
})
|
||||
_sym_db.RegisterMessage(ChangePasswordResponse)
|
||||
|
||||
_WALLETUNLOCKER = DESCRIPTOR.services_by_name['WalletUnlocker']
|
||||
if _descriptor._USE_C_DESCRIPTORS == False:
|
||||
|
||||
DESCRIPTOR._options = None
|
||||
|
||||
_WALLETUNLOCKER = _descriptor.ServiceDescriptor(
|
||||
name='WalletUnlocker',
|
||||
full_name='lnrpc.WalletUnlocker',
|
||||
file=DESCRIPTOR,
|
||||
index=0,
|
||||
serialized_options=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
serialized_start=1122,
|
||||
serialized_end=1415,
|
||||
methods=[
|
||||
_descriptor.MethodDescriptor(
|
||||
name='GenSeed',
|
||||
full_name='lnrpc.WalletUnlocker.GenSeed',
|
||||
index=0,
|
||||
containing_service=None,
|
||||
input_type=_GENSEEDREQUEST,
|
||||
output_type=_GENSEEDRESPONSE,
|
||||
serialized_options=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
),
|
||||
_descriptor.MethodDescriptor(
|
||||
name='InitWallet',
|
||||
full_name='lnrpc.WalletUnlocker.InitWallet',
|
||||
index=1,
|
||||
containing_service=None,
|
||||
input_type=_INITWALLETREQUEST,
|
||||
output_type=_INITWALLETRESPONSE,
|
||||
serialized_options=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
),
|
||||
_descriptor.MethodDescriptor(
|
||||
name='UnlockWallet',
|
||||
full_name='lnrpc.WalletUnlocker.UnlockWallet',
|
||||
index=2,
|
||||
containing_service=None,
|
||||
input_type=_UNLOCKWALLETREQUEST,
|
||||
output_type=_UNLOCKWALLETRESPONSE,
|
||||
serialized_options=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
),
|
||||
_descriptor.MethodDescriptor(
|
||||
name='ChangePassword',
|
||||
full_name='lnrpc.WalletUnlocker.ChangePassword',
|
||||
index=3,
|
||||
containing_service=None,
|
||||
input_type=_CHANGEPASSWORDREQUEST,
|
||||
output_type=_CHANGEPASSWORDRESPONSE,
|
||||
serialized_options=None,
|
||||
create_key=_descriptor._internal_create_key,
|
||||
),
|
||||
])
|
||||
_sym_db.RegisterServiceDescriptor(_WALLETUNLOCKER)
|
||||
|
||||
DESCRIPTOR.services_by_name['WalletUnlocker'] = _WALLETUNLOCKER
|
||||
|
||||
DESCRIPTOR._options = None
|
||||
DESCRIPTOR._serialized_options = b'Z%github.com/lightningnetwork/lnd/lnrpc'
|
||||
_GENSEEDREQUEST._serialized_start=48
|
||||
_GENSEEDREQUEST._serialized_end=113
|
||||
_GENSEEDRESPONSE._serialized_start=115
|
||||
_GENSEEDRESPONSE._serialized_end=187
|
||||
_INITWALLETREQUEST._serialized_start=190
|
||||
_INITWALLETREQUEST._serialized_end=507
|
||||
_INITWALLETRESPONSE._serialized_start=509
|
||||
_INITWALLETRESPONSE._serialized_end=553
|
||||
_WATCHONLY._serialized_start=555
|
||||
_WATCHONLY._serialized_end=680
|
||||
_WATCHONLYACCOUNT._serialized_start=682
|
||||
_WATCHONLYACCOUNT._serialized_end=767
|
||||
_UNLOCKWALLETREQUEST._serialized_start=770
|
||||
_UNLOCKWALLETREQUEST._serialized_end=917
|
||||
_UNLOCKWALLETRESPONSE._serialized_start=919
|
||||
_UNLOCKWALLETRESPONSE._serialized_end=941
|
||||
_CHANGEPASSWORDREQUEST._serialized_start=943
|
||||
_CHANGEPASSWORDREQUEST._serialized_end=1069
|
||||
_CHANGEPASSWORDRESPONSE._serialized_start=1071
|
||||
_CHANGEPASSWORDRESPONSE._serialized_end=1119
|
||||
_WALLETUNLOCKER._serialized_start=1122
|
||||
_WALLETUNLOCKER._serialized_end=1415
|
||||
# @@protoc_insertion_point(module_scope)
|
||||
|
@ -5,6 +5,7 @@ import grpc
|
||||
|
||||
from . import walletunlocker_pb2 as walletunlocker__pb2
|
||||
|
||||
|
||||
class WalletUnlockerStub(object):
|
||||
"""
|
||||
Comments in this file will be directly parsed into the API
|
||||
|
Loading…
x
Reference in New Issue
Block a user