0067 XLS-67d: Charge #194
Replies: 6 comments 14 replies
-
Great proposal Tequ! Question, what's the difference to a Payment transaction? I thought you would do a pull payment and take |
Beta Was this translation helpful? Give feedback.
-
Great proposal, Tequ! It should help those building the UI tremendously. If they all can make money, they will have enough capital to push the marketing far and wide for their offerings on XRPL. This way new engagement will be brought in to XRPL and help with the overall growth of the ecosystem. I would like to suggest for the Charge field to be an array to allow for multiple amount and destination pairs. Array or any appropriate type for rippled codebase, because I don't have knowledge of it. I think I saw STArray somewhere. Why? It could be useful if there will be a time that a non-profit bounty reward system will come to life as described in this X Post I have shared. UIs could give their users an option for them to donate an amount (however small) to any such non-profit they want to donate to. It could be something like Kyber Swap has with their tipping feature for DEX Screener on this screenshot for example: Here is the link to that interface. It should all be optional, but if they build right their users will appreciate the value they are getting and will definitely choose to pay either the fees, donations, or both. I hope this proposal gets accepted and goes live. It will help a lot all those developing for XRPL to monetize their products so they can survive and keep pushing more and better. As well as maybe help with funneling those community donations for further developments of the core ledger or other ecosystem solutions. |
Beta Was this translation helpful? Give feedback.
-
Can you provide a straightforward explanation of what this feature does and how it improves upon XLS-56d, without using technical jargon? The abstract on itself does not answer my question or help me to understand the perspective. :) |
Beta Was this translation helpful? Give feedback.
-
should we add a |
Beta Was this translation helpful? Give feedback.
-
Great proposal that needs to pass asap! Is it possible to charge a percentage instead of an amount? If a UI wants to charge 0.1% on each transaction for example, can it be done? |
Beta Was this translation helpful? Give feedback.
-
Is there a method to support multiple charges on one transaction, such as if the UI wants to charge a fee and the wallet also wants to charge a separate fee? |
Beta Was this translation helpful? Give feedback.
-
Abstract
One way to monetize NFT, AMM and other platforms that use XRP Ledger is to charge a fee from separate Payment transaction. XLS-56d (Batch/Atomic Transaction) has already been proposed as a way to do this in a single transaction. Here, I propose a feature that focuses on fee collection and makes monetization easier and simpler for platforms, wallet services, and users to use.
Specification
Transaction common field
Add the following field as one of transaction common fields.
This field is an optional field and be available for any transaction.
Charge
object
Object
Charge
FieldAmount
object
orstring
Amount
Destination
object
Account
Amount
FieldLike the
Amount
field used in other transaction types, it represents a native token when specified as a string, or an issued token when specified as an object.For tokens for which a TransferRate has been specified by the issuer, this field represents the amount of tokens sent by the sender of the transaction and doesn't guarantee the amount of tokens the destination account will receive.
Destination
FieldThe account to which the fee will be sent.
It is not possible to specify the account from which the transaction originates or an account that has not been activated.
Matters to Consider
These are not included in the above specifications, but are subject to discussion.
SendMax
FieldWe could add
SendMax
to specify exactly how much the sender pays and how much the receiver receives, but that would be more complicated.CrossCurrency
It is possible to make cross-currency payments by specifying different currencies in the
SendMax
andAmount
fields, but this will increase transaction load.The
Path
field cannot specified and the default Path is used.e.g.
Multiple charges
Multiple currencies can be set as fees by specifying multiple
Charge
fields as an array in theCharges
field, but this increases the transaction load (especially if cross-currency is also available).Beta Was this translation helpful? Give feedback.
All reactions