<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Lunc Daily Forum - Recent Topics				            </title>
            <link>https://luncdaily.com/community/</link>
            <description>Lunc Daily Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 05 May 2026 13:55:34 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Proposal: Implement an On-Chain Subscription Payment Module</title>
                        <link>https://luncdaily.com/community/main-forum/proposal-implement-an-on-chain-subscription-payment-module/</link>
                        <pubDate>Mon, 27 Oct 2025 13:53:28 +0000</pubDate>
                        <description><![CDATA[This proposal introduces a new subscription module on Layer 1 that enables recurring payments directly on the blockchain.
Projects can use it to offer subscriptions for services, membership...]]></description>
                        <content:encoded><![CDATA[<p>This proposal introduces a new subscription module on Layer 1 that enables recurring payments directly on the blockchain.</p>
<p>Projects can use it to offer subscriptions for services, memberships, or premium features without having to develop or deploy their own smart contracts.</p>
<p>Payments are automatically processed in supported currencies (e.g., LUNC, USTC, USDC ), with a portion of each processed payment sent to the chain treasury for further utilization as revenue share for the chain.</p>
<p>Important note: cw20 tokens are not supported for this module.</p>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-motivation-2" name="p-649-motivation-2"></a>Motivation</h3>
<p>Recurring payments are a common requirement for projects offering premium access, SaaS tools, or marketplace memberships.</p>
<p>Currently, dApps must implement these features via custom contracts or off-chain logic, which limits adoption and integration opportunities. Contracts cannot be executed automatically on chain, they need to be executed by users or off-chain background processes.</p>
<p>By providing a native on-chain subscription layer, Terra Classic can standardize this functionality and make it available to all projects and even external (Web2) platforms via simple REST queries.</p>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-concept-3" name="p-649-concept-3"></a>Concept</h3>
<p>Users can subscribe to a project by submitting a MsgSubscribe transaction.</p>
<p>The message defines:</p>
<ul>
<li>Amount</li>
<li>Payment period (e.g., weekly or monthly)</li>
<li>Recipient address</li>
<li>Additional details</li>
</ul>
<p>Once created, the first payment is executed immediately and a protocol fee (e.g., 1%) is deducted and kept by the chain.</p>
<p>The subscription data is stored in the blockchain, including:</p>
<ul>
<li>Status “active” or “canceled”</li>
<li>Next payment due date</li>
<li>Amount, currency, and recipient</li>
<li>Date of last successful payment</li>
<li>Further relevant information</li>
</ul>
<p>At each payment interval, the module checks the subscriber’s account balance:</p>
<ul>
<li>If there are sufficient funds, the payment is executed automatically.</li>
<li>If this is not the case, the subscription is automatically canceled.</li>
<li>Users can cancel their subscriptions manually at any time.</li>
</ul>
<p>You can think of this similar to what a direct debit mandate is for your bank account, or a PayPal subscription.</p>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-query-and-integration-4" name="p-649-query-and-integration-4"></a>Query and integration</h3>
<p>The module provides query endpoints such as:</p>
<p><em>/terra/subscription/{address}/status</em></p>
<p>which return real-time information about the subscription status, next payment date, and additional metadata.</p>
<p>These endpoints behave like normal REST API calls and allow for easy integration with external applications such as websites, marketplaces, or other Web2 platforms.</p>
<p>If Wasm bindings are included, smart contracts can also query subscription data directly in the blockchain to implement premium access or reward tiers.</p>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-governance-parameters-5" name="p-649-governance-parameters-5"></a>Governance parameters</h3>
<p>Governance can configure the following:</p>
<ul>
<li>Approved payment currencies (initially LUNC, USTC, USDC)</li>
<li>Protocol fee (1% by default)</li>
</ul>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-example-use-cases-6" name="p-649-example-use-cases-6"></a>Example use cases</h3>
<ul>
<li>Premium memberships or feature unlocks in dApps</li>
<li>Marketplace or DEX fee reduction tiers</li>
<li>Web2 pages with restricted login for subscribers</li>
<li>Game passes or SaaS-like monthly billing models</li>
</ul>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-benefits-7" name="p-649-benefits-7"></a>Benefits</h3>
<ul>
<li>Enables subscription payments without custom contract logic</li>
<li>Offers new business models for projects and dApps</li>
<li>Creates a recurring revenue source for the chain through protocol fees</li>
<li>Simplifies integration for Web2 and Web3 developers through standardized API endpoints</li>
</ul>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-important-note-8" name="p-649-important-note-8"></a>Important Note</h3>
<p>Same as when unstaked coins reach your wallet after 21 days, there is no direct transaction for recurring payments in the block explorer (e.g. finder) as it is an automatic process during block execution.</p>
<h3><a class="anchor" href="https://discourse.luncgoblins.com/t/proposal-implement-an-on-chain-subscription-payment-module/223#p-649-conclusion-9" name="p-649-conclusion-9"></a>Conclusion</h3>
<p>The proposed subscription module creates a standardized on-chain mechanism for recurring payments on Terra Classic.</p>
<p>It lowers the barrier to entry for developers, provides subscribers with a consistent user experience, and introduces a sustainable revenue source for the blockchain itself.</p>
<p>This functionality is consistent with the overarching goal of strengthening the utility layer of Terra Classic and encouraging further project development on the blockchain.</p>]]></content:encoded>
						                            <category domain="https://luncdaily.com/community/"></category>                        <dc:creator>Lunc Daily</dc:creator>
                        <guid isPermaLink="true">https://luncdaily.com/community/main-forum/proposal-implement-an-on-chain-subscription-payment-module/</guid>
                    </item>
				                    <item>
                        <title>Welcome to Terra Classic!</title>
                        <link>https://luncdaily.com/community/main-forum/welcome-to-terra-classic/</link>
                        <pubDate>Thu, 11 Sep 2025 04:56:43 +0000</pubDate>
                        <description><![CDATA[A place for the Terra Classic community to discuss their stuff.
&nbsp;
Here are some things you can do to get started:
&nbsp;
Introduce yourself by adding your picture and information ab...]]></description>
                        <content:encoded><![CDATA[<p data-pm-slice="0 0 []">A place for the Terra Classic community to discuss their stuff.</p>
<p>&nbsp;</p>
<p>Here are some things you can do to get started:</p>
<p>&nbsp;</p>
<p>Introduce yourself by adding your picture and information about yourself and your interests to your profile. What is one thing you’d like to be asked about?</p>
<p>&nbsp;</p>
<p>Get to know the community by browsing the discussions that are already happening here. When you find a post interesting, informative, or entertaining, feel free to join in.</p>
<p>&nbsp;</p>
<p>Contribute by commenting, sharing your own perspective, asking questions, or offering feedback in the discussion. Before replying or starting new topics, please review the Community Guidelines.</p>]]></content:encoded>
						                            <category domain="https://luncdaily.com/community/"></category>                        <dc:creator>Lunc Daily</dc:creator>
                        <guid isPermaLink="true">https://luncdaily.com/community/main-forum/welcome-to-terra-classic/</guid>
                    </item>
				                    <item>
                        <title>USTD – Decentralized &amp; Fully Automated Yield-Bearing Stablecoin on Terra Classic</title>
                        <link>https://luncdaily.com/community/main-forum/ustd-decentralized-fully-automated-yield-bearing-stablecoin-on-terra-classic/</link>
                        <pubDate>Wed, 10 Sep 2025 17:23:14 +0000</pubDate>
                        <description><![CDATA[&#x1f680; USTD – Decentralized &amp; Fully Automated Yield-Bearing Stablecoin on Terra Classic
Description:Welcome to the official discussion thread for USTD – a proposed fully decentralize...]]></description>
                        <content:encoded><![CDATA[<p data-start="90" data-end="186">&#x1f680; USTD – Decentralized &amp; Fully Automated Yield-Bearing Stablecoin on Terra Classic</p>
<p data-start="188" data-end="415"><strong data-start="188" data-end="204">Description:</strong><br data-start="204" data-end="207" />Welcome to the official discussion thread for <strong data-start="253" data-end="261">USTD</strong> – a proposed <strong data-start="275" data-end="339">fully decentralized, automated, and yield-bearing stablecoin</strong> designed for the Terra Classic blockchain.<br data-start="382" data-end="385" />Here, community members can:</p>
<ul data-start="417" data-end="662">
<li data-start="417" data-end="467">
<p data-start="419" data-end="467">&#x1f4e2; Share opinions and feedback on the proposal</p>
</li>
<li data-start="468" data-end="519">
<p data-start="470" data-end="519">&#x1f4a1; Suggest use cases and technical improvements</p>
</li>
<li data-start="520" data-end="591">
<p data-start="522" data-end="591">&#x1f50d; Discuss potential benefits, risks, and implementation challenges</p>
</li>
<li data-start="592" data-end="662">
<p data-start="594" data-end="662">&#x1f4ca; Explore its impact on LUNC price stability and ecosystem growth</p>
</li>
</ul>
<p data-start="664" data-end="822">Whether you’re a <strong data-start="681" data-end="723">developer, investor, or LUNC supporter</strong>, this is the place to exchange ideas, raise questions, and collaborate on making USTD a reality.</p>
<p data-start="824" data-end="883">Let’s build the future of decentralized finance together!</p>]]></content:encoded>
						                            <category domain="https://luncdaily.com/community/"></category>                        <dc:creator>Lunc Daily</dc:creator>
                        <guid isPermaLink="true">https://luncdaily.com/community/main-forum/ustd-decentralized-fully-automated-yield-bearing-stablecoin-on-terra-classic/</guid>
                    </item>
				                    <item>
                        <title>USTC Revival: Repeg or Reinvention?</title>
                        <link>https://luncdaily.com/community/main-forum/ustc-revival-repeg-or-reinvention/</link>
                        <pubDate>Wed, 03 Sep 2025 09:07:57 +0000</pubDate>
                        <description><![CDATA[Open discussion!

How to bring $USTC back to life?

Should we restore its $1 peg or launch a new stablecoin connected to it?]]></description>
                        <content:encoded><![CDATA[Open discussion!

How to bring $USTC back to life?

Should we restore its $1 peg or launch a new stablecoin connected to it?]]></content:encoded>
						                            <category domain="https://luncdaily.com/community/"></category>                        <dc:creator>Adit 39</dc:creator>
                        <guid isPermaLink="true">https://luncdaily.com/community/main-forum/ustc-revival-repeg-or-reinvention/</guid>
                    </item>
				                    <item>
                        <title>Artiffine’s Protocol Engineers — The Team That Can Deliver USTD and Revive Terra Classic?</title>
                        <link>https://luncdaily.com/community/main-forum/artiffines-protocol-engineers-the-team-that-can-deliver-ustd-and-revive-terra-classic/</link>
                        <pubDate>Mon, 01 Sep 2025 08:32:14 +0000</pubDate>
                        <description><![CDATA[The USTD Signal Proposal envisions a decentralized, fully automated, yield-bearing stablecoin on the Terra Classic Blockchain—a project that demands precision engineering, bulletproof securi...]]></description>
                        <content:encoded><![CDATA[<p><span>The </span><strong>USTD Signal Proposal</strong><span> envisions a decentralized, fully automated, yield-bearing stablecoin on the </span><strong>Terra Classic Blockchain</strong><span>—a project that demands precision engineering, bulletproof security, and deep blockchain expertise.</span></p>
<p>Please give us your thoughts!</p>]]></content:encoded>
						                            <category domain="https://luncdaily.com/community/"></category>                        <dc:creator>Lunc Daily</dc:creator>
                        <guid isPermaLink="true">https://luncdaily.com/community/main-forum/artiffines-protocol-engineers-the-team-that-can-deliver-ustd-and-revive-terra-classic/</guid>
                    </item>
							        </channel>
        </rss>
		