Search content
Sort by

Showing 6 of 6 results by datester35
Post
Topic
(Unknown Title)
by
datester35
on 21/02/2020, 20:44:00 UTC
I have been searching this site, google, and some other sites, for 3 hours now. I can't find a simple tutorial on how to make my own cryptocoin, aka clone bitcoin or litecoin or something like that. Please, can someone give me a link to a full manual, step by step, or write it in a forum post? I know that people say that we have enough altcoins already, but I just really want to see how it is even possible to make one.
Post
Topic
(Unknown Title)
by
datester35
on 13/02/2020, 16:15:00 UTC
I'm still getting "No Pools!" on the miner, so I would assume so.
Post
Topic
Board Service Announcements (Altcoins)
Re: [Innovamine.io] CloudMining - Legit & Paying [SCAM!!!]
by
datester35
on 15/07/2019, 18:46:13 UTC
I think they pulled through the exit scam, but considering they are registered in Australia is there anything anyone can do to get them to legally pay reparations?

Edit as of 06:55: Website appears to be back online, but it says to contact support to confirm withdrawal. I have never had this happen before. Do not invest.
Post
Topic
Board Auctions
Re: .com Domains: BitcoinTransit, WalletEncryption, LedgerSpy and more!
by
datester35
on 10/07/2019, 16:38:09 UTC
What is your starting auction price for each of these?
Post
Topic
Board Service Announcements (Altcoins)
Re: [Innovamine.io] CloudMining - Legit & Paying
by
datester35
on 10/07/2019, 16:30:10 UTC
Yeah, I can confirm that they are somewhat sketchy. Also, with my calculator it seems like it becomes unsustainable for them between 9-12 months (depending on how many people reinvest). I was a member of gaw miners and zen miner when they first had that, and this is a little reminiscent of that. However, it does say that you can schedule a meeting, although it looks like the first available date is in August. I would like to point out that due to the amazing rewards right now, there is either a possibility of them being a ponzi scheme, or simply that they will have to increase the prices of their mining contracts (I think other companies have done this before).
Post
Topic
Board Service Announcements (Altcoins)
Re: [Innovamine.io] CloudMining - Legit & Paying
by
datester35
on 10/07/2019, 06:55:09 UTC
I can confirm that this website is still paying, as here is a withdrawal that was processed instantly
https://www.blockchain.com/btc/tx/a1e3ca96a49710401d3c25391d17ebcf9fc1df40b1b9db967a6e42d91094c107

I have also programmed a calculator in Python that can be used to calculate the amount earned (assuming reinvestment), you can use it in an online python compiler (such as repl.it) if you don't have python installed
Code:
import requests

instances = []
balance = 0
total_earned = 0
days = 0
#simulation length in days
simulation_length = 120
starting_investment = 0.00759814268;
#Hashrate in terahashes
totalhashrate = 0
#So apparently the cloud mining is more profitable then predicted
calcrate = 1.307

bitcoin_api_url = 'https://api.coinmarketcap.com/v1/ticker/bitcoin/'
response = requests.get(bitcoin_api_url)
response_json = response.json()
btcprice = response_json[0]['price_usd']


calculator_api_url = "https://alloscomp.com/bitcoin/calculator/json?hashrate=1000000000000"
calcresponse = requests.get(calculator_api_url)
calcresponse_json = calcresponse.json()
th_coins_per_day=24*calcresponse_json['coins_per_hour']*calcrate
print ("The current btc per Terahash per day is "+'{0:.12f}'.format(th_coins_per_day)+" or "+'{0:.8f}'.format(float(th_coins_per_day)*(float(btcprice)))+" USD")
print ("The current price of bitcoin is " + str(btcprice))



class MiningInstance:
  def __init__(self, costbtc):
    global InstanceList
    global btcprice
    self.cost = float(costbtc)
    self.hashrate = (float(self.cost)*float(btcprice))/15.38
    instances.append(self)

print ("Your starting investment is "+str(starting_investment)+" btc or "+str(float(starting_investment)*float(btcprice))+" USD")

y = MiningInstance(starting_investment)

for i in range (1,simulation_length+1):
  totalhashrate = 0
  for x in instances:
    totalhashrate+=x.hashrate
  daily_earnings = totalhashrate*th_coins_per_day
  balance+=daily_earnings
  total_earned+=daily_earnings
  print ("Day:"+str(i)+" Balance is "+'{0:.8f}'.format(balance)+" You have "+str(len(instances))+" Mining instances producing "+'{0:.8f}'.format(daily_earnings)+" btc or "+'{0:.4f}'.format(float(daily_earnings)*float(btcprice))+"$ per day \nYour total earned is "+'{0:.8f}'.format(total_earned)+" btc")
  if (float(balance)*float(btcprice))>=20:
    j = MiningInstance(balance)
    balance = 0

Please also consider using my coupon for 6% off SIXFREEEXTRA if you found this calculator helpful. I would greatly appreciate it.