create account

Blockchain Idea: Blockchain based torrent tracker by warlkiry

View this thread on: hive.blogpeakd.comecency.com
· @warlkiry · (edited)
$15.75
Blockchain Idea: Blockchain based torrent tracker
Hey you ! This is the first post of a new serie of ***"Blockchain idea"*** posts where I give ideas of apps that can be done on the blockchain. **Feel free to realize these ideas !** 😀 
___
![4mdusymyk6.png](https://img.esteem.ws/4mdusymyk6.png)
<a href='https://www.ianswer4u.com/2011/05/p2p-what-is-peer-to-peer.html'>Image source</a> (Took from google image, the original article seams unavailable now)

# So, what exactly is a torrent tracker ?
### Torrent
Download files in the torrent way is much faster, more reliable and practical. But it lays on people's will to stock a file in their hard drive and to share it, and that can be difficult to less wanted files.
In order to send / receive data from users to users (or peers to peers, aka P2P) torrent software connects to a torrent tracker server.
### The tracker
A torrent tracker is a server that allows seeders (people who shares a file they have downloaded) to connect to leachers (people who desires to get that file). This is the central part of the P2P torrent system.
In other word: **"Without tracker you don't have torrent"**.
>"Trackerless" torrents using DHT still needs to connect to a single node in order to get redirected to other nodes and get peers. In this case, without this entry point, you have no DHT, no peers, no torrent.

I wont develop any more details about torrents trackers, but I let you several links about it at the end of the post !

### The seeders ratio
The ratio of a seeder on a file is computed as the ratio:
Data sent / Data received
It's used by trackers to motivate users to seed after downloading a file, we are going to take advantage of it for our system.

# Why developing it for the blockchain ?

This is actually the most important question when developing an app for the blockchain.
As I said below, the torrent tracker is the centralized part of the torrent system, the system can't work without it, this is what we call a SPOF, a Single Point Of Failure. (<a href='https://en.wikipedia.org/wiki/Single_point_of_failure'>SPOF Wikipedia</a>), that can lead to downtimes or legal issues with the owner of the server.
The other advantage is the monetization of the fileshare. It turns users to actors, I'll develop this part just below.
Finally, the blockchain is fair, no one can cheat on it. That means we know where are our data, our money, etc ...
>We could use the DHT technology for the tracker blockchain, I don't want this post to be technical, I'll maybe create another post if this idea gets constructed and seams really feasible.

# Let's create our tracker on the Steem blockchain
Let's design the economic system we could use to make it work.

A file shared on the tracker has a price a user has to pay to get it.
- 70% of the price goes to the copyright owner
- 10% of the price goes to the seeders
- 15% of the price goes to the copyright witnesses
- 5% of the price goes to the clone hunters
>Don't worry, every actor will be explained below

Let's explain it with a simple example:
- Pythagoras has shared Game Of Thrones season 3 for 15 Steem on the tracker, 2 users are currently seeding it.
- Thales didn't saw it yet, he wants to get it, he pays 15 Steem to buy it.

When downloading it, the file is seeded by Pythagoras itself, and 2 other seeders.

|		|	% of price	|	Amount	|
|	--------	|	--------	|	--------	|
|	  Pythagoras (6.2 ratio)	|	  (6.2/11.4) x 10%  	|	  *54.3% of 1.5* = 0.815 STEEM  	|
| Seeder A (1.5 ratio)| (1.5/11.4) x 10% | *13.1% of 1.5* = 0.198 STEEM|
| Seeder B (3.7 ratio) | (3.7/11.4) x 10% | *32.4% of 1.5* = 0.487 STEEM|
| GoT copyright owner | 70% | 10.5 STEEM |
| Copyrights witnesses | 15% | 2.25 STEEM |
| Clone hunters | 5% | 0.75 STEEM |

**The exemple is simplified** as seeders sent all data at the same data speed. The real system is explained below

### Seeders
A seeder earnings depends on his ratio on the file he seeds. The more he has ratio on it, the more he will earn. As well as his seeding speed compared to the total seeding speed of the file to a leacher.

Each block of data received by the leacher, a payment will be shared to every seeders who sent data to him that has an average data speed > 0 on the past block.
Let's say our GoT file is splitted into 100 blocks, worth 0.15 STEEM each.

For each block, a Seeder **i** will earn:
![sv6vc4t5ni.png](https://img.esteem.ws/sv6vc4t5ni.png)
> **EoB:** Earning in % of the seeders shares of the block
> **Ri:** Ratio of the seeder on the file
> **RN:** Sum of the ratio of each seeder on the block
> **AvgSi:** Average seeding speed of the seeder on the past block
> **AvgSN:** Sum of the average seeding speed of the seeders on the past block

If the EoB here = 0.4 (40%), the seeder will get 40% of the 10% seeder share. 0.15 total -> 0.015 to seeders -> 0.006 to seeder i
(100 blocks like this -> 0.6)

The monetization of seeders permits to:
- Rewards seeding a file for a long time
- Rewards seeding file that doesn't have a lot of seeders
- Rewards seeders dedicating a higher of seeding speed

### Copyrights witnesses
In order to know to whom the copyrights has to go, the tracker will reward users that will bring to a file informations the name of the artist / company and a proof of ownership.
**Everytime a user brings the proof** that a file has copyrights, he becomes a copyright witness on this file and will get rewards for each file sold.
The rewards are equally shared between the witnesses

### Clone hunters
Clone hunters are users that report clones of the file on the tracker, after a clone report, users can vote if (yes or no) the file is the same or not. The clone hunters reward of a file goes to every users on the tracker who hunted a clone in the last 30 days.


### Copyrights owners
This is the most delicate actor of a file, as it may not be a user of the tracker and a total blockchain-related things ignorant. So we can't really reward him with STEEM for now.

The solution here could simply be to stock the STEEM copyright owner share of a file, and **to distribute 1% of it them to active seeders each day**; until the copyright owner gets an account on the service, prove his identity and claims the reward.

# Problems to solve in order to make it work

The main problem here is about copyrights owners.
The solution I presented could be legally ok, saying *"If you want to, you can get your money, if you don't that means you don't want to"*, but the main problem here are:
- Copyright owners can't set their own price on the file
>Or maybe they could after verifying the validity of their account and their copyright ownerships
- Copyright owners's account identity and copyright ownership has to be verified **without any centralised** system
- Reward / Disk usage ratio could favorize expensive little files compared to cheap big files.

# Conclusion
The % share, price or equations were just (closely random) picked for the example.
This is just an idea, not a functionnal system but It would be awesome to **make it grow and perfect it with you in the comments** !
They may be things I forgot, misunderstood or didn't see, just say it in the comments as well 😉 

#### Torrent related links 
<a href='https://en.wikipedia.org/wiki/BitTorrent_tracker'>BitTorrent tracker Wikipedia</a>
<a href='https://www.lifewire.com/how-torrent-downloading-works-2483513'>Lifewire - How torrents works</a>
<a href='https://torrentfreak.com/common-bittorrent-dht-myths-091024/'>Trackerless torrent myths and truths</a>
<a href='https://en.wikipedia.org/wiki/Distributed_hash_table'>DHT (base technology of trackerless torrent) Wikipedia</a>
___
Sorry for my bad english, don't hesitate to correct me that'll help me improve  :-)
Feel free to upvote, resteem, share, comment, this post or follow me for more awesome content ! 😎 
Take care,

**Warlkiry**
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 469 others
properties (23)
authorwarlkiry
permlinkblockchain-idea-blockchain-based-torrent-tracker
categorysteem
json_metadata{"links":["https://www.ianswer4u.com/2011/05/p2p-what-is-peer-to-peer.html","https://en.wikipedia.org/wiki/Single_point_of_failure","https://en.wikipedia.org/wiki/BitTorrent_tracker","https://www.lifewire.com/how-torrent-downloading-works-2483513","https://torrentfreak.com/common-bittorrent-dht-myths-091024/","https://en.wikipedia.org/wiki/Distributed_hash_table"],"image":["https://img.esteem.ws/4mdusymyk6.png","https://img.esteem.ws/sv6vc4t5ni.png"],"tags":["steem","cryptocurrency","blockchain","torrent","idea"],"app":"steemit/0.1","format":"markdown","community":"esteem.app"}
created2019-03-26 11:23:09
last_update2019-03-26 14:12:27
depth0
children12
last_payout2019-04-02 11:23:09
cashout_time1969-12-31 23:59:59
total_payout_value11.538 HBD
curator_payout_value4.213 HBD
pending_payout_value0.000 HBD
promoted0.500 HBD
body_length7,801
author_reputation959,251,642,814
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,979,514
net_rshares25,726,830,542,600
author_curate_reward""
vote details (533)
@arcange ·
Congratulations @warlkiry!
Your post was mentioned in the [Steem Hit Parade for newcomers](https://steemit.com/hit-parade/@arcange/daily-hit-parade-for-newcomers-20190326) in the following categories:

* Upvotes - Ranked 5 with 529 upvotes
* Pending payout - Ranked 1 with $ 17,56

I also upvoted your post to increase its reward
If you like my work to promote newcomers and give them more visibility on the Steem blockchain, consider to [vote for my witness](https://steemit.com/~witnesses)!
properties (22)
authorarcange
permlinkre-blockchain-idea-blockchain-based-torrent-tracker-20190326t170110000z
categorysteem
json_metadata""
created2019-03-27 16:03:00
last_update2019-03-27 16:03:00
depth1
children0
last_payout2019-04-03 16:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length492
author_reputation1,148,349,221,690,653
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,051,127
net_rshares0
@boomerang ·
This post has received a 45.25 % upvote from @boomerang.
properties (22)
authorboomerang
permlinkre-blockchain-idea-blockchain-based-torrent-tracker-20190326t171443
categorysteem
json_metadata""
created2019-03-26 17:14:45
last_update2019-03-26 17:14:45
depth1
children0
last_payout2019-04-02 17:14:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation1,273,205,827,891
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,996,416
net_rshares0
@davidrian ·
Good job
properties (22)
authordavidrian
permlinkre-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t145941917z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2019-03-26 14:59:48
last_update2019-03-26 14:59:48
depth1
children0
last_payout2019-04-02 14:59:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation6,931,008,135
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,989,173
net_rshares0
@esteemapp ·
Thanks for using **eSteem**! <br>Your post has been voted as a part of [eSteem encouragement program](https://steemit.com/esteem/@good-karma/encouragement-program-continues-82eafcd10a299). Keep up the good work! Install [Android](https://play.google.com/store/apps/details?id=app.esteem.mobile), [iOS](https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1451896376&mt=8) Mobile app or [Windows, Mac, Linux](https://github.com/esteemapp/esteem-surfer/releases) Surfer app, if you haven't already!<br>Learn more: https://esteem.app <br>Join our discord: https://discord.gg/8eHupPq
properties (22)
authoresteemapp
permlinkre-2019326t143123974z
categorysteem
json_metadata{"tags":["esteem"],"app":"esteem/2.0-welcome","format":"markdown+html","community":"esteem.app"}
created2019-03-26 13:31:24
last_update2019-03-26 13:31:24
depth1
children0
last_payout2019-04-02 13:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length593
author_reputation420,443,679,514,793
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,985,126
net_rshares0
@khanza.aulia ·
!sources
👍  
properties (23)
authorkhanza.aulia
permlinkre-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t132937850z
categorysteem
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["steem"],"users":[],"links":[],"image":[]}
created2019-03-26 13:29:36
last_update2019-03-26 13:29:36
depth1
children1
last_payout2019-04-02 13:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation81,843,332,664,434
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,985,039
net_rshares538,261,328
author_curate_reward""
vote details (1)
@davidrian ·
Hai
properties (22)
authordavidrian
permlinkre-khanzaaulia-re-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t150054913z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2019-03-26 15:01:03
last_update2019-03-26 15:01:03
depth2
children0
last_payout2019-04-02 15:01:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation6,931,008,135
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,989,281
net_rshares0
@sorin.lite ·
Good ideas to be reused although, as you note, the full scenario  seems fraught ... as the blockchain is not only an accounting machine (main functionality you use here) but also a hard to erase memory ... so if the copyright owner does not agree with some past behaviour,  he can track past exchanges of files he owns and chase down the seeders ... with hard-to-predict legal consequences ...
👍  
properties (23)
authorsorin.lite
permlinkre-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t133807658z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2019-03-26 13:38:09
last_update2019-03-26 13:38:09
depth1
children1
last_payout2019-04-02 13:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length393
author_reputation15,495,039,207,555
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,985,382
net_rshares10,729,026,668
author_curate_reward""
vote details (1)
@warlkiry ·
Yes, this is actually very hard to deal with, and a very actual debat.
The decentralized constraint I wanted to deal with doesn't allow a lot of control on what is shared.
It could be solved by adding moderators who deletes copyrighted contents (which doesn't leave a lot of content) or by the centralization of the whole system, a digital marketplace like any other one who doesn't need big storage servers to let their user download.
Thanks for reading and for your review !
👍  
properties (23)
authorwarlkiry
permlinkre-sorinlite-re-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t142057907z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2019-03-26 14:21:00
last_update2019-03-26 14:21:00
depth2
children0
last_payout2019-04-02 14:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length476
author_reputation959,251,642,814
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,987,025
net_rshares508,112,727
author_curate_reward""
vote details (1)
@sources ·
When posting content that either is owned by someone else or inspired by someone else’s works, it is proper to list the said source in your post with a link to the original.

Failing to do so is considered plagiarism, and could result in being blacklisted by curation groups or even flagged. 

#### Examples include:

 * Using another artist's original drawing/painting/digital art as a “study” or inspiration without linking the original and giving credit to the original artist.
* Linking to someone else’s YouTube video with no source.
* Using someone else’s photos or text without linking to the original source etc.

<center>**Please make sure you do so in the future, thank you.**</center>
properties (22)
authorsources
permlinksources1553606982
categorysteem
json_metadata""
created2019-03-26 13:29:42
last_update2019-03-26 13:29:42
depth1
children0
last_payout2019-04-02 13:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length697
author_reputation47,332,633,582
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,985,041
net_rshares0
@steemitboard ·
Congratulations @warlkiry! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@warlkiry/voted.png?201903270008</td><td>You received more than 1000 upvotes. Your next target is to reach 2000 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@warlkiry) and compare to others on the [Steem Ranking](http://steemitboard.com/ranking/index.php?name=warlkiry)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Do not miss the last post from @steemitboard:**
<table><tr><td><a href="https://steemit.com/steem/@steemitboard/3-years-on-steem-happy-birthday-the-distribution-of-commemorative-badges-has-begun"><img src="https://steemitimages.com/64x128/http://u.cubeupload.com/arcange/BG6u6k.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/3-years-on-steem-happy-birthday-the-distribution-of-commemorative-badges-has-begun">3 years on Steem - The distribution of commemorative badges has begun!</a></td></tr><tr><td><a href="https://steemit.com/steem/@steemitboard/happy-birthday-the-steem-blockchain-is-running-for-3-years"><img src="https://steemitimages.com/64x128/http://u.cubeupload.com/arcange/BG6u6k.png"></a></td><td><a href="https://steemit.com/steem/@steemitboard/happy-birthday-the-steem-blockchain-is-running-for-3-years">Happy Birthday! The Steem blockchain is running for 3 years.</a></td></tr></table>

###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-warlkiry-20190327t063420000z
categorysteem
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-03-27 06:34:21
last_update2019-03-27 06:34:21
depth1
children0
last_payout2019-04-03 06:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,757
author_reputation38,975,615,169,260
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id82,023,966
net_rshares0
@triple-paradox ·
It is a very good idea. I have always been a torrent maniac. Hope someone would make your idea fruitful.
Rewards to seeders will be a reason for the increase in seeds.

Posted using [Partiko Android](https://partiko.app/referral/triple-paradox)
👍  
properties (23)
authortriple-paradox
permlinktriple-paradox-re-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t143707797z
categorysteem
json_metadata{"app":"partiko","client":"android"}
created2019-03-26 14:37:09
last_update2019-03-26 14:37:09
depth1
children1
last_payout2019-04-02 14:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation105,832,876,857
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,987,821
net_rshares10,604,926,023
author_curate_reward""
vote details (1)
@warlkiry ·
Thanks for your review ! I'll try to develop the technical means to create this app in a future post ^-^
Glad you enjoyed it !
👍  
properties (23)
authorwarlkiry
permlinkre-triple-paradox-triple-paradox-re-warlkiry-blockchain-idea-blockchain-based-torrent-tracker-20190326t151812244z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2019-03-26 15:18:12
last_update2019-03-26 15:18:12
depth2
children0
last_payout2019-04-02 15:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation959,251,642,814
root_title"Blockchain Idea: Blockchain based torrent tracker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,990,260
net_rshares530,809,408
author_curate_reward""
vote details (1)