- Joined
- Jul 21, 2020
During the main thread I saw small glimpses of people trying to keep up with Ralph's finances but it was completely drowned out when major events happened. This is why we should have dedicated thread to discussing how Ralph is doing Financially.
In the leaks released we got this screenshot with ralph claiming he has around 35K.(for some reason I can't add the screenshot)

The SPLC in their article about extremist on DLive included TheRalphRetort's earnings. From April 16 - Late October 2020 he made $24,346.03.

ARTICLE | ARCHIVE
Know Streams of income as of January 17th 2021
DLive: https://dlive.tv/theralphretort (Demonetized and banned after the capitol hill riots)
Trovo: https://trovo.live/theralphretort
Patreon: https://www.patreon.com/theralphretort
His Merch store: https://shop.theralphretort.com/
StreamElements: https://streamelements.com/colorfulralph/tip
Suscribestar: https://www.subscribestar.com/theralphretort
Here is the Python script written by @irujdksajksdjlsk to get everything from the Earnings Tab on Dlive.
According to Sam losco's post it still worked on Nov. 26 even with the earning tab being removed by Dlive. Still works.
During Sam Losco's tenure as the main stream sniper for the kill stream he kept track of the lemons.

docs.google.com
In the leaks released we got this screenshot with ralph claiming he has around 35K.

The SPLC in their article about extremist on DLive included TheRalphRetort's earnings. From April 16 - Late October 2020 he made $24,346.03.

ARTICLE | ARCHIVE
Know Streams of income as of January 17th 2021
Trovo: https://trovo.live/theralphretort
Patreon: https://www.patreon.com/theralphretort
His Merch store: https://shop.theralphretort.com/
StreamElements: https://streamelements.com/colorfulralph/tip
Suscribestar: https://www.subscribestar.com/theralphretort
Here is the Python script written by @irujdksajksdjlsk to get everything from the Earnings Tab on Dlive.
Code:
import requests
import json
import re
displayname = 'theralphretort'
after = '99999999999'
csv = open(displayname + '-earnings.csv', 'w')
csv.write('id,sender,recipient,amount,timestamp\n')
pattern = re.compile('@([^\s]+) donated (\d+) LEMON\(s\) to post ([^\+]+)\+.*')
while after != '':
earnings = json.loads(requests.post('https://graphigo.prd.dlive.tv/',data=
'{"operationName":"LivestreamProfileWallet","variables":{"displayname":"'
+ displayname + '","first":20,"isLoggedIn":false,"after":"' + after + '"},' +
'"extensions":{"persistedQuery":{"version":1,"sha256Hash":' +
'"bea6cdfec46735f1d7510acc1cd0823585dfb7feb6b20ecba886fd678b60c699"}}}').text)
earnings = earnings['data']['userByDisplayName']['transactions']
after = earnings['pageInfo']['endCursor']
for transaction in earnings['list']:
match = pattern.match(transaction['description'])
if bool(match):
csv.write(transaction['seq'] + ',')
csv.write(match.group(1) + ',')
csv.write(match.group(3) + ',')
csv.write(match.group(2) + ',')
csv.write(transaction['createdAt'] + '\n')
csv.close()
During Sam Losco's tenure as the main stream sniper for the kill stream he kept track of the lemons.

Lemon Chart
Sheet1 Date,Lemons,Duration (libsyn) Fri 9/11/20,10570,1:53:27 Mon 9/14/20,15970,2:33:42 Tue 9/15/20,6010,2:27:05 Thu 9/17/20,12290,2:45:03 Fri 9/18/20,16710,3:10:18 Mon 9/21/20,10730,2:39:11 Tue 9/22/20,14810,2:50:52 Wed 9/23/20,16690,2:56:43 Thu 9/24/20,11180,2:24:49 Fri 9/25/20,35110,2:57:43...
Last edited: