{"id":2626,"date":"2026-06-02T03:24:28","date_gmt":"2026-06-02T03:24:28","guid":{"rendered":"https:\/\/tucumandevelopers.com\/index.php\/2026\/06\/02\/i-built-a-parking-meter-for-paragraphs\/"},"modified":"2026-06-02T03:24:28","modified_gmt":"2026-06-02T03:24:28","slug":"i-built-a-parking-meter-for-paragraphs","status":"publish","type":"post","link":"https:\/\/tucumandevelopers.com\/index.php\/2026\/06\/02\/i-built-a-parking-meter-for-paragraphs\/","title":{"rendered":"I Built a Parking Meter for Paragraphs"},"content":{"rendered":"<div>\n<div><\/div>\n<p>The text is baked into the key. Fix a typo in paragraph 3 and it gets a brand new key, while tips already sitting on paragraphs 1, 2 and 4 do not move. Tips attach to what was said, not to a line number that slides the second you add a sentence. I am unreasonably proud of this and it took twenty minutes.<\/p>\n<h2> <a name=\"the-reader-never-meets-the-chain\" href=\"#the-reader-never-meets-the-chain\"> <\/a> The reader never meets the chain <\/h2>\n<p>The app spots MiniPay (Opera&#8217;s stablecoin wallet, preinstalled in plenty of places Ethereum gas has never been invited to), auto-connects, and sets <code>feeCurrency<\/code> to cUSD so gas and tip come out of the same balance. First tap approves an allowance once. Every tap after is one transaction at sub-cent gas. No signup, no &#8220;connect wallet&#8221; interpretive dance.<\/p>\n<h2> <a name=\"the-argument-i-cannot-win-alone\" href=\"#the-argument-i-cannot-win-alone\"> <\/a> The argument I cannot win alone <\/h2>\n<p>Here is the part I am genuinely stuck on: how big is a tip that feels like nothing?<\/p>\n<p>The presets are currently $0.001, $0.005, $0.01 and $0.05, and I have no idea which should be the default. Is one cent a tip or a mild insult? Is a tenth of a cent charming, or am I just wasting your tap? I do not know, so I am going to do the radical thing and ask the people who would actually tap it. That is you. There is a comment box.<\/p>\n<p>While I stall on that, I added a <strong>custom amount field<\/strong> so you can type your own number. It does one slightly paranoid thing: it resets to a normal preset after a single tap. Because the alternative is that you set it to $5, find a rhythm, and accidentally fund my entire roadmap in a burst of generosity. Flattering, but I would rather you meant it. (There is also a hard cap, for the same reason. I have met enthusiasm before.)<\/p>\n<h2> <a name=\"two-lines-to-put-it-on-your-blog\" href=\"#two-lines-to-put-it-on-your-blog\"> <\/a> Two lines to put it on your blog <\/h2>\n<p>None of this is useful trapped on my domain, so the tipping part is an npm package, <code>@tipitip\/embed<\/code>, and integration is two lines.<\/p>\n<p>React: <\/p>\n<div>\n<pre><code><span>import<\/span> <span>{<\/span> <span>TipParagraphs<\/span> <span>}<\/span> <span>from<\/span> <span>\"<\/span><span>@tipitip\/embed<\/span><span>\"<\/span><span>;<\/span> <span>&lt;<\/span><span>TipParagraphs<\/span> <span>articleId<\/span><span>=<\/span><span>\"0xbdc473d818a4a15c39941bd9513dbff8eade14a57825619c39884ce36fa40178\"<\/span> <span>\/&gt;<\/span> <\/code><\/pre>\n<div>\n<\/p><\/div>\n<\/p><\/div>\n<p>Allergic to React? There is a framework-free web component: <\/p>\n<div>\n<pre><code><span>&lt;script <\/span><span>type=<\/span><span>\"module\"<\/span> <span>src=<\/span><span>\"https:\/\/esm.sh\/@tipitip\/embed\/vanilla\"<\/span><span>&gt;&lt;\/script&gt;<\/span> <span>&lt;tipitip-paragraphs<\/span> <span>article-id=<\/span><span>\"0xbdc473d818a4a15c39941bd9513dbff8eade14a57825619c39884ce36fa40178\"<\/span><span>&gt;&lt;\/tipitip-paragraphs&gt;<\/span> <\/code><\/pre>\n<div>\n<\/p><\/div>\n<\/p><\/div>\n<p>Drop either into a blog, a docs page, or a Farcaster frame and your paragraphs become tippable. It ships with npm provenance, a signed attestation linking the tarball to the exact commit and CI run, because I would like at least one part of this to look like an adult made it.<\/p>\n<h2> <a name=\"things-i-shipped-things-i-have-very-much-not-decided\" href=\"#things-i-shipped-things-i-have-very-much-not-decided\"> <\/a> Things I shipped, things I have very much not decided <\/h2>\n<ul>\n<li> <strong>Which chains next?<\/strong> Celo is where the cent-sized math actually works. The honest catch: the moment I add a second chain, I have to explain to users why they suddenly need a second token for gas, which deletes half the magic. So tell me which chains you want, and whether you are willing to onboard your own readers to fee-currency, because I am tired. (An account-abstraction paymaster is the escape hatch. It is also more work, which is why it is a bullet point and not a feature.)<\/li>\n<li> <strong>The default tip size:<\/strong> see above. Throw numbers at me. I will read all of them.<\/li>\n<li> <strong>Anti-Sybil:<\/strong> off, on purpose. There is a storage gap in the contract so I can add it later without redeploying the universe. Bolting on Sybil-resistance before you have users is solving the wrong problem with great enthusiasm.<\/li>\n<li> <strong>A subgraph:<\/strong> the reader does viem <code>getLogs<\/code> plus an IndexedDB cache for now. A subgraph is on the list, right after &#8220;have enough volume to justify a subgraph.&#8221;<\/li>\n<\/ul>\n<h2> <a name=\"your-turn\" href=\"#your-turn\"> <\/a> Your turn <\/h2>\n<p>I will read the comments, and two questions decide real things:<\/p>\n<ol>\n<li>What is the <strong>largest tip that still feels like nothing<\/strong> to you? Give me a number.<\/li>\n<li>Which <strong>chain<\/strong> should be next, and do you actually have users there, or does it just sound nice?<\/li>\n<\/ol>\n<p>If you would rather poke it directly:<\/p>\n<ul>\n<li>Live: <a href=\"https:\/\/tipitip-sable.vercel.app\/\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/tipitip-sable.vercel.app<\/a> <\/li>\n<li>SDK: <code>npm i @tipitip\/embed<\/code> <\/li>\n<li>Code: <a href=\"https:\/\/github.com\/BRN-SLP\/tipitip\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/github.com\/BRN-SLP\/tipitip<\/a> <\/li>\n<\/ul>\n<p>Put it on your own blog and send me the link. I will tip your best paragraph. Probably $0.01. Possibly an insult. We are, as established, still deciding.<\/p>\n<\/p><\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>Fuente: <a href=\"https:\/\/dev.to\/brn_slp\/i-built-a-parking-meter-for-paragraphs-2mkk\">Art\u00edculo original<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The text is baked into the key. Fix a typo in paragraph 3 and it gets a brand new key, while tips already sitting on paragraphs 1, 2 and 4 do not move. Tips attach to what was said, not to a line number that slides the second you add a sentence. I am unreasonably [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2625,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[41],"tags":[],"class_list":["post-2626","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devto"],"jetpack_publicize_connections":[],"_links":{"self":[{"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/posts\/2626","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/comments?post=2626"}],"version-history":[{"count":0,"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/posts\/2626\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/media\/2625"}],"wp:attachment":[{"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/media?parent=2626"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/categories?post=2626"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tucumandevelopers.com\/index.php\/wp-json\/wp\/v2\/tags?post=2626"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}