/ currency.html
currency.html
1 {{>head}} 2 <section id="main" class="wrapper style2"> 3 <div class="inner"> 4 <header class="major special"> 5 <h1>Credenso Currency</h1> 6 <p>At the heart of Credenso's operation is our in-house time currency: Cred. </p> 7 </header> 8 9 <span class="image right"><img src="{{ static }}images/lightning.svg"><small>spend time; get <a href="https://lightning.network/">Lightning</a></small></span> 10 <p> 11 A primary goal of Credenso is enabling people to spend more time volunteering in their community. To make this happen, we compensate our members for their time by adding Cred to their account for work they do. 12 </p> 13 <p> 14 One cred (1c) represents 5 minutes of time in service to the community. It also acts as an equal share of the community wealth - currently {{ cred.treasury.sats }} sats. With {{ cred.total }}c currently in circulation, each Cred is worth {{ cred.x.sats }} satoshi, or ${{ cred.x.cad }} CAD. At any time, this Cred can be traded in for an equivalent amount of Bitcoin from the treasury, either on-chain or via the Lightning network. 15 </p> 16 <h2>Finances</h2> 17 <p>Below is a list of all of Credenso's donations and expenses from Spring 2024 onwards.</p> 18 19 <ul class="tabs"> 20 {{#ledger}} 21 <li> 22 <h3>{{ year }} Season</h3> 23 <table> 24 <thead> 25 <tr> 26 <th>Date</th> 27 <th>Description</th> 28 <th>Amount</th> 29 </tr> 30 </thead> 31 <tbody> 32 {{# entries}} 33 <tr> 34 <td>{{ day }}</td> 35 {{#link}} 36 <td><a href="{{ . }}">{{ description }}</a></td> 37 {{/link}} 38 {{^link}} 39 <td>{{ description }}</td> 40 {{/link}} 41 <td {{#negative}}style='color: red'{{/negative}}>${{ amount }}</td> 42 </tr> 43 {{/entries}} 44 </tbody> 45 <tfoot> 46 <tr> 47 <td><b>Summary</b></td> 48 <td></td> 49 <td><b {{#neg}}style='color: red'{{/neg}}>${{ total }}</b></td> 50 </tr> 51 </tfoot> 52 </table> 53 </li> 54 {{/ledger}} 55 </ul> 56 </div> 57 </section> 58 59 <style> 60 .image small { 61 display: block; 62 text-align: center; 63 font-style: italic; 64 } 65 </style> 66 {{>foot}}