lnrpc 0.14.1 → 0.14.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1501e290f91d54b09af1d2abc92fef6869c0064c667ef3b129d50a6e0f4885c
|
4
|
+
data.tar.gz: af3884acd17e590108e293134fb15170d53fc309f79431397e8cdd3a8da4b075
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 435fbe6709811cec7be3f8e57ce3ee35ba53c46ed7a20484c65ff51981658b8522ef211acebaa81dc74b11098dd22e27767484b2412cecf7998e2221d333fc18
|
7
|
+
data.tar.gz: de2e8589a9179407c3019b160f1a1267e87cb0a355c082d681a01c3f047ff97cc9f341ac7d92868b84f946e719d1b99409cc89fed9966bd5d0dd2e53be3e508c
|
@@ -62,6 +62,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
62
62
|
end
|
63
63
|
add_message "routerrpc.XImportMissionControlRequest" do
|
64
64
|
repeated :pairs, :message, 1, "routerrpc.PairHistory"
|
65
|
+
optional :force, :bool, 2
|
65
66
|
end
|
66
67
|
add_message "routerrpc.XImportMissionControlResponse" do
|
67
68
|
end
|
@@ -173,6 +173,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
173
173
|
optional :outpoint, :message, 2, "lnrpc.OutPoint"
|
174
174
|
optional :expiration, :uint64, 3
|
175
175
|
end
|
176
|
+
add_message "walletrpc.SignPsbtRequest" do
|
177
|
+
optional :funded_psbt, :bytes, 1
|
178
|
+
end
|
179
|
+
add_message "walletrpc.SignPsbtResponse" do
|
180
|
+
optional :signed_psbt, :bytes, 1
|
181
|
+
end
|
176
182
|
add_message "walletrpc.FinalizePsbtRequest" do
|
177
183
|
optional :funded_psbt, :bytes, 1
|
178
184
|
optional :account, :string, 5
|
@@ -248,6 +254,8 @@ module Walletrpc
|
|
248
254
|
FundPsbtResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.FundPsbtResponse").msgclass
|
249
255
|
TxTemplate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.TxTemplate").msgclass
|
250
256
|
UtxoLease = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.UtxoLease").msgclass
|
257
|
+
SignPsbtRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.SignPsbtRequest").msgclass
|
258
|
+
SignPsbtResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.SignPsbtResponse").msgclass
|
251
259
|
FinalizePsbtRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.FinalizePsbtRequest").msgclass
|
252
260
|
FinalizePsbtResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.FinalizePsbtResponse").msgclass
|
253
261
|
ListLeasesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("walletrpc.ListLeasesRequest").msgclass
|
@@ -169,6 +169,19 @@ module Walletrpc
|
|
169
169
|
# an error on the caller's side.
|
170
170
|
rpc :FundPsbt, ::Walletrpc::FundPsbtRequest, ::Walletrpc::FundPsbtResponse
|
171
171
|
#
|
172
|
+
# SignPsbt expects a partial transaction with all inputs and outputs fully
|
173
|
+
# declared and tries to sign all unsigned inputs that have all required fields
|
174
|
+
# (UTXO information, BIP32 derivation information, witness or sig scripts)
|
175
|
+
# set.
|
176
|
+
# If no error is returned, the PSBT is ready to be given to the next signer or
|
177
|
+
# to be finalized if lnd was the last signer.
|
178
|
+
#
|
179
|
+
# NOTE: This RPC only signs inputs (and only those it can sign), it does not
|
180
|
+
# perform any other tasks (such as coin selection, UTXO locking or
|
181
|
+
# input/output/fee value validation, PSBT finalization). Any input that is
|
182
|
+
# incomplete will be skipped.
|
183
|
+
rpc :SignPsbt, ::Walletrpc::SignPsbtRequest, ::Walletrpc::SignPsbtResponse
|
184
|
+
#
|
172
185
|
# FinalizePsbt expects a partial transaction with all inputs and outputs fully
|
173
186
|
# declared and tries to sign all inputs that belong to the wallet. Lnd must be
|
174
187
|
# the last signer of the transaction. That means, if there are any unsigned
|
data/lib/lnrpc/version.rb
CHANGED