Author

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

legendary
Activity: 1932
Merit: 1003
I think this is going to prove the most popular ICO of 2017.

Looking forward to 1st March.   Smiley

Can you give me more ico details?
I have visited their Official site(Qtum.org) many times, But there is nothing about ICO.Their Forum is Chinese language,i cant able to read the forum :(Hope there will be a news about ICO .

Nothing official has been released regarding the ICO/Crowdfund yet.  It is still about a month away so I think information on it will be out pretty soon.  It has been mentioned that it will be hosted on the Chinese exchanges and also directly through their website Qtum.org.

We will release the exact specifications around the middle of February in our Business Whitepaper, which will be accompanied by our Technical Whitepaper.  The development updates found on our website were submitted by Jordan Earlz, so this gives an insight into what they're working toward on the technical side.

On a side note, let's please not start rumors about Vitalik.  He reviewed our project, he knows Patrick, and he's affiliated with Bo Shen through Fenbushi Capital, but he's not in any way directly involved with Qtum.



Yeah guys, it's great that you're supporting the Qtum project but don't be name dropping Vitalik.  It can easily backfire and is not good for Qtum.  Devs are doing a great job and let's just let them keep doing what they are doing.  Looking forward to March 1st!
sr. member
Activity: 722
Merit: 259
I think this is going to prove the most popular ICO of 2017.

Looking forward to 1st March.   Smiley

Can you give me more ico details?
I have visited their Official site(Qtum.org) many times, But there is nothing about ICO.Their Forum is Chinese language,i cant able to read the forum :(Hope there will be a news about ICO .

Nothing official has been released regarding the ICO/Crowdfund yet.  It is still about a month away so I think information on it will be out pretty soon.  It has been mentioned that it will be hosted on the Chinese exchanges and also directly through their website Qtum.org.

We will release the exact specifications around the middle of February in our Business Whitepaper, which will be accompanied by our Technical Whitepaper.  The development updates found on our website were submitted by Jordan Earlz, so this gives an insight into what they're working toward on the technical side.

On a side note, let's please not start rumors about Vitalik.  He reviewed our project, he knows Patrick, and he's affiliated with Bo Shen through Fenbushi Capital, but he's not in any way directly involved with Qtum.

sr. member
Activity: 248
Merit: 250
Can you give me more ico details?

There are just few information about ico like it will be held on March 1 in 3 exchanges, 1 crowdfunding platform and Qtum official website. Also the crowdsale will be capped, it will only raised to the level where it could support Qtum foundation in 3 - 4 years.  Smiley
legendary
Activity: 1932
Merit: 1003
I think this is going to prove the most popular ICO of 2017.

Looking forward to 1st March.   Smiley

Can you give me more ico details?
I have visited their Official site(Qtum.org) many times, But there is nothing about ICO.Their Forum is Chinese language,i cant able to read the forum :(Hope there will be a news about ICO .

Nothing official has been released regarding the ICO/Crowdfund yet.  It is still about a month away so I think information on it will be out pretty soon.  It has been mentioned that it will be hosted on the Chinese exchanges and also directly through their website Qtum.org.
legendary
Activity: 2814
Merit: 1112
Leading Crypto Sports Betting & Casino Platform
seems the draft version whitepaper online again.
https://qtum.org/whitepaper/

https://qtum.org/qtum-development-updates-2/


seems Qtum have another updates on their development work.

--snip--   
They work hard to prepare the project and we see the team solid, more update more good news and more investor will make investment in this project.  I just wondering how much fund will reach from first day the crowdsale live untill the end of ICO.
sr. member
Activity: 399
Merit: 250
enhancing side-chain support with smart contracts

this future features is very interesting.

if Qtum can be a sidechain of BTC, then it has the chance to grow as big as ethereum platform or bigger.

It's possible, but I think it would take some time for Qtum to achieve the same network effect that Ethereum currently has. What programming language will be used for the smart contracts? Is it a new language, or something that already exists?
copper member
Activity: 2324
Merit: 1348
I think this is going to prove the most popular ICO of 2017.

Looking forward to 1st March.   Smiley

Can you give me more ico details?
legendary
Activity: 1148
Merit: 1000
enhancing side-chain support with smart contracts

this future features is very interesting.

if Qtum can be a sidechain of BTC, then it has the chance to grow as big as ethereum platform or bigger.
sr. member
Activity: 623
Merit: 279
Hope & Positivity are keys to Success
I think this is going to prove the most popular ICO of 2017.

Looking forward to 1st March.   Smiley
full member
Activity: 414
Merit: 101
seems the draft version whitepaper online again.
https://qtum.org/whitepaper/

https://qtum.org/qtum-development-updates-2/


seems Qtum have another updates on their development work.


Qtum Development Updates 2

The Qtum development team has been very busy since our last technical update. There are several different facets which are being worked on now.

Qtum Core
Although we have functioning smart contracts and a functioning fork of Bitcoin 0.13 using PoSv3, these are, so far, still on separate branches. The primary focus over the past two weeks has been testing and fixing bugs between these two versions. However, our new priority since both are mostly stable is to merge them together into one cohesive blockchain.

Most bug fixing over the past week or two has taken place in the Qtum Account Abstraction Layer. The AAL is arguably one of the most complicated parts of Qtum and thus getting it correct and secure is of utmost importance.

Here is some recent passing test contracts we have run though:

## In range block hash ##

pragma solidity ^0.4.7;

contract BlockHash {
bytes32 public blockHash;

function storeBlockHash(uint blockNumber) {
blockHash = block.blockhash(blockNumber);
}
}

1. Create a contract called BlockHash
2. Set i = 1
3. Call function “storeBlockHash” of BlockHash with an argument i.

Expected behaviour:
state variable blockHash now is equal to the block hash at block number i

Result:
Pass

## Out of range block hash (> current block number) ##

pragma solidity ^0.4.7;

contract BlockHash {
bytes32 public blockHash;

function storeBlockHash(uint blockNumber) {
blockHash = block.blockhash(blockNumber);
}
}

1. Create a contract called BlockHash
3. Call function “storeBlockHash” of BlockHash with an argument 2^16 (out of range).

Expected behaviour:
state variable blockHash now empty

Result:
Pass

## Out of range block number (block number < current block number – 256) ##

pragma solidity ^0.4.7;

contract BlockHash {
bytes32 public blockHash;

function storeBlockHash(uint blockNumber) {
blockHash = block.blockhash(blockNumber);
}
}

1. Create a contract called BlockHash
3. Call function “storeBlockHash” of BlockHash with an argument current block count – 257 (out of range).

Expected behaviour:
state variable blockHash now empty

Result:
Pass

## Check that the gas and gas price are equivalent to their input from cli (1000000 gas, 0.00000001 gas price) ##

contract CheckGas {
uint public gasAmount;
uint public gasPrice

function storeGlobals() {
this.gasAmount = msg.gas
this.gasPrice = tx.gasprice;
}
}

1. Create a contract called CheckGas
2. Call function “storeGas” of CheckGas with 1000000 gas with a gas price of 0.00000001.

Expected behavior:
state variable gasPrice is 1
state variable gasAmount is close to 1000000

Result:
Pass

Also, here is a preview of the Qtum Core git repository, showing the team working on bug fixes:

Qtum Core Git Repository

Qtum Core Wallet (QT wallet)
In addition to focusing on the core blockchain protocol, we are starting to work toward branding and reworking the Qtum Core Wallet for PC and Mac. We have a splash screen, basic color changes, and icons. We are still deep in work on this, so there aren’t yet any screenshots available. Additionally, we will soon begin integrating smart contracts into the GUI so that regular users will be able to deploy and interact with smart contracts.

Future Directions
We are constantly looking to implement not just what designs we have now, but also ensure that those designs will be extensible and work well as a foundation to build on for our future activities. These are in-flux designs, but some ideas currently being discussed include: better and faster interactions with smart contracts from SPV wallets, making data feeds a “first-class citizen” on the blockchain with efficiency and usability improvements, Automatic/periodic contract execution, simplification of the account abstraction layer (in order to increase efficiency and reduce attack vectors), enhancing side-chain support with smart contracts on both chains in mind.

Qtum Mobile Wallets

Qtum will also feature both iOS and Android wallet at release. The majority of our efforts are currently being expended is testing to ensure that they handle PoSv3 fine, and branding and skinning the wallets so that they look professional and are easy to use.

Qtum Wallet DesignQtum Wallet Design 2    
hero member
Activity: 938
Merit: 1000
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.
If i have speculate according to the explanation on Q n A session which told us that qtum already gave the white paper or dealing with vitalik it self i would'nt say that vitalik would leave ethereum because he is the founder of ETH it self and already stand beside Qtum what's into my mine that in the condition vitalik would make an a good dealing which purpose for each project to get a large of profit same like addresing the place of each project

If Vitalik have invested in Qtum it's very good signal to buy that token. Every coin in which Vitalik "invests" will have very good pump  Cheesy . Remember other examples, guys.
If u say vitalik would investing to Qtum i would say that you still unclearly know about what actually qtum and eth plane due the white paper
legendary
Activity: 1624
Merit: 1098
Very loud statements about Vitalik. Why would he cut the branch on which it sits. Investing money in a Qtum is a good idea (it also invests in Humaniq) but leave the ethereum, he just will not. This project will delight us with various interesting news and rumors.
sr. member
Activity: 454
Merit: 250
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.

If Vitalik have invested in Qtum it's very good signal to buy that token. Every coin in which Vitalik "invests" will have very good pump  Cheesy . Remember other examples, guys.
I did not know that Vitalik would invest in Qtum, this in fact has the potential to attract more investors and improve the way other people see the project. But what are the reasons why you believe that Ethereum will not switch to PoS?
full member
Activity: 320
Merit: 101
Mai bine mort,decat asa de viu! *TM
When in march it will be released ?
ikm
sr. member
Activity: 420
Merit: 250
vWhat is the logic of this project? Everybody wrote something. My English is weak. I could not fully understand.
 For example when ico thinks how to hold on to the beginning of the coin market?
hero member
Activity: 1274
Merit: 521
7enius - Your Cryptocurrency Marketing Consultant
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.

hmm, i don't know if it is as good a news as you think. and you forgot to give us a resource for this news.
besides Vitalik is not going to give up his own altcoin and come invest in something he can not control. ethereum is mostly in his possession and he is making a lot of money from it. so i doubt if he really is planning on leaving anything.
Try to find the source of that statement on slack archive when the QA session live, but i didn't find the source just find a statement Vitalik has read the Qtum whitepaper last years and giving feedback see at Q&A number 11.
legendary
Activity: 2422
Merit: 1845
Crypto for the Crypto Throne!
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.

If Vitalik have invested in Qtum it's very good signal to buy that token. Every coin in which Vitalik "invests" will have very good pump  Cheesy . Remember other examples, guys.
legendary
Activity: 1134
Merit: 1010
BTC to the moon is inevitable...
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.

hmm, i don't know if it is as good a news as you think. and you forgot to give us a resource for this news.
besides Vitalik is not going to give up his own altcoin and come invest in something he can not control. ethereum is mostly in his possession and he is making a lot of money from it. so i doubt if he really is planning on leaving anything.
hero member
Activity: 742
Merit: 500
The revolutionary trading ecosystem
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.

What is the source of this information? I know one of the former Ethereum foundation member is invloved Anthony Dilorio but I have never seen Vitalik name associated with Qtum project. Vitalik leaving Ethereum would end the project
legendary
Activity: 2996
Merit: 1054
Leading Crypto Sports Betting & Casino Platform
Iconomi made 4x after their release, why don't Qtum make same or even more? Qtum is clearly better than Iconomi, Chronobank and other similar ICO's. Qtum's competition will be against Ethereum. Qtum is offering similar smart contract system but with better ideas. We don't hassle with POW, we go directly with POS.

Here is the important bit of my research. Vitalik is invested in QTUM. We all know that Ethereum is not going to switch to POS ever. QTUM has made their platform compatible with Ethereum's present smart contracts and dapps. So I speculate that a great migration to QTUM will occur simply because it might be more stable, faster and more scalable. The migration will include Vitalik. He will leave Ethereum and declare it a community project.
Well if this for real its good for me since we knew how eth dev make an impact when eth still on its prime theres a lots of exciting things that can possibly happen with qtum the new features might gather interest to those crypto players its the progress of all project that will make the differences.
Jump to: