Go to file
keyan 2703f1b987 rss link to url if available 2021-08-19 16:21:42 -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 remove withdrawal event listeners 2021-08-19 15:13:04 -05:00
components cmd or ctrl enter to submit 2021-08-19 16:13:33 -05:00
fragments mention notifications are functional 2021-08-18 18:00:54 -05:00
lib rss link to url if available 2021-08-19 16:21:42 -05:00
pages continued notification work 2021-08-17 18:59:22 -05:00
prisma db portion of mentions 2021-08-18 17:20:33 -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 fix readme link 2021-06-28 18:24:36 -05:00
next.config.js add faq 2021-07-15 18:06:21 -05:00
package-lock.json comment edit spagetti 2021-08-10 17:59:06 -05:00
package.json add --trace-warnings 2021-08-19 15:12:36 -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/withdrawl 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