Author

Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 - page 770. (Read 2171056 times)

member
Activity: 89
Merit: 10
The difficulty is continuing to rise. We've definitively crossed 5 PB network size by now. Here's the updated charts that I've been using to track difficulty:





How did you get this info? what's your source? that block explorer on the O.P is kinda deceiving. I wish there was a site less flashy and more detailed.

I wrote a script that queries my local burst wallet for the baseTarget for every block. The baseTarget can be used to calculate the total network size.

It's a little but of a manual process, but here's the ruby script I run to update the data (requires the 'rest-client' gem):

Code:
require 'json'
require 'rest_client'

class ApiClient
  def initialize(url = 'http://localhost:8125/burst')
    @url = url
  end

  def request(type, args = {})
    url_args = args.map{|a, b| "#{a}=#{b}"}.join('&')
    request_url = "#{@url}?requestType=#{type}"
    request_url += '&' + url_args if url_args
    JSON.parse(RestClient.get(request_url))
  end
end

def print_last_blocks(target)
  api_client = ApiClient.new
  genesis_time = Time.utc(2014, 8, 11, 2)

  status = api_client.request('getBlockchainStatus')
  lastBlock = status['lastBlock']
  output = []
  loop do
    block = api_client.request('getBlock', {block: lastBlock})
    array =  %w{height baseTarget timestamp}.map{|s| block[s]}
    array << (genesis_time + block['timestamp']).to_s.gsub(' UTC', '')
    array << 2.0 ** 64 / block['baseTarget'].to_i / 4 / 240 / 1024 / 1024
    output << array.join(',')
    lastBlock = block['previousBlock']
    break if block['height'] <= target + 1
  end
  puts output.reverse.join("\n")
end

Then, from an irb shell, I just run something like "print_last_blocks(13000)" (I change 13000 so that it only prints the blocks since the last time I ran it), and it spits out a bunch of comma separated values that I copy and paste into a gnumeric spreadsheet. In the spreadsheet, I have a dynamically computed column for the 360 block moving average.
sr. member
Activity: 397
Merit: 250
http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Enough people trust you....but anything with a .farm tld makes one a little suspicious Wink

please wait
 Cry
sr. member
Activity: 280
Merit: 250
hi burstcoin,

do you change your targetdeadline to 125000?........ nice
Probably will take it up to 150k tomorrow, but just stepping it up slowly.
full member
Activity: 224
Merit: 100
http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Enough people trust you....but anything with a .farm tld makes one a little suspicious Wink

He told me to give him 0.3 BTC and he wil install the pool on my server...

And speaking of pools. We need more hash power over at http://burstpool.ddns.net
sr. member
Activity: 280
Merit: 250
Is the dev still active here?
Yeah, I'm still here every day.

So what are the new api calls?

The ones that come to mind right now are:
getMiningInfo (no extra params)
gives info for mining. example:
{"baseTarget":"2880322","height":"13884","generationSignature":"bf903dd43395da657be20e08d8cd4c3c2aaf01610da5674983b478fe45bca3ed"}

submitNonce (secretPhrase, nonce, accountId)
for solo mining, only secretPhrase and nonce are needed.
for v2 pooling, give pool's secretPhrase with miner's nonce and accountId.
returns JSON with result and if everything good, deadline

setRewardRecipient (secretPhrase, recipient)

getRewardRecipient (account)
returns JSON {"rewardRecipient":""} showing what numeric address the reward recipient of the supplied account is set to

getAccountsWithRewardRecipient (account)
returns JSON {"accounts":[]} showing what account ids have their reward recipient set to the supplied account. This is intended for use by pools, and a user stops showing up on this list when a new assignment has been confirmed, even though it hasn't taken effect yet, to give pools sufficient time to react to the change. A pool can effectively use this list as a registered users list when the call it with their own id.
hero member
Activity: 588
Merit: 500
http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes

Enough people trust you....but anything with a .farm tld makes one a little suspicious Wink
newbie
Activity: 42
Merit: 0
Hmmm....dunno why, but fixed anyway(i didn't make the bit ly links but I don't know why It'd do that)

Guess they just don't like MEGA...
btw, not sure if you're working on it but it will be nice if there's a separate download section in the menu and a big download button on the front page that leads to that section.
full member
Activity: 224
Merit: 100
http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

And people don't trust me. An active member in the community... Roll Eyes
hero member
Activity: 1036
Merit: 531
Problem on uray V2 again?
hero member
Activity: 588
Merit: 500
http://cryptomining.farm/ - no payouts within 24 hours and now is down. Don't trust this shit.

Can anyone confirm?
hero member
Activity: 588
Merit: 500
You've left a ( after dcct's R2 miner and in the tools section it also says Dcct miner for Uray's pool.
Also bit . ly is showing some warnings that may scare the users...

//EDIT:
There's also some duplicate content... for example you have 2 links for dcct's tools and 2 links for Janror's plotter

What was that link?


Every bit . ly link I clicked on the site is showing me a warning

Hmmm....dunno why, but fixed anyway(i didn't make the bit ly links but I don't know why It'd do that)
newbie
Activity: 42
Merit: 0
You've left a ( after dcct's R2 miner and in the tools section it also says Dcct miner for Uray's pool.
Also bit . ly is showing some warnings that may scare the users...

//EDIT:
There's also some duplicate content... for example you have 2 links for dcct's tools and 2 links for Janror's plotter

What was that link?


Every bit . ly link I clicked on the site is showing me a warning
member
Activity: 84
Merit: 10
hi burstcoin,

do you change your targetdeadline to 125000?........ nice
hero member
Activity: 588
Merit: 500
You've left a ( after dcct's R2 miner and in the tools section it also says Dcct miner for Uray's pool.
Also bit . ly is showing some warnings that may scare the users...

//EDIT:
There's also some duplicate content... for example you have 2 links for dcct's tools and 2 links for Janror's plotter

What was that link?
newbie
Activity: 42
Merit: 0
You've left a ( after dcct's R2 miner and in the tools section it also says Dcct miner for Uray's pool.
Also bit . ly is showing some warnings that may scare the users...

//EDIT:
There's also some duplicate content... for example you have 2 links for dcct's tools and 2 links for Janror's plotter
hero member
Activity: 588
Merit: 500
@Irontiga - You can add the bittrex link in the exchanges section ( https://bittrex.com/Market/Index?MarketName=BTC-BURST ) and koko2530's pool address - http://cryptomining.farm/

Ok, done, anything else?

I've edited my post before your reply, so check it again Smiley

Ok, links to the announcement now
newbie
Activity: 42
Merit: 0
@Irontiga - You can add the bittrex link in the exchanges section ( https://bittrex.com/Market/Index?MarketName=BTC-BURST ) and koko2530's pool address - http://cryptomining.farm/

Ok, done, anything else?

I've edited my post before your reply, so check it again Smiley
hero member
Activity: 588
Merit: 500
@Irontiga - You can add the bittrex link in the exchanges section ( https://bittrex.com/Market/Index?MarketName=BTC-BURST ) and koko2530's pool address - http://cryptomining.farm/

Ok, done, anything else?
full member
Activity: 224
Merit: 100
How much nonces/min do you get? Have you already tried the new c++ windows plotter?

8200 for me using the new plotter. Or 10000 using the /async option.
On i7 4770k at 4 Gh using 7 cores only
Jump to: