Corné Plooy [ARCHIVE] on Nostr: 📅 Original date posted:2018-03-19 📝 Original message: > > What about enforcing ...
📅 Original date posted:2018-03-19
📝 Original message:
>
> What about enforcing a maximum payment amount that can be refunded?
> Can this help make the amount not a requirement? This way the payment
> amount will still be open to the payer, but it will have a constraint.
I see no use case anymore for leaving out the amount in the invoice. For
any type of transaction where the payer decides the amount, he can do so
by specifying the amount in the invoice request.
>>> 3. True. Right now I'm thinking in the opposite direction:
>>> simplifying
>>> BOLT 12 by removing the possibility of refunds. We can
>>> always add it
>>> back later (with a proper set of features for all kinds of
>>> refunds) as
>>> an optional feature.
>
>
> I want my refund :-) !
I did some further thinking on refunds. Generally speaking, they are a
solution for when Transactions Get Messy, right? You agreed to a
transaction, the Lightning payment happened, but now you want to change
something. That 'something' can be, for instance, a full refund (e.g. if
goods cannot be delivered), a partial refund (e.g. if goods arrived
later than agreed, or with inferior quality), an extra payment by the
payer (e.g. cheaper model out of stock, decided to buy the more
expensive one instead), or no payment at all (e.g. payer changes mind
after the payment, and wants the black/blue model instead of the
white/gold one, which has the same price).
There is some similarity between a "BOLT 12" transaction that allows
refunds and other updates, and a microtransaction channel. Specifically,
I think you want the new state to be signed by whoever may possibly have
a legitimate interest *against* the update, and you want the old state
to be invalidated. In BOLT 12, to support this, a state should typically
contain the description field, a field that invalidates the previous
state, a field that specifies how this state can be invalidated, and
optionally a payment hash(*), which indicates that this state update is
valid only in combination with the corresponding preimage. A transaction
starts in a "null" state (no obligations between participants), and ends
specifying certain obligations that have been fulfilled. TBD: maybe
returning to null state by signing off that all obligations have been
fulfilled? E.g. payer signing off that ordered goods have been received.
Note that this must be different from canceling the transaction, since
you want the payer to keep some kind of proof of ownership. Anyway, I
think returning to null state should not be required on BOLT12 protocol
level: not everybody wants this. Some suppliers may want to require it
though.
Looking at the protocol for this (generalized) refund usage, it seems
clear that, often, you don't want to have to keep the communication line
open the entire time: it can take days, weeks or longer until the final
settlement of a transaction. You should be able to reconnect (typically
in the same direction as the initial connect) and say "hey, let's update
the state of the transaction to this-or-that". So, on re-connecting, you
also need to be able to specify *which* transaction to update.
The format of the "description" field is unspecified for now; I think
it's best to keep it that way. Machine-readable formats for this are a
very complex subject, better solved at a higher level protocol. For now,
assume it to be human-readable; maybe add a MIME type field so that its
format is both unambiguous (technologically) and upgradeable.
TBD: is there a use case for transactions between more than two parties?
Or having smart contract (scriptless?) scripts? These would then
typically be evaluated by a settlement service provider (e.g. the legal
system) instead of a block chain.
> All return onions still have the same problem of capacity though.
A partial onion is a very generic solution. If capacity is your greatest
concern as payee, you just supply a zero-hop partial onion. Minimum
privacy, but maximum ability of the payer to construct a route over
channels with sufficient capacity. The choice is yours.
>>> 4. This depends on the use case. The URL contains an optional
>>> invoice
>>> ID. A payee can request a payment for a specific, single
>>> transaction
>>> (for a single instance of delivery of goods/services) by
>>> handing over an
>>> URL, including an invoice ID, to a single payer. This
>>> provides similar
>>> functionality as BOLT 11, except that you now have a
>>> well-defined
>>> channel for transmitting larger invoice descriptions and
>>> for using
>>> partial onion routes. A payee can also hand over an URL
>>> without invoice
>>> ID; this can be used and re-used by one or more payers,
>>> whenever they
>>> want to perform payments to this payee.
>> How does the payer derive the payment hash? Or does the payer have to
>> contact the payee again to get a fresh payment hash specifically for
>> the payer?
Contact the payee again. Or, more generally, one of them knows how to
contact the other to propose updates to the agreement; if the payee of
the update agrees, he will provide the payment hash.
CJP
(*) together with amount and timeout: these allow the payer to know
under what conditions the payee is likely to release the preimage.
Published at
2023-06-09 12:49:27Event JSON
{
"id": "d8e584a8435c6230cb29dcd0641a45eecd7f2eeef5f75aa6ac646eea0e40be33",
"pubkey": "f928c1a284fddb630ed23aab2bfe69811423a59f41dd8c3e40c57b916fbadf65",
"created_at": 1686314967,
"kind": 1,
"tags": [
[
"e",
"11c536497bcf985878c543cbcdb276cfa91376a0e509480644da8561a93e013b",
"",
"root"
],
[
"e",
"0906378f75cb485779a99ebb0c68d69feec35b12adf05199bb4eae4373158151",
"",
"reply"
],
[
"p",
"1c7d4637a4686939cc8b4a759caace11bb63bafb75b73b6f57d7ba81f9bd6a6c"
]
],
"content": "📅 Original date posted:2018-03-19\n📝 Original message:\n\u003e\n\u003e What about enforcing a maximum payment amount that can be refunded?\n\u003e Can this help make the amount not a requirement? This way the payment\n\u003e amount will still be open to the payer, but it will have a constraint.\n\nI see no use case anymore for leaving out the amount in the invoice. For\nany type of transaction where the payer decides the amount, he can do so\nby specifying the amount in the invoice request.\n\n\u003e\u003e\u003e 3. True. Right now I'm thinking in the opposite direction:\n\u003e\u003e\u003e simplifying\n\u003e\u003e\u003e BOLT 12 by removing the possibility of refunds. We can\n\u003e\u003e\u003e always add it\n\u003e\u003e\u003e back later (with a proper set of features for all kinds of\n\u003e\u003e\u003e refunds) as\n\u003e\u003e\u003e an optional feature.\n\u003e\n\u003e\n\u003e I want my refund :-) !\nI did some further thinking on refunds. Generally speaking, they are a\nsolution for when Transactions Get Messy, right? You agreed to a\ntransaction, the Lightning payment happened, but now you want to change\nsomething. That 'something' can be, for instance, a full refund (e.g. if\ngoods cannot be delivered), a partial refund (e.g. if goods arrived\nlater than agreed, or with inferior quality), an extra payment by the\npayer (e.g. cheaper model out of stock, decided to buy the more\nexpensive one instead), or no payment at all (e.g. payer changes mind\nafter the payment, and wants the black/blue model instead of the\nwhite/gold one, which has the same price).\n\nThere is some similarity between a \"BOLT 12\" transaction that allows\nrefunds and other updates, and a microtransaction channel. Specifically,\nI think you want the new state to be signed by whoever may possibly have\na legitimate interest *against* the update, and you want the old state\nto be invalidated. In BOLT 12, to support this, a state should typically\ncontain the description field, a field that invalidates the previous\nstate, a field that specifies how this state can be invalidated, and\noptionally a payment hash(*), which indicates that this state update is\nvalid only in combination with the corresponding preimage. A transaction\nstarts in a \"null\" state (no obligations between participants), and ends\nspecifying certain obligations that have been fulfilled. TBD: maybe\nreturning to null state by signing off that all obligations have been\nfulfilled? E.g. payer signing off that ordered goods have been received.\nNote that this must be different from canceling the transaction, since\nyou want the payer to keep some kind of proof of ownership. Anyway, I\nthink returning to null state should not be required on BOLT12 protocol\nlevel: not everybody wants this. Some suppliers may want to require it\nthough.\n\nLooking at the protocol for this (generalized) refund usage, it seems\nclear that, often, you don't want to have to keep the communication line\nopen the entire time: it can take days, weeks or longer until the final\nsettlement of a transaction. You should be able to reconnect (typically\nin the same direction as the initial connect) and say \"hey, let's update\nthe state of the transaction to this-or-that\". So, on re-connecting, you\nalso need to be able to specify *which* transaction to update.\n\nThe format of the \"description\" field is unspecified for now; I think\nit's best to keep it that way. Machine-readable formats for this are a\nvery complex subject, better solved at a higher level protocol. For now,\nassume it to be human-readable; maybe add a MIME type field so that its\nformat is both unambiguous (technologically) and upgradeable.\n\nTBD: is there a use case for transactions between more than two parties?\nOr having smart contract (scriptless?) scripts? These would then\ntypically be evaluated by a settlement service provider (e.g. the legal\nsystem) instead of a block chain.\n\n\u003e All return onions still have the same problem of capacity though.\nA partial onion is a very generic solution. If capacity is your greatest\nconcern as payee, you just supply a zero-hop partial onion. Minimum\nprivacy, but maximum ability of the payer to construct a route over\nchannels with sufficient capacity. The choice is yours.\n\n\u003e\u003e\u003e 4. This depends on the use case. The URL contains an optional\n\u003e\u003e\u003e invoice\n\u003e\u003e\u003e ID. A payee can request a payment for a specific, single\n\u003e\u003e\u003e transaction\n\u003e\u003e\u003e (for a single instance of delivery of goods/services) by\n\u003e\u003e\u003e handing over an\n\u003e\u003e\u003e URL, including an invoice ID, to a single payer. This\n\u003e\u003e\u003e provides similar\n\u003e\u003e\u003e functionality as BOLT 11, except that you now have a\n\u003e\u003e\u003e well-defined\n\u003e\u003e\u003e channel for transmitting larger invoice descriptions and\n\u003e\u003e\u003e for using\n\u003e\u003e\u003e partial onion routes. A payee can also hand over an URL\n\u003e\u003e\u003e without invoice\n\u003e\u003e\u003e ID; this can be used and re-used by one or more payers,\n\u003e\u003e\u003e whenever they\n\u003e\u003e\u003e want to perform payments to this payee.\n\u003e\u003e How does the payer derive the payment hash? Or does the payer have to\n\u003e\u003e contact the payee again to get a fresh payment hash specifically for\n\u003e\u003e the payer?\nContact the payee again. Or, more generally, one of them knows how to\ncontact the other to propose updates to the agreement; if the payee of\nthe update agrees, he will provide the payment hash.\n\nCJP\n\n(*) together with amount and timeout: these allow the payer to know\nunder what conditions the payee is likely to release the preimage.",
"sig": "39ffcc11ac091ad0e34bbb8c8d813ac194600bb2384d9d27621f44a12feb9c0b210747bdd83da81fc4ecb785ac99bc07464b6fe5eae42061d415c875d2b8ea16"
}