Author

Topic: [ANN] (QTUM) - A Scalable Smart Contract Platform w/ Proof of Stake - page 130. (Read 525459 times)

full member
Activity: 184
Merit: 100
1,8bil marketcap (pre ico token) . WTF?

I agree... yet too very cheap

fucking troll, its INSANE
member
Activity: 128
Merit: 10
1,8bil marketcap (pre ico token) . WTF?

I agree... yet too very cheap
newbie
Activity: 41
Merit: 0
1,8bil marketcap (pre ico token) . WTF?

Where did you see this? Or are you basing on Eth's performance as they have the same amount of tokens/coins?

Its calculated from:

100mn total qtum tokens

Current price: $17.84

So 17.84 X 100mn = $1.784bn market cap



thanks.
full member
Activity: 143
Merit: 100
Investor
1,8bil marketcap (pre ico token) . WTF?

Where did you see this? Or are you basing on Eth's performance as they have the same amount of tokens/coins?

Its calculated from:

100mn total qtum tokens

Current price: $17.84

So 17.84 X 100mn = $1.784bn market cap

However, the real question will be the circulating supply of the coin
newbie
Activity: 41
Merit: 0
1,8bil marketcap (pre ico token) . WTF?

Where did you see this? Or are you basing on Eth's performance as they have the same amount of tokens/coins?
hero member
Activity: 531
Merit: 500
1,8bil marketcap (pre ico token) . WTF?
vip
Activity: 1428
Merit: 1145
Haha, I had some time off last week, too bad am super busy with work next week or I'd have flown to Shanghai for this launch.  Think I made more from investing in the Qtum ICO than my job though.
Can't wait to try out the testnet.



Please, pray tell, how a dude from NY located in the US was able to invest in Qtum's ICO. Proof: https://bitcointalksearch.org/topic/m.2930777 (ask and I'll provide an address).
sr. member
Activity: 434
Merit: 251
Huge price movement today.  Is this all in anticipation of the testnet?
newbie
Activity: 41
Merit: 0
8th highest traded coin in the world today.
hero member
Activity: 608
Merit: 500
Haha, I had some time off last week, too bad am super busy with work next week or I'd have flown to Shanghai for this launch.  Think I made more from investing in the Qtum ICO than my job though.
Can't wait to try out the testnet.

vip
Activity: 1428
Merit: 1145
Is the crowdsale still on?


The Crowdsale ended on March 21st, but the test network will be released on June 28th, allowing you to acquire test tokens and check out the system. The main network launches in September, which is when participants can withdraw their coins from the exchanges.

So we currently cannot buy tokens from people who bought them in the crowdsale? What's the price of the testnet, is it similar to crowdsale?

Test Network tokens are free, we will send them to whoever downloads a wallet and requests them.  We ask that anyone who does this submits any bugs they encounter, even if it's a typo.

For purchasing tokens before the main network launches, some exchanges have opened IOU trading, but you will not be able to withdraw them until September.

Please see our position on Futures / IOU trading here:

https://qtum.org/en/blog/qtum-team-s-position-on-activating-qtum-trading



You bastard!  Grin You know that I strive to be as grammatically correct as possible, hence possibly now catering to my inner Grammar Nazi.  Roll Eyes Humor aside, I truly like what's highlighted above.  Kiss

Keep up the good work while I try to keep my negative comments to a minimum.

One more thing: IT REALLY PISSES ME OFF THAT YOU'VE NOT ONCE DELETED ANY OF MY POSTS!

Note to self: Try harder.  Tongue Tongue Tongue

Bruno
sr. member
Activity: 722
Merit: 259
Is the crowdsale still on?


The Crowdsale ended on March 21st, but the test network will be released on June 28th, allowing you to acquire test tokens and check out the system. The main network launches in September, which is when participants can withdraw their coins from the exchanges.

So we currently cannot buy tokens from people who bought them in the crowdsale? What's the price of the testnet, is it similar to crowdsale?

Test Network tokens are free, we will send them to whoever downloads a wallet and requests them.  We ask that anyone who does this submits any bugs they encounter, even if it's a typo.

For purchasing tokens before the main network launches, some exchanges have opened IOU trading, but you will not be able to withdraw them until September.

Please see our position on Futures / IOU trading here:

https://qtum.org/en/blog/qtum-team-s-position-on-activating-qtum-trading
sr. member
Activity: 560
Merit: 253
Is the crowdsale still on?


The Crowdsale ended on March 21st, but the test network will be released on June 28th, allowing you to acquire test tokens and check out the system. The main network launches in September, which is when participants can withdraw their coins from the exchanges.

So we currently cannot buy tokens from people who bought them in the crowdsale? What's the price of the testnet, is it similar to crowdsale?
sr. member
Activity: 722
Merit: 259
Is the crowdsale still on?


The Crowdsale ended on March 21st, but the test network will be released on June 28th, allowing you to acquire test tokens and check out the system. The main network launches in September, which is when participants can withdraw their coins from the exchanges.
sr. member
Activity: 560
Merit: 253
Is the crowdsale still on?
sr. member
Activity: 722
Merit: 259





Test Network Update #2:

Leading up to our June 28th Test Network release, we will be providing daily updates that explain the work that goes on behind the scenes. Yesterday we went over the first 5 points, and today we delve deeper into the technical aspects.






6, Add "sendtocontract" RPC call




An rpc call should be adding for sending data and (optionally) money to a contract that has been deployed on the blockchain.

The format should be:
sendtocontract contract-address data (value gaslimit gasprice sender broadcast)

This should create a contract call transaction using OP_CALL.
Value defaults to 0.

sender-address is optional. If no address is specified, then it should be picked randomly from the wallet. If no outputs exist to spend using that sender-address, then an error should be shown and no transaction created.
broadcast should default to true. If broadcast is false, then the transaction is created and signed, and then printed to the screen in hex rather than broadcast to the network.

If the sender-address does have an output, but it is not enough to cover the gas costs, tx fees, and value, then any UTXO owned by the wallet should be used by the transaction to cover the remainder. (not all funds must come from sender-address, but the sender-address must be vin[0])

After execution, if broadcast is true, it should print the txid and the new contract address.


7, Add "callcontract" RPC call for off-chain computations


Add "callcontract" RPC call for off-chain computations

There should be an RPC call that executes a contract without requiring interaction with the blockchain network, and thus without gas or other fees.

callcontract contract-address data (sender)
This should execute the contract locally, and if the contract function returns data, it should be returned/printed by the RPC call. Sender is optional and does not require an owned vout (it can be any valid address)






8, Change mainnet to only allow PoS after a certain blockheight


This tells the Blockchain that Proof-of-Work blocks can no longer be accepted. The Qtum Nodes will reject this work, and accept only Proof-of-Stake.




9 , Put EVM "LOG" opcode outputs into an accessible log file



There should be a file that holds all of the data from EVM LOG opcodes, so that it can be used for testing and debugging. There are ITDs written for this
The log file should only be used when `-record-log-opcodes` is passed into qtumd


10, Setup continuous integration



Setup a Jenkins server and make it so that it does:

1. Automatically builds qtum on all branches on Linux and reports build errors
2. Automatically runs the Qtum (Bitcoin) test suite, reporting any failing tests
3. Tears down any VMs constructed to ensure we don't use more VM time than necessary








Please see the Roadmap below for more information:










Please remember that we have an event in Shanghai on the 28th so please RSVP if you plan on attending:











Qtum will also be sponsoring a Hackathon in Russia, with 8500 QTUM tokens. For more information, please see:







sr. member
Activity: 722
Merit: 259
The last time we did an event in Shanghai it was streamed, but we used a Chinese service.  We can try to upload it for others to see if streaming isn't possible for Western audiences.
sr. member
Activity: 336
Merit: 250
Do the thing and you'll have the power.
full member
Activity: 266
Merit: 100
hero member
Activity: 952
Merit: 501
Jump to: