Bitcoin Forum
May 03, 2024, 08:58:01 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 11 12 13 »
161  Alternate cryptocurrencies / Altcoin Discussion / Re: Bitshares Meme Creation Competition! on: June 08, 2014, 08:56:10 PM
A few submissions so far.. if you can do better, easy way to earn Bitshares-PTS !

162  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ○ Marscoin [MRS] Colonizing Mars! on: June 08, 2014, 11:14:05 AM
Man, marscoin is awesome. Someone contact Elon Musk Cheesy
163  Alternate cryptocurrencies / Altcoin Discussion / Bitshares Meme Creation Competition! on: June 07, 2014, 07:10:10 PM
Bitshares Meme Creation Competition!

Any kind of meme can win as the Bitshares community votes with the power of their Smiley

Post in this thread --> https://bitsharestalk.org/index.php?topic=4912.0

The prizes are given in BitShares-PTS (formerly known as ProtoShares).

1st place 5 PTS ($20+)

2nd place 3 PTS

3rd place 2 PTS


In addition,

the first 10 posts that get more than 30 points will be awarded 0.5 PTS each! (1/10 claimed)

Points are calculated by the amount of   each member posts in response to a given meme. Each member can give to each meme   for 5 points,   for 10 points and for 15 points.

Now, lets have some fun!!  Cheesy

You must post your submission in the following thread. To avoid spam only members with 10 or more reasonable posts can vote. Anyone can post. People can not vote for their own memes, and the meme must be original to this competition. The competition ends at midnight CET 30. June 2014.
164  Bitcoin / Project Development / Re: [ANN] Beyond Bitcoin Show on: June 07, 2014, 01:10:42 PM
Loved the Sunny King interview and the NXT discussion about asset exchange, and of course Dan Larimer is always on point and interesting.
165  Alternate cryptocurrencies / Altcoin Discussion / Re: Which Proof of Stake System is the Most Viable on: May 27, 2014, 12:14:25 PM
Judging by all these PoS-revivals of old PoW coins, it seems PoS is catching on! Will be interesting to see dPOS in action.
166  Economy / Economics / Re: Personal finance advice / ideas needed on: May 27, 2014, 12:05:45 PM
Spread a little bit to everywhere proportional to your feelings about it, so long as you can keep track of it all. Do not be emotional or lazy, just do what you think is best.

Good advice is simple but harder than it sounds! Smiley
167  Alternate cryptocurrencies / Altcoin Discussion / Re: Delegated Proof of Stake (DPOS) White Paper by Daniel Larimer on: May 18, 2014, 10:02:59 PM
Update from https://bitsharestalk.org/index.php?topic=4480.msg58250#msg58250

Follow essential updates here, https://bitsharestalk.org/index.php?topic=3812.15

I have working DPOS chain with instructions here: http://bitshares.org/documentation/group__dpos__manual__testing.html

This is working with full P2P mode, DPOS delegates producing blocks, and the new level_db based wallet....

I will be refining this a tad further and keep you all posted on when we can resume the test.

 +5%
Plan to test it this weekend

I have updated the testing instructions here: http://bitshares.org/documentation/group__dpos__manual__testing.html

Primary changes are in the API usage and wallet management.    The primary goal is to get people away from sending to an 'address' and instead sending to an 'account' where the account is a hierarchal key.  Every time you send to an account it will use a different public key (address) and eventually this will allow automation of privacy enhancing transactions.   

We have also extended the API / implemented more of it.   See info here:
Code:
blockchain_get_block <block_hash>                                       Retrieves the block header for the given block hash
blockchain_get_block_by_number <block_number>                           Retrieves the block header for the given block number
blockchain_get_blockcount                                               Returns the number of blocks in the longest block chain.
blockchain_get_blockhash <block_num>                                    Returns hash of block in best-block-chain at index provided..
blockchain_get_delegates [first] [count]                                Returns the list of delegates sorted by vote
blockchain_get_name_record <name>                                       Retrieves the name record
blockchain_get_names [first] [count]                                    Returns the list of reserved names sorted alphabetically
blockchain_get_transaction <transaction_id>                             Get detailed information about an in-wallet transaction
get_info                                                                Provides common data, such as balance, block count, connections, and lock time
help [command]                                                          Lists commands or detailed help for specified command.
network_add_node <node> <command>                                       Attempts add or remove <node> from the peer list or try a connection to <node> once
network_get_connection_count                                            Returns the number of connections to other nodes.
network_get_peer_info                                                   Returns data about each connected node.
stop                                                                    Stop BitShares server
validate_address <address>                                              Return information about given BitShares address.
wallet_close                                                            Closes the curent wallet if one is open.
wallet_create <wallet_name> <password>                                  Opens the wallet of the given name
wallet_create_receive_account <account_name>                            Add new account for receiving payments
wallet_create_sending_account <account_name> <account_key>              Add new account for sending payments
wallet_get_account <account_name>                                       Lists all foreign addresses and their labels associated with this wallet
wallet_get_balance [account_name] [minconf] [asset]                     Returns the wallet's current balance
wallet_get_name                                                         Returns the wallet name passed to wallet_open
wallet_get_transaction_history [count]                                  Retrieves all transactions into or out of this wallet.
wallet_import_bitcoin <filename> <password>                             Import a BTC/PTS wallet
wallet_import_private_key <key> [account_name] [wallet_rescan_blockchain]   Import a BTC/PTS private key in wallet import format (WIF)
wallet_list_receive_accounts [start] [count]                            Lists all foreign addresses and their labels associated with this wallet
wallet_list_reserved_names [account_name]                               Lists all reserved names controlled by this wallet, filtered by account.
wallet_list_sending_accounts [start] [count]                            Lists all foreign addresses and their labels associated with this wallet
wallet_lock                                                             Lock the private keys in wallet, disables spending commands until unlocked
wallet_open <wallet_name> <password>                                    Opens the wallet of the given name
wallet_open_file <wallet_file> <password>                               Opens the wallet at the given path.
wallet_register_delegate <name> <data>                                  Registeres a delegate to be voted upon by shareholders.
wallet_rename_account <current_account_name> <new_account_name>         Lists all reserved names controlled by this wallet, filtered by account.
wallet_rescan_blockchain [starting_block]                               Rescan the block chain from the given block
wallet_rescan_blockchain_state                                          Rescans the genesis block and state (not the transactions)
wallet_reserve_name <name> <data>                                       Retrieves the name record
wallet_transfer <amount> <sending_account_name> [invoice_memo] [from_account] [asset_id]   Sends given amount to the given address, assumes shares in DAC
wallet_unlock <spending_pass> <timeout>                                 Unlock the private keys in the wallet to enable spending operations

If you are curious about the new transaction structure you can view an example json dump here:
Code:
{
           "expiration": null,
           "delegate_id": null,
           "operations": [{
               "type": "withdraw_op_type",
               "data": {
                 "balance_id": "XTSKh6JP6QzMmeUmmK1T16gxgadrJ547ocGT",
                 "amount": 154321,
                 "claim_input_data": ""
               }
             },{
               "type": "deposit_op_type",
               "data": {
                 "amount": 54321,
                 "condition": {
                   "asset_id": 0,
                   "delegate_id": 8,
                   "condition": "withdraw_signature_type",
                   "data": {
                     "owner": "XTSAg5YxD9reTXr5iQWBZEJrLzzMxMxvnFhy"
                   }
                 }
               }
             }
           ],
           "signatures": [
             "2028da68efe2696ab7895e86c1b35affbb7cd1b71d8f33124fe81ad785ace3ed55226e0e622098b9c45f8660801b4b929556102c3da549d887c5da99262b5c6275"
           ]
}

As you can see this transaction is entirely human readable outside the context of the blockchain,  it is transferring 154321 from XTSKh6JP6QzMmeUmmK1T16gxgadrJ547ocGT and sending 54321  to XTSAg5YxD9reTXr5iQWBZEJrLzzMxMxvnFhy while paying a fee of 100000.
168  Alternate cryptocurrencies / Altcoin Discussion / Re: Transcript of Chat Between Sunny King (Peercoin) & Daniel Larimer (Bitshares) on: May 12, 2014, 01:07:51 PM
Economy should be a science. If it attains truth, then perceived complexity is irrelevant. The important thing is that it becomes more like astronomy and chemistry than like astrology and alchemy. I for one used to hate economy, but after reading the work of Daniel Larimer and others in this space I have come to appreciate some of the truths that it embeds and the importance it holds for the successful future of mankind.

The ancients may have distrusted and regarded alchemy as black magic, a force for evils like the hubris of eternal life, the greed of infinite gold and the death of crafted poisons; mysterious forces where used in secret by the few to exploit the many. However, as the science of substance progressed to become more like chemistry the rumors of black magic gradually disappeared. The few no longer had any secret knowledge, and everyone recognized that the intent and beliefs of humans had no influence over the truths of chemistry.

Thus the truths of chemistry came to radiate with their own peculiar cold, white light. When will Economy do the same? I believe we are on the brink.
169  Alternate cryptocurrencies / Altcoin Discussion / Re: Transcript of Chat Between Sunny King (Peercoin) & Daniel Larimer (Bitshares) on: May 11, 2014, 03:24:27 PM
Interesting! Hopefully the major developers in this space will be meeting up more often. Smiley
170  Alternate cryptocurrencies / Altcoin Discussion / Daniel Larimer on Bitshares - Shares in Distributed Autonomous Companies on: May 05, 2014, 07:54:41 PM
Daniel Larimer of Bitshares explains how cryptocurrencies can be viewed as shares in Distributed Autonomous Companies (DACs).

https://www.youtube.com/watch?v=7mwmlJICyRA

By this logic of viewing cryptocurrencies as shares in a company, Bitcoin (the company) spends hundreds of millions of dollars a year just to pay their employees (miners) for security, and gives no voting rights or dividends to normal shareholders (the holders and users of the bitcoin currency).
171  Alternate cryptocurrencies / Altcoin Discussion / Re: [POLL] Which altcoin should replace Auroracoin in the ALTDEX? on: April 17, 2014, 02:35:50 PM
PTS sort of tracks expectations of how well the entire bitshares ecosystem is doing so I think it has more information about the altcoin market as a whole

This.
172  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Invictus Innovations ProtoShares Cheat Sheet | CPU Mining on: April 15, 2014, 09:59:08 PM
That chart helps clear up a lot of confusion, thanks.

I believe I read BitShares Domain is being renamed to .p2p.

There's a discussion going here, https://bitsharestalk.org/index.php?topic=3971.0
173  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Invictus Innovations ProtoShares Cheat Sheet | CPU Mining on: April 11, 2014, 02:20:13 AM
More talks than codes seems quite fishy to me. I'd rather to see more progress in the product side.  They've got more than enough funds and attentions. Please concentrate on the developing now.

Based on their regular updates things are getting close.  They have been active with conferences to help spread the word as you can see on their facebook page.

https://www.facebook.com/officialbitshares

Bitshares XT will be liquid any day now. Video. DPOS white paper. March newsletter.




174  Alternate cryptocurrencies / Altcoin Discussion / Re: FAIRCOIN MULTIPOOL on: April 09, 2014, 02:09:57 PM
When is the first purchase?
175  Other / Off-topic / Re: Daniel Larimer is a prophet on: April 08, 2014, 03:00:24 PM

http://bitshares.org/banking/ (note that the site under heavy development atm)
176  Bitcoin / Legal / Re: [ANN] Consortium of Decentralized Applications on: April 08, 2014, 02:57:21 PM
What's up with this project? Is the site in active development still?
177  Alternate cryptocurrencies / Altcoin Discussion / Re: Delegated Proof of Stake (DPOS) White Paper by Daniel Larimer on: April 06, 2014, 12:01:50 PM
Sounds great on paper - hoping to see it implemented somewhere soon!

Quick question: what prevents Ripple from utilizing DPOS to generate future unique node lists?

I quoted you on the bitsharestalk forum and Daniel "bytemaster" Larimer and delulo replied,

From bitcointalk, https://bitcointalk.org/index.php?topic=558316.msg6086884#msg6086884

Sounds great on paper - hoping to see it implemented somewhere soon!

Quick question: what prevents Ripple from utilizing DPOS to generate future unique node lists?

Nothing prevents Ripple from doing this..

The difference is: It wouldn't make much of a difference towards the current state of ripple because they control more than 50% of the money supply anyway... The more distributed BTS are the more decentralized it is!!

Inside Ripple the 90% are divided among many players..... so it may still be of some use to them... especially if they ever want to sell.

Good point. But the potential for collusion is still higher than with BTS shareholders...

Join the discussion here https://bitsharestalk.org/index.php?topic=4009.0 Smiley
178  Alternate cryptocurrencies / Altcoin Discussion / Delegated Proof of Stake (DPOS) White Paper by Daniel Larimer on: April 05, 2014, 12:22:13 PM
Delegated Proof-of-Stake (DPOS)
by Daniel Larimer
April 3, 2014

Abstract


This paper introduces a new implementation of proof of stake that can validate transactions in seconds while providing greater security in a shorter period of time than all existing proof of stake systems. In the time it takes Bitcoin to produce a single block a DPOS system can have your transaction verified by 20% of the shareholders and by the time Bitcoin claims the transaction is almost irreversible (6 blocks, 1 hour) your transaction under DPOS has been verified by 100% of the shareholders through their representatives.

http://107.170.30.182/security/delegated-proof-of-stake.php

Daniel "bytemaster" Larimer is answering technical questions in this thread.
179  Alternate cryptocurrencies / Altcoin Discussion / Re: Best Alt coin to invest in 2014 on: April 02, 2014, 02:41:09 PM
Bitshares X obviously, what are you guys smoking?

https://bitcointalk.org/index.php?topic=485166.
https://bitcointalk.org/index.php?topic=526360.0
180  Alternate cryptocurrencies / Altcoin Discussion / Re: Bitshares Website Launched! on: March 31, 2014, 02:01:23 PM
Are bitshares on any exchanges yet? I have not noticed them listed on market cap sites yet...

"Initial testing shows that aside from some user interface and RPC updates BitShares XT is very close to being able to launch making the Feb 28th snapshot liquid." - Daniel Larimer, 28th March

Bitshares XT is the official test chain for Bitshares X. Bitshares X is the first Bitshares product to be released. I believe product deployment will accelerate after this, as a lot of the work is currently going to parallel development. Especially:

Dan worked on refactoring the BTS X code into a "shell DAC" which is easily extensible. While he did this I used this new shell to work on BTS DNS. The ease with which I was able to implement an MVP (well, not actually "viable" without tests/a client/CLI/RPC, but still) gives me great confidence that there will be a critical point after which we'll be seeing many new DACs in the same way we see tons of new BTC clones every month. Arlen will be working on the Lotto DAC while documenting the process to make it super easy for other developers to follow. Eric V and possibly another recruit both have networking experience and will be working on the hard parts (from my perspective) of the client which will be used by all DACs.
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!