Go to file
keyan 28d684da73 workout tips functions etc 2021-09-08 16:15:06 -05:00
.ebextensions install epel before chromium 2021-07-11 18:51:13 -05:00
.platform increase top margin of footer 2021-07-12 16:45:16 -05:00
.vscode working comments with cache updates 2021-04-17 13:15:18 -05:00
api workout tips functions etc 2021-09-08 16:15:06 -05:00
components clean up console messages 2021-09-07 13:04:56 -05:00
fragments highlight new notifications 2021-08-19 19:13:32 -05:00
lib add retrylink to apollo 2021-09-07 15:22:57 -05:00
pages clean up console messages 2021-09-07 13:04:56 -05:00
prisma workout tips functions etc 2021-09-08 16:15:06 -05:00
public change favicon when there are notifications and make notification icon square 2021-07-08 14:52:11 -05:00
styles continued notification work 2021-08-17 18:59:22 -05:00
svgs markdown previews 2021-07-01 18:51:58 -05:00
walletd fix crashes and report which object failed in walletd 2021-08-12 16:21:56 -05:00
.babelrc collapse 'em 2021-04-30 16:42:51 -05:00
.gitignore added eb config 2021-06-03 18:08:00 -04:00
.npmrc unsafe perm test 2021-06-04 19:54:03 -04:00
LICENSE add license 2021-06-28 18:28:26 -05:00
Procfile remove tls trace from walletd 2021-06-11 13:52:07 -05:00
README.md withdrawl => withdrawal/withdraw 2021-08-19 16:42:21 -05:00
next.config.js update with story 2021-09-02 12:49:17 -05:00
package-lock.json support webln fund and withdrawal 2021-09-07 12:52:59 -05:00
package.json support webln fund and withdrawal 2021-09-07 12:52:59 -05:00

README.md

stacker.news

Stacker News is a Lightning powered Bitcoin news site modelled after Hacker News (which is modelled after Reddit). The intent is to create a better place to discuss Bitcoin.

stack

The site is written in javascript using Next.js, a React framework. The backend API is provided via graphql. The database is postgresql modelled with prisma. We use lnd for the lightning node which we connect to through a tor http tunnel. A customized Bootstrap theme is used for styling.

processes

There are two. 1. the web app and 2. walletd, which checks and polls lnd for all pending invoice/withdrawal statuses in case the web process dies.

wallet transaction safety

To ensure user balances are kept sane, all wallet updates are run in serializable transactions at the database level. Because prisma has relatively poor support for transactions all wallet touching code is written in plpgsql stored procedures and can be found in the prisma/migrations folder.

code

The code is linted with standardjs.

contributing

Pull requests are welcome. Please submit feature requests and bug reports through issues.

license

MIT