<?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/">
  <channel>
    <title>The Interledger Community 🌱: Keith Brewster</title>
    <description>The latest articles on The Interledger Community 🌱 by Keith Brewster (@powerglove22).</description>
    <link>https://community.interledger.org/powerglove22</link>
    <image>
      <url>https://community.interledger.org/images/3DINKU0TiJve-66MQflfHmNjEM0jwzAFfZQn9PDMEu0/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL3VzZXIv/cHJvZmlsZV9pbWFn/ZS8xMTUvMGI2MWZi/ZmYtMWNkOC00ODNj/LTk3MzItZGFlZmE5/ZWY1NDUwLmpwZWc</url>
      <title>The Interledger Community 🌱: Keith Brewster</title>
      <link>https://community.interledger.org/powerglove22</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://community.interledger.org/feed/powerglove22"/>
    <language>en</language>
    <item>
      <title>Bandi — Final Grant Report</title>
      <dc:creator>Keith Brewster</dc:creator>
      <pubDate>Sun, 07 Nov 2021 01:33:52 +0000</pubDate>
      <link>https://community.interledger.org/powerglove22/bandi-final-grant-report-13m4</link>
      <guid>https://community.interledger.org/powerglove22/bandi-final-grant-report-13m4</guid>
      <description>&lt;p&gt;Hello everyone!&lt;/p&gt;

&lt;p&gt;I'm thrilled to give the final grant update on Bandi. Just because the grant period is finished doesn't mean that the work is over—I've found ways to continue to expand and improve the project which I'm excited to share with you. At the end of the report I'll share the roadmap for the end of 2021, and where I'm hoping to take the project over the next year.&lt;/p&gt;

&lt;p&gt;For anyone who may not be familiar with the project, Bandi is a set of libraries intended to encourage and incentivize users to enter into the web monetization ecosystem. These projects provide a set of tools to help users bootstrap a rewards framework for their application. Think of something like &lt;a href="https://www.airmiles.ca/en.html"&gt;Air Miles&lt;/a&gt;—these systems are often a key strategy companies use to help build loyalty with their audience. I'll talk a little bit more about the systems architecture in the upcoming sections.&lt;/p&gt;

&lt;p&gt;Bandi seeks to provide all of the necessary pieces for creating an unopinionated rewards system that works with your application. It was designed to be decoupled from any specific systems implementation—it is simply a set of libraries and APIs to help you design the framework that works best for you. It's not intended to be a fully-featured framework, and it makes no decisions on how to use or manage data.&lt;/p&gt;

&lt;h3&gt;
  
  
  How It Works
&lt;/h3&gt;

&lt;p&gt;At a high-level, Bandi takes the payload triggered by the web monetization payment events and converts it to reward points. You can control the conversion rate with a multiplier. Here's a quick example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User has 0 points&lt;/li&gt;
&lt;li&gt;Creator has set a multiplier of 100x ($1 = 100 points)&lt;/li&gt;
&lt;li&gt;User streams 0.01 to creator&lt;/li&gt;
&lt;li&gt;Bandi-Events captures transaction event and uses multiplier to determine points accrued: &lt;code&gt;0.01 * 100 = 1 point&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;User balance is updated to 1, and the new balance is returned through a callback&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'll talk a bit more about the individual pieces that make up the system in the next section.&lt;/p&gt;

&lt;h3&gt;
  
  
  Examples
&lt;/h3&gt;

&lt;p&gt;Some possible examples of how you could use the rewards generated by Bandi:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;With a custom marketplace. Use the points for vouchers/discounts, or to exchange for merchandise.&lt;/li&gt;
&lt;li&gt;To access special privileges on your application (for example, spending 5 points to leave a comment on a post).&lt;/li&gt;
&lt;li&gt;To rank users in different brackets based on contributions (think Patreon).&lt;/li&gt;
&lt;li&gt;To keep an accumulated total of "experience". Higher levels could be granted special visual indicators, or unlock additional privileges (think StackOverflow).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'd love to hear any other additional ideas you might have!&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Update
&lt;/h2&gt;

&lt;p&gt;There have been some major changes since the last update—some out of philosophy and some from necessity. The largest would be the deliverable of the "Loyalty Framework"; this was intended to be a fully-managed solution for creating &amp;amp; maintaining these rewards systems. There were some logistical challenges around managing infrastructure costs, as well a handling the legalities of building a consumer product (unfortunately this is not my area of expertise). Because of this, I've made the decision to &lt;strong&gt;open-source the work I've been doing&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I am a devout supporter of OSS, and I truly believe that's the way forward for building support around web monetization. The philosophies behind web monetization is to create an open and native method for streaming payments across the web, and I wanted to stay aligned with these principles (though if anyone wants to take the ideas behind Bandi to the next level, I would happily join in).&lt;/p&gt;

&lt;p&gt;The Bandi project is now broken up into 4 different libraries:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bandi Events&lt;/li&gt;
&lt;li&gt;Bandi Server&lt;/li&gt;
&lt;li&gt;Bandi Admin&lt;/li&gt;
&lt;li&gt;Bandi (this name may be changed)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'll talk a bit about each project and how they fit into the overall architecture.&lt;/p&gt;

&lt;p&gt;Here's a quick high-level diagram:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/wpBL22yWI5jpEJ_4EYj3y4AhOZk52WJalWFPQ-6qV0g/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2p3eW5sMzhi/eGp6OTdzZ3dsNmNj/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/wpBL22yWI5jpEJ_4EYj3y4AhOZk52WJalWFPQ-6qV0g/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2p3eW5sMzhi/eGp6OTdzZ3dsNmNj/LnBuZw" alt="systems architecture diagram of the Bandi project" width="761" height="513"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/Bandi-Events/bandi-events"&gt;Bandi Events&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;This was previously referred to (and also named) &lt;code&gt;micropayment-hooks&lt;/code&gt;. This received a complete overhaul and has been rebranded as Bandi Events. This sets the foundation of the system—it handles listening to the web monetization payment events and making the conversion to bonus points. It also accepts a callback function that will execute on every transaction and return the updated user balance.&lt;/p&gt;

&lt;p&gt;Like every project under the Bandi alias, this library can be used on its own (as it stays decoupled from any specific systems implementation), but it also fits nicely as a puzzle piece alongside the other Bandi projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/Bandi-Events/bandi-server"&gt;Bandi Server&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;This project provides a set of transactional APIs for managing/updating user balances. It also includes a data layer using &lt;a href="https://www.prisma.io/"&gt;prisma&lt;/a&gt; as an ORM over a MySQL database (though this could be swapped out for the database of your choice). This project provides the groundwork for setting up a full backend (including authorization). I'll cover more about this project's architecture in the next section.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://github.com/Bandi-Events/bandi-admin"&gt;Bandi Admin&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;This project provides an administrative user interface for a high-level view of user transactions + balances. This will include insight into a number of valuable metrics, as well as graphs and charts for data visualization. This is meant as a complimentary project to Bandi Server, but could be adapted to work with a custom backend solution.&lt;/p&gt;

&lt;h3&gt;
  
  
  Bandi
&lt;/h3&gt;

&lt;p&gt;This is an upcoming project for bridging the other Bandi libraries together. This is designed for anyone using both the events and server projects, and handles creating the connection between the client and server, as well as automatically managing the transactions. This project is meant to abstract some of the overhead/boilerplate out of using the Bandi projects.&lt;/p&gt;

&lt;p&gt;This will be the last project to be completed. Check the roadmap for more information on project timelines.&lt;/p&gt;

&lt;h2&gt;
  
  
  Progress on objectives
&lt;/h2&gt;

&lt;p&gt;The high-level roadmap of objectives for Bandi are conceptually similar to the last report, but things have evolved slightly. For reference, here are the original objectives:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Timeline&lt;/th&gt;
&lt;th&gt;Milestones&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Pre-grant period&lt;/td&gt;
&lt;td&gt;Develop proof-of-concept for the webmonetization-hooks library.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 1&lt;/td&gt;
&lt;td&gt;Extend the feature set of the webmonetization-hooks library, as well as develop a playground where users can manage/tweak the distribution of reward currency to fit their personal use case.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 2&lt;/td&gt;
&lt;td&gt;Initial release of the webmonetization-hooks library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 3&lt;/td&gt;
&lt;td&gt;Begin development of the Loyalty Framework (design + infrastructure).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 4&lt;/td&gt;
&lt;td&gt;Development of Loyalty Framework transaction APIs.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 5&lt;/td&gt;
&lt;td&gt;Begin marketing, development of a website for the Loyalty Framework.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 6&lt;/td&gt;
&lt;td&gt;Release stable build of Loyalty Framework.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Post-grant period&lt;/td&gt;
&lt;td&gt;Continue to extend the feature set of the Loyalty Framework, as well as maintain/increment on top of the webmonetization-hooks library&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The Loyalty Framework has now been divided into two projects: &lt;a href="https://github.com/Bandi-Events/bandi-server"&gt;Bandi Server&lt;/a&gt; and &lt;a href="https://github.com/Bandi-Events/bandi-admin"&gt;Bandi Admin&lt;/a&gt; (as mentioned in the previous section). Outside of some additional scope creep, most of this work is on track.&lt;/p&gt;

&lt;h3&gt;
  
  
  Bandi Server Progress
&lt;/h3&gt;

&lt;p&gt;Bandi Server is in a mostly stable place and will be ready for an alpha release. This first iteration provides a service layer for the following resources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Auth: Actions for sign in/sign out and authorization flows.&lt;/li&gt;
&lt;li&gt;Users: Actions for managing users (used for authorization).&lt;/li&gt;
&lt;li&gt;Transactions: Actions for creating &amp;amp; reading transactions.&lt;/li&gt;
&lt;li&gt;Balances: Actions for managing user balances.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It also provides the ability to set up a websockets connection to more effectively handle the rate that web monetization events trigger. The alpha release will be an MVP for providing a working and deployable backend solution.&lt;/p&gt;

&lt;h3&gt;
  
  
  Bandi Admin Progress
&lt;/h3&gt;

&lt;p&gt;Bandi Admin is almost ready for an alpha release (I have projected timelines at the end of the report). This was not originally intended as an initial deliverable for the Loyalty Framework, but I've decided to increase prioritization for Bandi Admin due to the value I believe it brings to the group of projects.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/RQMonbM6wtkNjMv1iez2nOnXRCtddTSp8pwD077vk0k/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2Ixb2d0aWp4/dzk1dDl3bTM4Nmo5/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/RQMonbM6wtkNjMv1iez2nOnXRCtddTSp8pwD077vk0k/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2Ixb2d0aWp4/dzk1dDl3bTM4Nmo5/LnBuZw" alt="The Bandi Admin dashboard page" width="880" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;A view of the Bandi Admin dashboard&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A lot of the dashboard components have been designed &amp;amp; created (cards, tables, charts, etc). Many of the pages have been built out, including the sign-in/out authorization flow. All of the presentational elements have been mostly created, and there's final work being completed for hooking up the pages to read from the proper endpoints.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key activities
&lt;/h2&gt;

&lt;p&gt;In the last report, I mentioned my key activities were the completion of the Loyalty Framework MVP, as well as continuing to maintain the &lt;code&gt;webmonetization-hooks&lt;/code&gt; library. I covered much of the progress on these libraries in the previous section, but I'll extrapolate on these further.&lt;/p&gt;

&lt;p&gt;As mentioned in the previous section, Bandi Server is ready for an upcoming alpha release. This includes the full API I had planned for the original iteration of the project. I've tried to include some nice-to-have's for development, including a &lt;code&gt;docker-compose.yml&lt;/code&gt; file for spinning up the server, ORM, and a seeded database. The remaining work on Bandi Server is mostly quality-of-life items to provide a robust boilerplate requiring very little configuration to be a fully deployable solution.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;webmonetization-hooks&lt;/code&gt; library has been completely recreated from the ground up, and now lives under a new name. Bandi Events is conceptually similar to the original library—the main difference from the previous iteration is it is now decoupled from any specific business logic (the previous version had included a bunch of logic based around a built-in levelling system). I wanted to make sure this would not be limited in the use cases it could support.&lt;/p&gt;

&lt;p&gt;More changes include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rewritten in TypeScript.&lt;/li&gt;
&lt;li&gt;Leaner, more stable API.&lt;/li&gt;
&lt;li&gt;50% smaller bundle size.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can download v0.2.0 from &lt;a href="https://www.npmjs.com/package/bandi-events"&gt;https://www.npmjs.com/package/bandi-events&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Communications and marketing
&lt;/h2&gt;

&lt;p&gt;Unfortunately I have not had the opportunity to market the work I've been doing (yet). However, I have started a &lt;a href="https://switchcasebreak.com"&gt;blog&lt;/a&gt; where I intend to outline the work I've been doing on the Bandi project, interesting projects other people in the community have been working on, and web monetization in general.&lt;/p&gt;

&lt;p&gt;I've also been hooking up the blog to be a live example of implementing the entire Bandi ecosystem—my plan is to award users special avatars based on their contributions. I've been documenting the steps I've taken, and will release a post outlining the process (as well as using this experience to produce better documentation/tutorials).&lt;/p&gt;

&lt;p&gt;I have a post scheduled for release this week covering an introduction to web monetization, as well as a high-level overview of the Bandi project. This post is scheduled to be published on the 10th. I'm excited to help promote the exciting work happening in this space, and to help drive the technology further.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s next?
&lt;/h2&gt;

&lt;p&gt;Even though the funded grant period is over, there's still a roadmap of milestones I have set for the rest of the year (and beyond). The next major milestone that should be completed within the next three weeks is the creation of a fully-featured rewards system on &lt;a href="https://switchcasebreak.com"&gt;my blog&lt;/a&gt;. I'm currently in the process of hooking up the backend, and will have a post detailing the implementation process after its completed.&lt;/p&gt;

&lt;p&gt;My next goal is to wrap up work on the Bandi Admin project. I've had some extra help from some additional developers to help push it forward, but it's still missing a number of features before it will be ready for general release. I estimate that it should be completed by late 2021 or early 2022.&lt;/p&gt;

&lt;p&gt;Finally, I want to complete work on Bandi—the wrapper for bridging the events and server libraries together. I've lowered priority for this project as I've been focused on stabilizing the individual pieces. This work will also be completed by early 2022.&lt;/p&gt;

&lt;h2&gt;
  
  
  What community support would benefit your project?
&lt;/h2&gt;

&lt;p&gt;Because I've chosen to release the Bandi projects as open-source, I welcome and encourage the community to get involved. I'm also happy to have conversations with anyone who wants to expand on the project ideas. Feel free to reach out to me on Twitter: &lt;a href="https://twitter.com/switchcasebreak"&gt;https://twitter.com/switchcasebreak&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Additional comments
&lt;/h2&gt;

&lt;p&gt;Thank you again to Grant for the Web. They're doing great work promoting the amazing technology behind web monetization, as well as highlighting the incredible projects coming out of the community. I've been following some of the projects other grantees are working on, and I'm constantly blown away by the level of creativity coming out of this amazing community. I'll continue to work towards providing value for this ecosystem, and I will forever be a proponent of this incredible technology.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Keith Brewster&lt;/p&gt;

</description>
      <category>grantreports</category>
    </item>
    <item>
      <title>Bandi — Grant Report #1</title>
      <dc:creator>Keith Brewster</dc:creator>
      <pubDate>Sat, 17 Apr 2021 02:34:12 +0000</pubDate>
      <link>https://community.interledger.org/powerglove22/bandi-grant-report-1-h20</link>
      <guid>https://community.interledger.org/powerglove22/bandi-grant-report-1-h20</guid>
      <description>&lt;p&gt;Hello everyone,&lt;/p&gt;

&lt;p&gt;This is sort of an introduction, as well as a long-overdue update on the project. I wanted to start off with an apology to the community; I had a responsibility as a grantee to help drive the conversation around this wonderful technology, something I still honestly believe in and consider to be one of the most important movements in web technologies. Last year was a challenging time, my family was impacted by COVID-19 and had suffered a difficult loss. I know many people were impacted—I don't mean to deflect accountability—but because of this I had difficulties meeting the timelines outlined in my original project roadmap.&lt;/p&gt;

&lt;p&gt;That being said, this project is still something I'm passionate about and I'm excited to share where I'm at with the community.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Bandi?
&lt;/h2&gt;

&lt;p&gt;This project seeks to solve the fundamental challenge with one-time content unlocks; there's very little incentive to continue to stream payments outside of wanting to support your favourite content producers. This project tackles the challenge of how to incrementally reward users who continue to contribute to a content creator or community.&lt;/p&gt;

&lt;p&gt;There are two components to this project: the Loyalty Framework and an OSS component called &lt;code&gt;webmonetization-hooks&lt;/code&gt; (which I'll get to in the next section).&lt;/p&gt;

&lt;p&gt;The Loyalty Framework is a managed solution for implementing a point system for your users. This could be either in the form of an exclusive marketplace currency (take Air Miles, for example) or for use in a tiered-reward system. Micropayments would reward a premium currency that an application can then use to either build out a marketplace for redeeming exclusive content or using the accrued currency as a leveling system for unlocking thresholds of rewards (like how StackOverflow rewards users who participate in their forums with extended permissions within their ecosystem). This project could be used to provide functional benefits to users (forum moderator, special privileges) or cosmetic benefits (custom badges or avatars).&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Update
&lt;/h2&gt;

&lt;p&gt;As you'll see in the next section (progress on objectives), I'm slightly behind where I was hoping to be at the six-month period. I have requested an extension for the final deliverables; I'm aiming to develop the MVP for the Loyalty Framework over the next couple of months.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;webmonetization-hooks&lt;/code&gt; library is in a stable position and is ready for a &lt;code&gt;v0.1.0&lt;/code&gt; release within the week. This package will allow a user to capture web monetization payment events, set users points, create tiered thresholds, create a multiplier for transforming captured amounts, and supply callback methods that are triggered on specific events (payment events, reaching enough points to hit the next threshold, etc). These are the features I was expecting to deliver, but I'm hoping to continue to expand this library (and welcome people to contribute to the project).&lt;/p&gt;

&lt;p&gt;The Loyalty Framework is currently aiming for an MVP release sometime in the next couple of months. Work on the transactional APIs has begun development, as well as the initial design of the administrative console and the landing/docs pages.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/81CfOb7FpEYWg9B--KVvBgdmXuokRXtEB6uLRD_oqYU/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2lja3J0ODBu/dTNyYm1wOTNjdnht/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/81CfOb7FpEYWg9B--KVvBgdmXuokRXtEB6uLRD_oqYU/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2lja3J0ODBu/dTNyYm1wOTNjdnht/LnBuZw" alt="Alt Text" width="880" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;The landing page for the Loyalty Framework&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Progress on objectives
&lt;/h2&gt;

&lt;p&gt;I want to take the time to go through each of my objectives and give an update about the current status. For reference, here was the initial roadmap:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Timeline&lt;/th&gt;
&lt;th&gt;Milestones&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Pre-grant period&lt;/td&gt;
&lt;td&gt;Develop proof-of-concept for the webmonetization-hooks library.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 1&lt;/td&gt;
&lt;td&gt;Extend the feature set of the webmonetization-hooks library, as well as develop a playground where users can manage/tweak the distribution of reward currency to fit their personal use case.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 2&lt;/td&gt;
&lt;td&gt;Initial release of the webmonetization-hooks library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 3&lt;/td&gt;
&lt;td&gt;Begin development of the Loyalty Framework (design + infrastructure).&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 4&lt;/td&gt;
&lt;td&gt;Development of Loyalty Framework transaction APIs.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 5&lt;/td&gt;
&lt;td&gt;Begin marketing, development of a website for the Loyalty Framework.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Month 6&lt;/td&gt;
&lt;td&gt;Release stable build of Loyalty Framework.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Post-grant period&lt;/td&gt;
&lt;td&gt;Continue to extend the feature set of the Loyalty Framework, as well as maintain/increment on top of the webmonetization-hooks library&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;As mentioned in the Project Update, the &lt;code&gt;webmonetization-hooks&lt;/code&gt; library is ready for a &lt;code&gt;v0.1.0&lt;/code&gt; release this week. The design of the infrastructure of the Loyalty Framework, as well as the development of the transactional APIs has been started. The Loyalty Framework website is in progress and many of the pages have been completed (landing/documentation/faq).&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;webmonetization-hooks&lt;/code&gt; repo is located here: &lt;a href="https://github.com/brewsterbhg/micropayment-hooks"&gt;https://github.com/brewsterbhg/micropayment-hooks&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Key activities
&lt;/h2&gt;

&lt;p&gt;Right now my key activities are the completion of the Loyalty Framework MVP, as well as continuing to maintain and expand the &lt;code&gt;webmonetization-hooks&lt;/code&gt; library. Once the Loyalty Framework has a stable release, I'll begin marketing efforts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Communications and marketing
&lt;/h2&gt;

&lt;p&gt;I have not had the opportunity to promote the project yet. I had allocated some funds for marketing, but those are reserved until the stable release of the Loyalty Framework.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s next?
&lt;/h2&gt;

&lt;p&gt;My next steps are to develop and release the Loyalty Framework, as well as become a more active part of the web monetization community.&lt;/p&gt;

&lt;h2&gt;
  
  
  What community support would benefit your project?
&lt;/h2&gt;

&lt;p&gt;If anyone is interested in helping to work on the &lt;code&gt;webmonetization-hooks&lt;/code&gt; library, I would love for it to be a community effort.&lt;/p&gt;

&lt;h2&gt;
  
  
  Additional comments
&lt;/h2&gt;

&lt;p&gt;Thank you to Grant for the Web for everything they're doing to help address the glaring issues with the state of the web, and for helping content creators find new methods for monetizing their content outside of the currently cumbersome systems. I wanted to apologize again for my inactivity up until this point, and I promise to provide more regular updates moving forward. I'm incredibly excited to see what the rest of the community is up to.&lt;/p&gt;

&lt;p&gt;Cheers,&lt;br&gt;
Keith&lt;/p&gt;

</description>
      <category>grantreports</category>
    </item>
  </channel>
</rss>
