Search content
Sort by

Showing 20 of 198 results by eb3full
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 02/03/2015, 10:16:23 UTC
PM me if you'd like, I have over 900 shares still. I'll be selling to best offers, though I'm not sure how long the (direct share) transfer will take.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 28/05/2014, 02:16:05 UTC
Where are you that you are just waking up?  It's 6pm here.

Maybe the suspense threw off his sleeping schedule.
Post
Topic
Board Development & Technical Discussion
Re: time field on a transaction using javascript
by
eb3full
on 24/05/2014, 01:20:33 UTC
Is objectTransaction.time a unix timestamp? The Date constructor requires timestamps in milliseconds, so you need to do:

Code:
new Date(objectTransaction.time * 1000).toUTCString()
Post
Topic
Board Development & Technical Discussion
Re: simbit - p2p network simulator
by
eb3full
on 13/05/2014, 18:22:56 UTC
It's not too hard to collect stale block/share rates and propagation time of messages, I'll build that into the inventory system soon.

Right now the MinCen simulation isn't a good model of mincen yet for the following reasons:

  • No MTUs
  • No merkle blocks
  • Nodes don't adjust peering relationships based on which nodes have best connectivity to miners
  • Nodes don't enforce transaction verification before relaying shares
  • Transactions aren't being created

When those things are added I can get all of the stats you were simulating before.

Supporting DECOR/GHOST is also on my todo list.
Post
Topic
Board Development & Technical Discussion
Re: simbit - p2p network simulator
by
eb3full
on 10/05/2014, 10:55:09 UTC
Selfish Mining Attack

Demo: http://ebfull.github.io/index-selfish.html
Code: https://github.com/ebfull/simbit/blob/master/sim-selfish.js

simbit was originally created to simulate this attack, and I got some pretty graphs out of it:



Post
Topic
Board Development & Technical Discussion
Re: simbit - p2p network simulator
by
eb3full
on 10/05/2014, 10:54:58 UTC
MinCen Simulation

Demo: http://ebfull.github.io/
Code: https://github.com/ebfull/simbit/blob/master/sim.js

Sergio's MinCen is an interesting incentive structure for aggregating mining and discouraging forks in the chain, which comes in handy when block intervals are decreased below network propagation rates. It is a quasi-decentralized system in which miners voluntarily delegate to a master (or manager) party whose primary purpose is to select the winning branch and prevent a wasteful race. In theory, if the master attempts to abuse their position, it is in complete view of the network and the master will be abandoned. Some malicious actions can be prevented with fraud proofs.

I've created a bare-bones simulation of this protocol with 1 minute block times, with M=16 share slots. This is just a demonstration; a thorough analysis of MinCen would require much more to be implemented.

Post
Topic
Board Development & Technical Discussion
Topic OP
simbit - p2p network simulator
by
eb3full
on 10/05/2014, 10:54:47 UTC
simbit is a javascript p2p network simulator which focuses on consensus networks like Bitcoin. It can be executed with Node (in clustered simulations) or in the web browser with visualization. It is a general framework for simulating any number of latency-sensitive networks, strategies and protocols.


Project page: http://github.com/ebfull/simbit

The standard bitcoin simulation includes a working blockchain (with difficulty adjustment, reorgs), maporphans, mempool, UTXO, orphan transactions, inventory system, peer manager and mining simulator.

This is still in alpha. In fact the TCP-like network interface for nodes does not yet account for the size of messages between nodes, and nodes do not yet (but can) simulate computational delay. Also, the network topography is really arbitrary and probably does not represent the real bitcoin network. It also does not come close to perfectly representing the reference client.

I would love feedback, and if you have anything you'd like added or simulated using this framework feel free to bring it up to me. The goal of this framework isn't exactly to be the most efficient possible, but fun and easy to develop with.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 16/04/2014, 06:15:27 UTC
friedcat finally handled a lot of shareholder transfers the last couple days, so I'm expecting a dividend finally today.

Good luck with that, the last dividend payouts were

20140330
20140320
20140312
20140305

See the pattern?

We've had months with no dividends before, with no communication. They're busy and they keep their heads low. I have less reason than ever to be concerned about no dividends.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 16/04/2014, 04:02:19 UTC
friedcat finally handled a lot of shareholder transfers the last couple days, so I'm expecting a dividend finally today.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 27/03/2014, 00:16:00 UTC
Ah, good to know! Care to reveal how many shares changed hands? Smiley

All of the ones up for auction at least.
Post
Topic
Board Auctions
Re: ASICMINER Shares: 500 for sale
by
eb3full
on 27/03/2014, 00:04:58 UTC
All sold out for near future, will reply when more are available.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 27/03/2014, 00:03:55 UTC
Assuming the trades I'm doing now are done, my auction should be finished.
Post
Topic
Board Auctions
Re: ASICMINER Shares: 500 for sale
by
eb3full
on 25/03/2014, 19:31:09 UTC
I would just add that I purchased a from eb3full without escrow. He simply created a contract and emailed it to friedcat with a deadline for payment to be sent to a certain address.

Went very smoothly and showed the power of Public-Private key encryption.

+1
Never understood why escrow is ever needed for Asicminer transfers.  Did friedcat confirm the contract to you before payment?

friedcat can confirm ownership of the shares, it just takes a bit longer to get a reply from him like that.
Post
Topic
Board Auctions
Re: ASICMINER Shares: 500 for sale
by
eb3full
on 25/03/2014, 01:51:26 UTC
Still selling at the same price (0.6), let me know if you're interested.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 20/03/2014, 02:42:05 UTC
Board members should raise this issue with friedcat.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 19/03/2014, 19:34:51 UTC
No dividend yet? Weird...
Post
Topic
Board Project Development
Re: Address watcher...
by
eb3full
on 19/03/2014, 02:34:54 UTC
You can do this with bitcoind using (experimental) support for watchonly wallets.

The only branch I know of that properly functions right now is sipa's watchonly branch:

https://github.com/sipa/bitcoin/tree/watchonly

You're looking for the importaddress command.
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 13/03/2014, 00:39:32 UTC
I also received 0.00007777 per share. Were these dividends fairly distributed to shareholders? What's going on?
Post
Topic
Board Development & Technical Discussion
Re: txNew.vout[0].scriptPubKey in main.cpp?
by
eb3full
on 06/03/2014, 19:33:22 UTC
It is used to generate the genesis block, from which all other blocks ultimately derive. Presumably Satoshi has the private key for that txout, but it's unspendable anyway.

https://blockchain.info/block/000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f

https://blockchain.info/tx/4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b
Post
Topic
Board Securities
Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It
by
eb3full
on 04/03/2014, 10:55:27 UTC
Conceptually I like option 3 but without regulation what protection is there in anything regarding BTC other than the currency itself? I'm sure FC is a stand up guy but what mechanism or condition is in place for investors to have any assurance they will see benefits from their investment should things really move in a positive manner?

Things moved in a very positive manner last year (20% network hashrate) and friedcat dished out enormous dividends.