Bitcoin Forum
April 25, 2024, 02:14:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 »
1  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 02, 2015, 10:16:23 AM
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.
2  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: May 28, 2014, 02:16:05 AM
Where are you that you are just waking up?  It's 6pm here.

Maybe the suspense threw off his sleeping schedule.
3  Bitcoin / Development & Technical Discussion / Re: time field on a transaction using javascript on: May 24, 2014, 01:20:33 AM
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()
4  Bitcoin / Development & Technical Discussion / Re: simbit - p2p network simulator on: May 13, 2014, 06:22:56 PM
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.
5  Bitcoin / Development & Technical Discussion / Re: simbit - p2p network simulator on: May 10, 2014, 10:55:09 AM
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:



6  Bitcoin / Development & Technical Discussion / Re: simbit - p2p network simulator on: May 10, 2014, 10:54:58 AM
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.

7  Bitcoin / Development & Technical Discussion / simbit - p2p network simulator on: May 10, 2014, 10:54:47 AM
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.
8  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: April 16, 2014, 06:15:27 AM
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.
9  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: April 16, 2014, 04:02:19 AM
friedcat finally handled a lot of shareholder transfers the last couple days, so I'm expecting a dividend finally today.
10  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 27, 2014, 12:16:00 AM
Ah, good to know! Care to reveal how many shares changed hands? Smiley

All of the ones up for auction at least.
11  Economy / Auctions / Re: ASICMINER Shares: 500 for sale on: March 27, 2014, 12:04:58 AM
All sold out for near future, will reply when more are available.
12  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 27, 2014, 12:03:55 AM
Assuming the trades I'm doing now are done, my auction should be finished.
13  Economy / Auctions / Re: ASICMINER Shares: 500 for sale on: March 25, 2014, 07:31:09 PM
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.
14  Economy / Auctions / Re: ASICMINER Shares: 500 for sale on: March 25, 2014, 01:51:26 AM
Still selling at the same price (0.6), let me know if you're interested.
15  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 20, 2014, 02:42:05 AM
Board members should raise this issue with friedcat.
16  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 19, 2014, 07:34:51 PM
No dividend yet? Weird...
17  Bitcoin / Project Development / Re: Address watcher... on: March 19, 2014, 02:34:54 AM
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.
18  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 13, 2014, 12:39:32 AM
I also received 0.00007777 per share. Were these dividends fairly distributed to shareholders? What's going on?
19  Bitcoin / Development & Technical Discussion / Re: txNew.vout[0].scriptPubKey in main.cpp? on: March 06, 2014, 07:33:22 PM
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
20  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: March 04, 2014, 10:55:27 AM
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.
Pages: [1] 2 3 4 5 6 7 8 9 10 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!