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: d8892aec70e15ec43c6f400d7042cc385dad68fc911b68effa920d878dfdd7ca
4
- data.tar.gz: d490c7df3eb0ad9a2f6fffe41abd5d28e8b9c322cc5b38c94d9948e5cfbc36ae
3
+ metadata.gz: d1501e290f91d54b09af1d2abc92fef6869c0064c667ef3b129d50a6e0f4885c
4
+ data.tar.gz: af3884acd17e590108e293134fb15170d53fc309f79431397e8cdd3a8da4b075
5
5
  SHA512:
6
- metadata.gz: b6964abbe9f69647d61d8af3d4ea07622dc84d6b015558b8ee0a6b77d825ea8ff4192b42cb0e087d4aff1ea78f700ef66cabae359a6778f646d749ea165b106b
7
- data.tar.gz: 613b5b9d4492b568483611214dd4ddf263bdf34061613c05a3d3c2b4df1643bcf110443889cd0eafc72ff180bd7572f89c17948ab2afc3c46ece30b5e96b2107
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
@@ -1,3 +1,3 @@
1
1
  module Lnrpc
2
- VERSION = "0.14.1"
2
+ VERSION = "0.14.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lnrpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.14.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bumann