Project IOTA was founded in 2015 by David Sønstebø, Sergey Ivancheglo, Dominik гSchiener and PhD in Mathematics Sergey Popov. Design goal was to review and develop blockchain technology for applicability of cryptocurrencies in the Internet of things (IoT).
IoT is the concept of network of physical devices framed with technologies to interconnect with each other and with external environment excluding human involvement from a number of operations. Calculations through that process need a fast and cheap network. Existing projects based on blockchain have two main disadvantages preventing their implementation into IoT:
IOTA creates a network without any disadvantages. IOTA transactions are free regardless their size, transaction confirmation period is insignificant (depends on network size, see section «Performance and scalability»), number of simultaneously processed transactions is unlimited, and the system itself can be easily scaled. All this is achieved through using a directed acyclic graph (DAG) instead of blockchain.
All IOTA tokens were created in a genesis block, in total there are (333-1)/2 tokens (around 2.78 quadrillions). This amount is contingent on the idea that tokens will be used for micro transactions, besides this number lines up with the number MAX_SAFE_INTEGER in Javascript.
The smallest unit in IOTA is iota, named after the smallest letter of the Greek alphabet. It doesn’t have decimal points. Names of larger units are made by adding numeric prefixes same as in metric system to the word Iota. Thus, one million iota is called Megaiota or Miota (Mi), which is also considered to be the basic unit of iota used for trading at cryptocurrencies exchanges. Names are given below as they increase:
Iota = 1 Iota =1i =1i
Kiloiota =1Kiota =1Ki =1’000i
Megaiota= 1 Miota = 1 Mi = 1’000’000 i
Gigaiota = 1 Giota = 1 Gi = 1’000’000’000 i
Teraiota = 1 Tiota = 1 Ti = 1’000’000’000’000 i
Petaiota = 1 Piota = 1 Pi = 1’000’000’000’000’000 i
In 2015 IOTA held an ICO and collected 1337 BTC. During the ICO all tokens were sold. Nothing was reserved for the team, fund or else. Development of the project was financed with the funds collected through the ICO.
In classical blockchain verification is completely separated from users so it is necessary to pay for transaction verifications to miners or stakeholders. In IOTA there is no separation, it is a fully self-sustaining network, there are no miners, and users confirm transaction of other users by themselves.
Therefore instead of a traditional blockchain IOTA uses DAG, directed acyclic graph, that is called Tangle:
The DAG network consists of transactions. Each new transaction approves the previous two and those approvals are represented by directed arrows (time goes from left to right). Should there be the path between A and B greater than at least two arrows, then A indirectly approves B.
Nodes check lack of conflicts and do not approve (directly or indirectly) any conflicting transactions. The idea is that as a transaction gets more direct and indirect approvals, its acceptance by the system grows. It means that in case of multiple approvals double-spends become almost impossible. For that purpose we use the concept of weight and cumulative weight of the transaction. Weight of transaction is proportional to the amount of work the node invested in it. In practice, the weight can only be values 3n where n is a positive integer that belongs to some nonempty interval of acceptable values. Cumulative weight of a transaction is its own weight plus the sum of the weights of all transactions by which it is approved either directly or indirectly.
Weight calculation:
Small numbers in SE corners (transactions) denote the weights of transactions and (large) bold numbers denote cumulative weights. For instance, transaction F is approved, directly or indirectly, by transactions A, B, C, E. Cumulative weight of F is 9 = 3 + 1 + 3 + 1 + 1, addition of the weight of F and the weights of A, B, C, E. In the top picture the only unapproved transactions are A and C. When a new transaction X arrives and approves A and C, it becomes the only tip. Cumulative weight of other transactions increases by 3 (weight of X).
In order to confirm transaction the node performs as follows:
The main rule used by nodes to decide between two conflicting transactions is the following: a node runs the tip selection algorithm many times and sees which of the two transactions is more likely to be (indirectly) approved by the selected tip. For instance, is a transaction is selected 97 times during 100 runs of the tip selection algorithm, we say that it is confirmed with 97% confidence. IOTA White Paper gives more details about the algorithm.
IOTA system is based on Directed Acyclic Graph (DAG) called Tangle.
IOTA uses Winternitz hash-based cryptographic signatures instead of elliptic curve cryptography, ECC. Hash-based signatures are way faster than ECC.
In order to prevent maintaining the whole Tangle (as in blockchain) IOTA uses Snapshot. Snapshots prevent DAG weight increase, save all balances and prune old history and transactions. Addresses and balances in snapshot operate as genesis without any previous data. Full nodes keep information about transactions, they can decide on their own whether to keep the full version (if technically possible) or to download a snapshot and keep on working with it. Anyway the node remains part of network.
As stated above, unlike blockchain, IOTA has no separation between users and validators. Each user initiating a transaction automatically becomes a validator for other two earlier transactions.
Modular approach aims to broaden functionality of the system. It means that each component represents an autonomous application optimised for its goal without ruining productivity or functionality of other applications.
Currently the following Iota eXtention Interface (IXI) modules exist at different levels of their ongoing development:
IOTA Tangle has solved the following blockchain problems:
Theoretically a situation could arise where in case of low level of activities in the system new transactions would so rarely appear, that a transaction would be pending for validation for a very long time. The validation might never happen, should new transactions fail to appear in the system.
In order to ensure development of the system and to protect it against certain attacks, IOTA uses a «Coordinator» (special address) that checks transactions before their validation by the main net. Once every minute (on the main net) Coordinator issues milestones which reference valid transactions. Developers say that as soon as the network is large enough the Coordinator will be removed from there. Shortcomings related to the presence of Coordinator:
On 26 September 2017 Nick Johnson, Ethereum Foundation developer, expressed his opinion about critical issues with IOTA:
On 7 August 2017 Curl function was replaced with SHA-3 implementation, named Kerl, which allowed to eliminate that vulnerability. Detailed overview is given in «Protection from Attacks» section.
White Paper of the project provides possible attack scenarios and ways of network protection.
Potential «large weight» attacks were highlighted: should an attacker succeed to lend to a transaction the weight that exceeds cumulative weight of a legitimate chain, it may lead to double-spending. It can be a real threat to the entire network. As a solution it is considered to limit the own weight of a transaction from above.
In order to secure the network, the input flow of “honest” transactions should be large compared to the attacker’s computational power. This indicates the need for additional security measures (for instance, checkpoints) during the early days of IOTA. For that purpose, IOTA uses the Coordinator (special address) that checks transactions before their validation by the main net.
Besides, when choosing a strategy for deciding which one of two conflicting transactions is valid, one has to be careful when using cumulative weight as a decision metric. This is due to the fact that cumulative weight can be subject to a parasite chain attack.
The attacker secretly builds a subtangle sometimes references the main tangle to gain a higher score. To defend against this attack style, the idea is to use a MCMC (Markov Chain Monte Carlo) algorithm to select the two tips to reference. Why the MCMC selection algorithm will not select one of the attacker’s tips with high probability. The reasoning is identical to the lazy tip scenario: the sites on the parasite chain will have a cumulative weight that is much smaller than the sites that they reference on the main tangle.
Aviv Zohar suggested the following attack scheme against the proposed MCMC algorithm. In the high-load regime, an attacker can try to split the tangle into two branches and maintain the balance between them, in order to allow both branches to continue to grow. The attacker must place at least two conflicting transactions at the beginning of the split to prevent an honest node from effectively joining the branches by referencing them both simultaneously. Then, the attacker hopes that roughly half of the network would contribute to each branch so that they would be able to “compensate” for random fluctuations, even with a relatively small amount of personal computing power. If this technique works, the attacker would be able to spend the same funds on the two branches. To defend against such an attack, one needs to use a “sharp-threshold” rule (for example, to select the longest chain on the Bitcoin network) that makes it too hard to maintain the balance between the two branches. If an honest node permanently selects the branch with the largest weight, then the attacker would probably be unable to maintain the balance. Besides, the attacker’s task is very difficult because of network synchronisation issues: they may not be aware of a large number of recently issued transactions. Another effective method for defending against a splitting attack would be for a sufficiently powerful entity to instantaneously publish a large number of transactions (on one branch), thus rapidly changing the power balance and making it difficult for the attacker to deal with this change.
Resistance to quantum computations.
Capping the weight from above would effectively prevent a quantum computer attack as well. This is evident in iota because the number of nonces that one needs to check in order to find a suitable hash for issuing a transaction is not unreasonably large, around 38. The gain of efficiency for an “ideal” quantum computer would therefore be of order 34 = 81, which is already quite acceptable. Moreover, the algorithm used in the iota implementation is structured such that the time to find a nonce is not much larger than the time needed for other tasks that are necessary to issue a transaction. The latter part is much more resistant against quantum computing.
On 7 September 2017 MIT Digital Currency Initiative published IOTA code audit report. The report demonstrated vulnerabilities of core of cryptographic library IOTA, which allowed to destroy coins of any user and to get access to them.
The largest bug mentioned in the audit was detected in IOTA’s kernel hash partition. Relying on its competencies and rejecting the past decades of development of the SHA-256 encryption protocols (uses Bitcoin) or KECCAK-256 (the Ethereum core), the IOTA founders decided to go their own way and offered their own encryption protocol, which was called Curl. Curl was vulnerable to a well known technique for breaking hash functions called differential cryptanalysis. Using this observation, MIT specialists were able to write software that could quickly generate practical collisions for messages of the same lengths. Since these collisions fully collide with the internal state of the hash function, a single collision enables a hacker to generate an unbounded number of additional colliding messages. These collisions work for all rounds of Curl and can be generated in seconds on commodity hardware. Using 80 core computers, MIT group were able to find collisions within a few minutes, using a commodity computer it would take about an hour.
These security risk is not relevant any longer, since it was disclosed to IOTA team in the end of July as soon as it was detected, and by 07 September 2017 Curl function was replaced with SHA-3, that was called Kerl, which allowed to eliminate the vulnerability.
IOTA itself and all technologies related to it are administered by non-profit foundation IOTA. IOTA Foundation was established in Germany as non-profit organisation, that coordinates and finances development of IOTA Ecosystem. Foundation’s goal is creation of a sustainable ecosystem around IOTA to accelerate its development and commercial deployment as an open-source technology. IOTA Foundation became the first fully regulated not-for-profit foundation in Germany, fully capitalised with cryptocurrencies. It includes the Board of Directors, Supervisory Board and Advisory Board. Under their administration there will be created working groups to support usage and to promote IOTA.
According to project representatives, Germany was chosen as the jurisdiction because it is one of the countries with the most stringent regulations and it considerably leads rule-making in digital technologies area both at national and the EU levels. It enables the IOTA Foundation to work closely together with regulating authorities in order to assist formation of reasonable and effective strategies and their implementation.
Even though headquarters of IOTA Foundation are in Berlin, Germany, this global organisation also works in other 10 countries, including Israel, Brazil, Norway, Great Britain, USA, Taiwan and Singapore.
Project representatives consider legitimacy of the project to be an essential issue. So IOTA’s Public Regulatory Affairs team was created to work together with regulators around the globe.
Mechanisms and principles of emission - 3 points out of 3.
Blockchain (architecture and consensus building mechanism) - 2 points out of 4 (technology has technical imperfections, Coordinator’s presence brings risk of centralisation).
Licensing and legal aspects - 3 points out of 3.
The outlook is positive. Innovative and young DAG technology has a number of disadvantages due to imperfect technical implementation. However, the team is working on elimination of detected failures. Cryptographic approach used in IOTA is also being criticised. But motivation and feasibility of its application can only be proved in practise.
There is no blockchain in IOTA architecture, it means there are no forks or interblock intervals, so there are no TPS limitations: users constantly send new transactions, trying to build them into Tangle, thus confirming previous transactions. IOTA network structure makes it possible to increase throughput in line with increase of users of the network. So IOTA has practically unlimited scalability by using DAG technology.
The rate of 1000 TPS was met at stress tests. Theoretically there is no ceiling rate, since the more loaded network gets and the more transactions get initiated, the speed of confirming previous transactions gets higher. An increasing number of transactions will cause increasing checking speed:
Prior to entering the exchange, IOTA’s developers performed a test attack: they increased the number of transactions by 300%. Foreseeably it led to increase of checking speed but didn’t shut down the network.
The sphere of IOTA application is payments and microtransactions. Also IOTA has integrated such functions as secure messaging and public data market. According to IOTA vision, these features will become constituent elements of the Internet-of-Things economy mechanism, where millions of devices will exchange digital information and payments in real time.
Here is more detailed information about mechanisms and functions available in IOTA:
Microtransactions. IOTA gives an opportunity to perform micro- and even nanotransactions due to its unique IOTA Tangle architecture, and it provides developers with an absolutely new set of tools for its applications in IoT and Web.
Data transfer. The core feature of IOTA is the feasibility of transferring data through Tangle. IOTA gives users several options of transferring data through reliable and authenticated communication channels between devices. All data transferred through IOTA is completely authenticated and tamper-proof.
E-voting. Tangle allows to use secure data transmission not only for IoT but in other areas as well, such as eGovernance. An important aspect of this sector is e-voting.
Masked messaging. The first extensible module of the IOTA core, IOTA MAM (see more details in «Architecture» section) enable nodes to exchange highly valuable and confidential information through Tangle. MAM makes it possible to exchange data with multiple parties that have proper access.
Share-A-Service. As far as the whole world accepted sharing economy in such spheres as shared rides and accommodation, IOTA allows to build totally new space where anything with a chip in it can be leased in real time. There are things not being used for a long time, but through IOTA lots of those things, such as devices, appliances, drones, e-bikes, etc. and such resources as computer storage, computing power, WiFi bandwidth, etc. can be easily leased.
Examples of practical application of these functions are given in section «IOTA based projects».
The main team have been working on IOTA and its ecosystem since summer 2015.
During the recent years they implement improvements and optimise the Tangle concept. On 11.07.2016 the main net was launched.
At the time of this writing there is no possibility to start a private Tangle. For testing you can use a testnet or the main one. Developers provide IOTA PoWbox (Proof of Work box) service for free. It is a perfect solution for rapid prototyping which does not require installation .
Code for IOTA Reference Implementation (IRI) node was built on JAVA and available on GitHub. Codes on C++ and Rust are being developed.
GUI Client is also available on GitHub which amongst everything else has a special support of a graphics processor and light wallet.
Development activity of the source code according to coingecko.com as of 28.06.2018 was at 78% stage.
IOTA is developing its own wallet, Trinity. On 29 March 2018 alpha-version of the wallet for PC was issued, and on 29 May there was a mobile beta-version.
Since it is complicated to create a 81-digit seed for the IOTA wallet, some users benefited from the services of third-party online-generators. One of the most popular websites was iotaseed.io. On 21 January 2018 it was announced that wallets of those users who had used online-generators were losing funds. Total amount of embezzled funds was estimated in minimum 4 million dollars. At the same time the attackers deployed a DDoS attack against IOTA full nodes to obstruct any user’s attempts to get their lost funds back. IOTA officials allege that the problem was not connected with IOTA technology but with negligence of users and malicious online-services.
IOTA provides libraries for developers:
Developers of IOTA prepared and keep maintaining up-to-date guidances that may help to start developing IOTA based applications both to beginners and to advanced developers. “Learn” hub resource provides developers with a platform to publish tutorials for their IOTA based applications. It is a source of resources for developers who intend to start their work.
Also there is a library with documentation and manuals to assist the developers.
IOTA has no aim to fully replace the blockchain, it also works as an addition to the current blockchain system creating an Oracle module for smart-contract platforms, such as Ethereum or Rootstock. Besides it improves security of blockchain giving opportunities to add checkpoints for transactions.
The team actively works on cooperation with existing blockchain technologies and communities. Now they are mainly focused on EVM based blockchain (Ethereum, RSK, Qtum) and Hyperledger. Developers expect to achieve compatibility with other projects in this area upon new Oracle platform launch.
Performance and scalability - 2 points out of 2.
Built-in mechanisms and functions - 3 points out of 3.
Product - 3 points out of 4 (part of its functional is under development).
Integration options - 1 point out of 1.
The outlook is positive. Wide-range functional of the platform gives opportunities to use it both for IoT and online payments and funds transfers. Main part was launched about a year ago, team actively works on extension of the functional and platform improvements.
The first public exchange that started trading IOTA was Bitfinex. In autumn 2017 IOTA entered other large exchanges such as Binance, Coinone, OKEx.
Currently main trading volume is divided approximately equally between Binance, Coinone, and OKEx exchanges. You can purchase IOTA for USD via Bitfinex or Exrates. You can buy IOTA in cryptocurrency pairs (IOTA/BTC, IOTA/ETH, IOTA/BNB, IOTA/USDT) via Binance. At Coinone you can buy IOTA tokens for South Korean wons.
Cryptocurrencies presence on exchanges as of 28.06.18 according to coinmarketcap.com:
IOTA token trading started on 13 June 2017. Within the first 24 hours token capitalisation reached 1 billion USD. At that moment IOTA immediately took the 9th place by capitalisation, having overtaken Monero and Ethereum Classic. Now its capitalisation is $2.686 bln USD and it gives IOTA the 10th place in general rating of cryptocurrencies by capitalisation (as of 28.06.18 according to coinmarketcap.com).
For a long time IOTA was balancing between 0.3 - 0.6 USD but in a context of December growth of entire industry it hit the record of 5.3 USD. Experts believe that it is both related to the last year cryptocurrenies boom, and to the company’s successful strategy aimed at partnership with major brands. Following overall recession at cryptocurrencies market in January 2018 the price of IOTA also fell. In the beginning of April the price fell below 1 USD but then together with «cryptocurrency thaw» the price slightly rose again, however now we are observing a decline again and the current price of a token is $0.97 (as of 28.06.18).
Price and capitalisation dynamics of IOTA token:
Distribution - 3 point out of 4 (few trading platforms, main scope equally divided into 3 of them).
Capitalization and price dynamics - 4 points out of 6 (depends on market fluctuations).
The outlook is neutral.Token is present in some exchanges only, but most of them are large and popular. Immediately after its launch IOTA entered TOP 10 and it’s still there, however token price relies a lot on the market.
White paper includes 4 sections: description of the system, description of transaction weights in DAG, stability of the system, possible attack scenarios. White paper contains detailed technical description of working principles of the system, narration is meant for developers: there is a lot of mathematical and technical terminology. It does not describe any economical or business elements of the project. The official website has a page Verticals where you can find concrete examples of different scenarios for using IOTA technology.
Also the website has a number of academic papers relating to Tangle technology. It might be interesting for those who want to study the technology more fundamentally.
On official blog of the project you can find Roadmap for development dating back to 31.03.17 г.: https://blog.iota.org/iota-development-roadmap-74741f37ed01. Development Roadmap describes in detail everything that was done, is under development or planned for development: it gives description of functional elements (client, module, etc.) in accessible language and the current status. However, apparently this information didn’t get any updates since it was published.
There is a separate Trinity Roadmap which gives detailed description of phases of work on the wallet and the progress.
There is a lack of Roadmap for developing the system, plans for its integration with other systems, relations with partner projects, projects using or planning to use IOTA in their work.
White paper - 3 points out of 5 (no description of economic and business components of the project).
Road map - 2 points out of 5 (Development Roadmap is not up-to-date, there are no roadmaps relating to other aspects except for development).
The outlook is neutral. In fact the only up-to-date Roadmap relates to Trinity Wallet development. White Paper of the project is totally technical, includes lots of mathematical and technical information, written in a language difficult for understanding by people irrelevant to development.
Main team members:
It is not a complete list of project members, IOTA has a huge and strong team, its members are recognised professionals both in their subject areas and in blockchain technologies. The team continuously grows.
With regard to cryptography algorithms development the team subcontracts 5 world-class cryptographers, as well as 3 independent ones (source).
IOTA Foundation team (supporting all IOTA related projects):
Foundation grows constantly and new members appear, everyone being unique and highly professional specialists in their areas of work. Almost all of them have international experience and world-wide popularity. IOTA should not have any problems with global promotion with those ambassadors at least in the western world. IOTA Foundation merged with a popular platform for founders and startups F6S to make Foundation’s work more efficient.
Venture investor Outlier Ventures has invested into IOTA an amount 7 times more than its estimated cost, it was the first direct investment into technology.
Robert Bosch Venture Capital, department of a big corporation, dealing with venture investments, made its first investment into cryptocurrencies through buying a vast number of IOTA tokens in 2017.
In August 2017 IOTA Foundation started a partnership with REFUNITE, the largest database of missing people, to help reunite the families during or upon the conflicts.
IOTA Foundation got invitations from the Tokyo Metropolitan government to take part in an accelerator program called Blockchain Business Camp Tokyo. Among others there were such firms as Sony, Honda and Toyota.
The project is a part of Microsoft Azure network. In the long run developers are going to build their own processor to process up to 1000 operations per second.
In the late 2017 IOTA has negotiated its partnership with 20 major companies, including Deutsche Telecom and Fujitsu.
According to the press release published on 31 May 2018, a large financial group from Norway DNB ASA (Den Norske Bank) and IOTA Foundation signed the letter of understanding. Together they will research potential use of IOTA Tangle. DNB and IOTA will search for new business models in their areas of work. According to the head of DNB department of distributed ledger technology department Lasse Meholm, one of project objectives is to study the technology and provide opportunities to bank employees who work with clients in order to develop new business processes.
ON 22 June 2018 IOTA Foundation signed Memorandum of Understanding with SinoPac, a large Taiwan financial holding company that works with Asia and the Pacific. They are planning to perform joint research of blockchain technology, namely Tangle. SinoPac tests practical use of technology in designing a notary solution iCertificate (see «IOTA based projects»).
Other IOTA partners are described in «IOTA based projects» section.
The number of team - 2 points out of 2.
Team structure - 3 points out of 3.
Team competencies - 3 points out of 3.
Affiliated persons - 2 points out of 2.
The outlook is positive. Numerous and qualified team, large investors, wide network of partners including large and famous companies, that grows constantly.
IOTA works on DAG technology, so these competitors using the same technology at work should be mentioned: ByteBall and Nano. One of Reddit users compared these three:
Byteball is focused on performing p2p transactions, NANO’s goal is to design an accounting unit for cryptocurrencies while IOTA aims to maintain IoT functioning.
IoT Chain startup is worth mentioning as IOTA’s Chinese competitor. This platform is also based on DAG planning to become the core network for IoT. Main stages of IoT Chain prototype development are planned for 2018-2019. The project has good investment support and according to experts in case of success it can become a serious rival to IOTA by 2020.
µRaiden is being developed in Ethereum ecosystem as a system of micropayments, IoT competing protocol.
Also Atonomi is being designed on the base of Ethereum providing security protocol and infrastructure for IoT devices.
Large corporations are testing Hyperledger for IoT. David Sønstebø commented in this regard: “Hyperledger has its own limitations.While it might be good for enterprise solutions in the future, it's ultimately a permissioned ledger, and that's the antithesis of IoT, which has to be open in order to realise its true potential. It can't be a closed ecosystem because that's literally the opposite of interoperability. The problem we are seeing with Hyperledger is that it's very corporate driven; it's the typical old school way of doing things, which is fine for certain use cases, but not open ecosystems. The only IoT use case that they have experimented with, as far as I know, is the shipping one, where you track the supply chain for provenance etc - even those pilot projects have not really amounted to anything other than headlines. That being said there could of course be overlap between permissioned blockchains like Hyperledger and permissionless IOTA, as long as they are used in their correct domains.
Direct competitors - 3 points out of 4 (little competition).
Industry competitors - 3 points out of 4 (little competition).
Project monitoring of competition - 0 points out of 2 (no information in open source).
The outlook is positive. Despite certain presence of industry rivals there are few direct rivals and they still lag behind IOTA.
IOTA is a very popular project: there are 4-6 citations in the news daily (according to coincontrol.io) and about 30 posts in social networks.
Activities in social networks:
The project has an active thread at bitcointalk.org, the main one in English and local ones in other languages.
According to iota-nodes.net IOTA currently (as of 30.06.2018) has 269 registered nodes.
Top 10 countries with the most number of registered nodes:
Now about 10 transactions per second are initiated in the main IOTA network.
There are several explorers that let you monitor its activity:
On 17 July 2017 SatoshiPay micropayments company stopped using Bitcoin and opted for IOTA.
In September 2017 there was announced a launch of a machine learning service using IOTA for payments. CognIOTA aims to provide users with opportunities to sell computing resources of their processors standing idle to other users in real time regime.
The Foundation started cooperation with Volkswagen and Innogy to develop CarPass IOTA based technology which provides secure control routes, digital IDs and car charging stations.
In Haarlem, Netherlands, a pilot system allowing to verify authenticity of state documents without attending respective institutions was created. This IOTA based system with an open code is available for free to any municipality.
In February 2018 the German Bosch announced that it will use IOTA technology to design a self-driving car.
In early February 2018 it was also announced that the capital of Taiwan was developing digital cards for capital citizens together with IOTA and local startup BiiLabs. Taibei will incorporate IOTA ID service also in some projects of creating a «smart city».
On 11 June 2018 Volkswagen announced cooperation with IOTA in its Twitter. At CEBIT 2018 companies were planning to show a new pilot version of a collaborative project of using IOTA DAG. This project aims to find a solution for the core problem of safe conducting over the air transfers (OTA) of transparent and intact firmware updates into self-driving cars network. Currently data distribution is centralised, so there is no guarantee that information delivered into each car is authentic and intact. This problem can be solved through a ledger or another similar technology.
SinoPac is working on notary solution, iCertificate, that uses IOTA Tangle. This solution is applicable to all types of digital documents for state and private sectors. The main goal is to ensure data protection. «iCertificate is an always needed notary service in a digital certification application, not only in education or public utility territories but in trading and supply chain industries», says Tina Chiang, Senior Executive Vice President of SinoPac. She explained that with IOTA’s support, iCertificate was developed as a flexible and extensible service, which efficiently consolidates the bothersome landscape of many individuals and different digital certification authorities into one platform.
There was opened a IOTA-based public market (Data Marketplace) for data provided by external sensors. The aim is to monetise the market with a volume of 2.5 trillion bytes of data, generated daily and showing exponential growth. 20 large organisations around the world, including Deutsche Telekom, Bosch, Microsoft, Orange, Fujitsu and others, joined the project. The market is giving connected devices the ability to securely transfer, buy, and sell various granular data. Fee-free Micropayments are processed by IOTA protocol. Data that was initially placed in the market includes environmental data from various locations all around the globe, agriculture data from Africa, anonymized health care data from wearables. Any user of network can also sell their data in the market.
Founders of the project are no doubt famous in cryptocommunity beyond IOTA. David Sønstebø is known for his contribution into IoT development, he started a project developing a super-economical power processor. Sergey Ivancheglo created the first consensus mechanism Proof of Stake in 2013. Cyril Grunspan is a famous French mathematician.
Citation, social networks - 3 points out of 3.
Usability / distribution - 2 point out of 2.
Projects based on technology - 3 points out of 3.
Famous persons in the team - 2 point out of 2.
The outlook is positive. It’s a very well-known project, when it regards to DAG first of all IOTA is mostly mentioned, although that is not the first project trying to apply this technology. The project has tremendous pace of growth, both regarding development and distribution, making partnerships with well-known companies, so IOTA regularly generates various news fuelling public interest to the project.
Rating. "IOTA" evaluation: 58 points out of 73 - 79,45%. The outlook is positive.
The outlook is positive. The project is aimed at a rapidly evolving industry with total investments nearing a trillion USD. IOTA platform has been fully functioning for almost a year and made a debut that revealed a number of weaknesses and bugs that are inevitable for a new technology. But weaknesses are being eliminated by the team, they perform active development, extend the functional, improve existing products. The project has a strong team, large investors and a wide rapidly growing network of partnerships with well-known companies.
Internet of Things market is currently going through a crazy growth. According to Ericsson estimations, by 2018 the number of sensors and devices in the Internet of Things will exceed the number of mobile phones and will become the largest category of connected devices. Compounded Annual Growth Rate (CAGR) of this sector between 2015 and 2021 will be 23%. Company’s analytics expect that by 2021 16 billion connected devices, out of approximately 28 billion around the globe, will be connected to the IoT. According to IDC, total global capital investments into IoT in 2016 were 737 billion USD, in 2017 more than 800 billion USD. And by 2021 they predict it to be around 1.4 trillion USD. So should the team implement all their ideas, future of IOTA looks optimistic and it will succeed.
IOTA technology is at initial , and mostly very experimental, stage now. As soon as it gets wide practical applications there will be many more problems such as reliability, legal consequences, real price of computer calculations, etc.
Now developers actively build the platform, improve its functionality, finalise code, correct vulnerabilities, implement new tools. Apart from the IoT IOTA aims towards online payments and fund transfers.
Implementation of IOTA is being criticised due to innovative cryptographic approach and for most users lack of apparent evidence that it has cost-effective advantages. Besides there are certain doubts caused by ternary redundancy for theoretical protection of quantum processes (no mass application, only prototypes available) and use of Coordinator (cooperates with fullnodes for extra protection against attacks onto young fragile network), necessity of its use and period of further application.
Spencer Bogart, partner at Blockchain Capital LLC, which invests in blockchain startups, says that «together with evident advantages DAG systems are still far from being a popular alternative, they are centralised and raw and based on non-verified, probably, dangerous decisions».
Official website: https://iota.org/
Twitter: https://twitter.com/iotatoken
Reddit: https://www.reddit.com/r/IOTA
Facebook: https://www.facebook.com/iotatoken
GitHub: https://github.com/IOTAledger
Medium: https://medium.com/iotatangle