add 3 more bounties

This commit is contained in:
Jeremy Kauffman 2016-08-18 14:36:39 -04:00
parent a1f200de6c
commit 6eee4347f6
5 changed files with 51 additions and 2 deletions

View file

@ -14,5 +14,5 @@ Iquidus explorer is great, but does not currently support LBRY specific operatio
The explorer should be modified to:
- Display what LBRY name claims credits are backing
- Display what LBRY name claims and supports
- Exploration of name claims in a way similar to transactions

View file

@ -0,0 +1,13 @@
---
category: browser
title: Add Transaction History to LBRY Browser
award: 1500
status: available
date: '2016-07-01'
---
Currently, [`lbry`](https://github.com/lbry/lbry) is packaged as a DMG for OS X installs.
To claim this bounty, the install process should be done via a `.pkg` file instead.
This process must be done in a way that is repeatable in our CircleCI continuous integration environment.

View file

@ -0,0 +1,16 @@
---
category: human
title: Write, Broadcast or Share LBRY
award: 500
status: available
date: '2016-07-01'
---
This bounty is for writers, podcasters, streamers, or others in the media industry. To be eligible, you must:
- Create a piece of content about LBRY
- Have the content accessed by over 2,000 people
- Have over 100 of those people join the LBRY beta
We reserve the right to deny this bounty if we feel the article or generated traffic/signups are non-genuine.

View file

@ -0,0 +1,18 @@
---
category: browser
title: Add Transaction History to LBRY Browser
award: 2000
status: available
date: '2016-07-01'
---
Add a screen showing transaction history the LBRY Browser [`lbry-web-ui`](https://github.com/lbry/lbry-web-ui).
The screen must:
- Display past outgoing and incoming transactions
- Link to the LBRY [block explorer](https://explorer.lbry.io) for transactions
The LBRY daemon already supports an API call, `get_transaction_history` to retrieve transaction history. While running LBRY, type the following in your browser console:
`lbry.call('get_transaction_history', {}, function(response) { console.log(response); });`

View file

@ -47,7 +47,9 @@
<div class="text-center spacer-half"><span class="icon-mega
<?php switch($metadata['category']) {
case 'android': echo 'icon-android'; break;
case 'ios': echo 'icon-apple'; break;
case 'osx':
case 'ios':
echo 'icon-apple'; break;
case 'browser': echo 'icon-globe'; break;
case 'web': echo 'icon-link'; break;
case 'daemon': echo 'icon-server'; break;