Bitcoin Forum

Alternate cryptocurrencies => Announcements (Altcoins) => Topic started by: eli_lyd1 on June 08, 2018, 03:01:31 PM



Title: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 08, 2018, 03:01:31 PM
Please visit our new BTT post (https://bitcointalk.org/index.php?topic=5056409)



A Next Generation High-performance Decentralized Application Platform


  Official Website (https://www.vite.org/) | White Paper (https://www.vite.org/whitepaper/vite_en.pdf) | Discord (https://discordapp.com/invite/CsVY76q) | Telegram (https://t.me/vite_en) | Twitter (https://twitter.com/vitelabs) | Github (https://github.com/vitelabs)

The Core Key Designs of Vite

Asynchronous Architecture | DAG Ledger | HDPoS Consensus Algorithm | Reactive Contract | Integrated Value System


Specifications

  • Name: Vite
  • Symbol: VITE
  • Initial Supply: 1,000,000,000 Vite
  • Inflation: Less than 3% per year
  • Transaction Fee:  Quota Based Resource Allocation Protocol
    • 1. A PoW is calculated when the transaction is initiated (Just like Nano)
    • 2. Mortgage a certain amount of vite
    • 3. Destroy a small amount of vite
  • Consensus Algorithm: HDPoS Consensus Algorithm
  • Snapshot Chain Block Time: 1 seconds
  • Ledger: DAG (Block-Lattice) + Snapshot Chain
  • Smart Contract: Reactive Contract (Asynchronous Contract)
  • Smart Contract Language: Solidity++
  • Token Address: 0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016 (https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016)
  • Private Sale Investor: Bitmain, Node Capital, LinkVC, Genesis Capital, Ok Capital

Test Net 0.1

  • Vite Web Wallet (https://wallet.vite.net/)
  • Vite iOS Wallet (https://testflight.apple.com/join/3P0mLlhn)
  • Desktop Wallet (https://vite.net/)
  • Vite Store (http://vite.store)
  • Block Explorer (https://testnet.vite.net/)

Exchange

  • OKEX (https://www.okex.com/spot/trade#product=vite_eth)

Resources

  • White Paper (https://www.vite.org/whitepaper/vite_en.pdf)
  • Vite Introduction (https://vite.wiki/introduction/)
  • FAQ (https://www.vite.org/faq)


Introduction

Vite is a next-generation Reactive Blockchain that adopts a message-driven, asynchronous architecture and a DAG-based ledger.  The goal for Vite’s design is to provide a reliable public platform for industrial dApps, with features of ultra-high throughput and scalability.


The most important innovation of Vite is its asynchronous architecture.

The following are the main asynchronous characteristics in Vite’s designs:


  • Asynchronous model of requests and responses
  • Asynchronous model of writing and confirmation of transactions
  • Asynchronous model of communications between contracts


In addition, Vite makes use of a DAG ledger structure called block-lattice, which has far better performance than the traditional blockchain structure.  To make up for the inherent security deficiency of the DAG structure, Vite incorporates the Snapshot Chain technology.

Vite's consensus algorithm, called HDPoS, is a hierarchical consensus algorithm with low latency and high scalability.

In order to accommodate the existing ecosystem, the Vite virtual machine maintains maximum compatibility with EVM,  while providing a more powerful smart contract language, which we call solidity++.

Vite's original quota-based resource model and resource-leasing function ensure that system resources get allocated with maximum efficiency. Commercial Heavy users can be guaranteed sufficient quotas, while lightweight users do not have to pay commissions.

Vite's design of token issuing, token exchanging via loopring protocol and cross-chain protocol constitutes a complete closed-loop value system. Users can conveniently issue, store and exchange their digital assets in Vite system.

In the future, Vite’s mobile app will come with an HTML5 engine for creating dApplets (Decentralized Applets).  Smart contracts on the Vite platform and corresponding SDK support will make it easy to develop and deploy dApps on Vite.


The DAG ledger


Vite makes use of a DAG ledger structure called block-lattice. Each account has its own chain. Each transaction refers to the hash of the previous transaction in the same account. Transactions are divided into two types: "request transactions" and "response transactions.”  A response transaction needs to refer to the hash of the corresponding request transaction. This setup creates a grid-like DAG structure.

Such a structure allows parallel writing of individual transactions, reducing the probability of collisions and improving system throughput.

Note that this structure has an inherent deficiency in security.   This is because transactions are grouped by accounts, and each transaction is only attached to the chain associated with the relevant account. Transactions generated by other accounts do not automatically become the subsequent nodes of the previous transaction. Therefore, for some transactions, the rollback probability of their reversion will not drop over time.  To address this issue, Vite makes use of the snapshot chain technology.



The Model of Asynchronous Requests


Transactions in Vite can be categorized as request transactions and response transactions.  Regardless of whether an event is a transfer or the call of a contract, two successive transactions get generated on the ledger.

A transfer can be split into a receive transaction and a send transaction; a transaction to invoke a contract can be split into a contract request transaction and a contract response transaction; the message call within each contract can be split into a request transaction and a response transaction.

After the split, each transaction only affects the state of a single account, and transactions do not interfere with one another, which improves throughput.  In addition, transactions by different accounts are also allocated to different nodes in the network, thereby increasing scalability.


The Model of Asynchronous Confirmation



In the Vite framework, writing transactions into a ledger and receiving confirmations by the system are also asynchronous.  Different users may write transactions into the ledger in parallel., and the snapshot chain will take snapshots of the ledger at a constant rate.  A confirmation happens once a snapshot of a transaction is taken.  As the snapshot chain grows, the number of confirmations will also increase.

The mechanism of asynchronous confirmation will reduce the peaks and troughs of the speed of transaction writing, thus optimizing usage of resources.

Vite employs a hierarchical HDPoS consensus algorithm. Each account chain in the ledger generates local consensus results,  and the snapshot chain at the highest level selects the final consensus result from the local consensus results.


The Model of Asynchronous Communication


Vite's inter-contract communications incorporate a message-driven architecture, where the contracts do not share states but only communicate by sending messages to each other.

If a contract calls another contract, the former needs to send a request transaction first. This is logically similar to producing a message in MQ.  After the node running the target contract observes the request transaction, the node writes a corresponding response transaction in the ledger, and updates the state of the contract. This process is equivalent to consuming a message from MQ.if a return value is needed,  the target contract will send another message to the source contract in the same way.

In this model, Vite's ledger serves the role of the message middleware, and can guarantee the exactly-once semantics of messages.

The message-based architecture features high throughput and scalability.  But on the flip side, the programming models become more complex. Not only is strong consistency not guaranteed, but latencies may become longer.

To address the above issues and reduce the cost of asynchronous programming, Vite will provide a contract language called Solidity++ and a full SDK associated with it. After rigorous research, we found that in actual scenarios , BASE semantics can replace ACID semantics. The increase in delay is still under control since the HDPoS consensus algorithm guarantees completion of the transaction confirmation  within 1 second.


Other Designs


Vite’s design also comes with a few other features.  They are practical solutions to problems and pain points in the realm of decentralized applications. The development of Vite's community and implementation of the VEPs( Vite Enhancement Proposals) will drive continual improvement of Vite protocol.

Vite’s protocol supports multiple tokens. Unlike the ERC20 scheme, user-issued tokens and Vite tokens share the same underlying trading protocol.  This ensures identical level of security between types of tokens, and obviates security concerns due to poor implementation (e.g., those caused by stack overflow).

Vite will have the Loopring protocol built in, enabling exchange of multiple tokens. Therefore, the Vite wallet has functions of a decentralized exchange.

In addition, Vite proposed the VCTP cross-chain protocol that allows the transfer of assets between chains. The Vite team will implement the cross chain gateways with Ethereum.  Cross-chain gateways with other target chains will open to the community.

The resource allocation mechanism in Vite is based on the stake of VITE tokens, the one-time fee, and the difficulty of PoW for a transaction.  The mechanism provides flexibility for users with different needs. Users can choose to stake  VITE for a period, to get fixed amount of TPS quotas. They can also pay a one-time fee to increase quotas temporarily.  They could also lease resource quotas from existing VITE stake holders.  Lastly, they could even obtain quotas by computing  a PoW.

Moreover, the design of Vite includes the naming services, contract updating, timer scheduling, Solidity++ standard library, block pruning, and so on.

The white paper contains more specifics.


Distribution

The financing of the Vite project has been successfully completed, with a total of approximately 60,000 ETHs (including some BTC converted according to market prices).

A total of 400,000,000 Vite was issued, which accounted for 40% of the total circulation. It is expected that the first token will be issued before June 15 .

All token issuance is divided into 5 times, 20% each time, one month apart.

Vite’s investment institutions include: Bitmain, Node Capital, LinkVC, Genesis Capital, etc.

https://cdn-images-1.medium.com/max/1600/1*AlgnTQzfGTFk-LbseKE-8w.png

https://cdn-images-1.medium.com/max/1600/1*5SX1nrR0w1A2Wk5xITXheQ.png




Title: Re: [ANN] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 08, 2018, 03:01:58 PM
Reserved


Title: Re: [ANN] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 08, 2018, 03:02:14 PM
Reserved


Title: Re: [ANN] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Dasengineer on June 08, 2018, 03:11:01 PM
The new kid on the block! The investors and partners part are just top notch. Teams seems young but has already extensive experience. Seems very high hard cap and I can't find info if there was a public sale? Or it was sold to only private investors? Very interesting project


Title: Re: [ANN] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 08, 2018, 03:14:36 PM
The new kid on the block! The investors and partners part are just top notch. Teams seems young but has already extensive experience. Seems very high hard cap and I can't find info if there was a public sale? Or it was sold to only private investors? Very interesting project

There is no ICO. We accept fund from capital.

Our team is becoming stronger. We hired 16 engineers and PMs with six of them already on-boarded. The rest are in process of leaving their current positions.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: alicee on June 08, 2018, 03:48:16 PM
reserve Chinese translation


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Dasengineer on June 08, 2018, 03:50:44 PM
The new kid on the block! The investors and partners part are just top notch. Teams seems young but has already extensive experience. Seems very high hard cap and I can't find info if there was a public sale? Or it was sold to only private investors? Very interesting project

There is no ICO. We accept fund from capital.

Our team is becoming stronger. We hired 16 engineers and PMs with six of them already on-boarded. The rest are in process of leaving their current positions.

I see, so are the tokens for all the capitalists already distributed? What was the bonuses given (at least specify the range please). Is your token (as I understand it is still a token on Waves?) available for trading?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 08, 2018, 03:56:02 PM
The new kid on the block! The investors and partners part are just top notch. Teams seems young but has already extensive experience. Seems very high hard cap and I can't find info if there was a public sale? Or it was sold to only private investors? Very interesting project

There is no ICO. We accept fund from capital.

Our team is becoming stronger. We hired 16 engineers and PMs with six of them already on-boarded. The rest are in process of leaving their current positions.

I see, so are the tokens for all the capitalists already distributed? What was the bonuses given (at least specify the range please). Is your token (as I understand it is still a token on Waves?) available for trading?

Tokens for all the capitalists are not distributed. All token issuance is divided into 5 times, 20% each time, one month apart.

Now it's a ERC20 token on eth not on waves, you can check it at : https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016

In private sale, the Subscription Ratio is 1 eth for 7000 vite.

Now vite only can trade on loopring.io. Some of vite was sold on the loopring.io.  


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: lionheartmg on June 09, 2018, 04:10:31 AM
Is there staking or masternodes involved for regular Joe investors?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: tancos on June 09, 2018, 01:05:34 PM
The new kid on the block! The investors and partners part are just top notch. Teams seems young but has already extensive experience. Seems very high hard cap and I can't find info if there was a public sale? Or it was sold to only private investors? Very interesting project

There is no ICO. We accept fund from capital.

Our team is becoming stronger. We hired 16 engineers and PMs with six of them already on-boarded. The rest are in process of leaving their current positions.

I see, so are the tokens for all the capitalists already distributed? What was the bonuses given (at least specify the range please). Is your token (as I understand it is still a token on Waves?) available for trading?

Tokens for all the capitalists are not distributed. All token issuance is divided into 5 times, 20% each time, one month apart.

Now it's a ERC20 token on eth not on waves, you can check it at : https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016

In private sale, the Subscription Ratio is 1 eth for 7000 vite.

Now vite only can trade on loopring.io. Some of vite was sold on the loopring.io.  

Cool! Will buy some on loopring.io!  :) :)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: rufia75 on June 10, 2018, 07:03:13 AM
This should be interesting. 5% is alot, but wondering how they will distribute. There's already 8500 telegram members. If it grows to 30K+, sure distribution gets larger, but then 5% seems alot smaller. Not like a crowdsale, where public gets much larger slice of overall pie. I hope this doesn't turn into a $10 airdrop.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: btcthm on June 10, 2018, 08:29:00 AM
Good project. But no token sale?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Teepana on June 10, 2018, 10:25:58 AM
Would like also to know if we can run nodes or stack it for passive income


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: niharpradhan on June 10, 2018, 10:32:42 AM
Awesome...


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Cauchy on June 10, 2018, 11:18:39 AM
Interesting Project, congratulations on the funding and your recent newhires.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nikos1188 on June 10, 2018, 11:52:29 AM
Top 10 [Suspicious link removed]d work team


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: boconganh on June 10, 2018, 02:11:11 PM
Wait airdrop ::)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: ssecman on June 10, 2018, 03:22:22 PM
wait for airdrops


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Crypto Jaga on June 10, 2018, 03:34:24 PM
The project will be huge, but it is bit sad seeing all good projects simply ignore public sale (i.e., small players). Even with legal issues, I think the projects should consider allocating at least 20% for public sale. Anyway, good luck for the project !


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: wenpeili on June 10, 2018, 04:40:54 PM
Famous large-scale investment institutions





Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: rosalind on June 10, 2018, 08:51:24 PM
Reserved


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KurangKerjaan on June 10, 2018, 09:06:03 PM
do u have any translation bounty? i want to reserved malaysian


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: elmachino on June 10, 2018, 10:17:38 PM
wait for Aidrop :) Thank you


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: ahmadalsaady on June 11, 2018, 12:42:33 AM
Good Project, but it is sad to see how the new projects ignoring the public sale and sell it all to whales forgetting that crypto is all about communities


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: dkbit98 on June 11, 2018, 01:09:53 AM
I think we should have one separate forum subgroup for solid projects and ideas like VITE.
Any advantages to many other DAG projects ?

(reserved croatian translation)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: h84free on June 11, 2018, 01:50:12 AM
sounds promising.
pin!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 02:52:05 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 02:54:53 AM
Is there staking or masternodes involved for regular Joe investors?

Our Snapshot Chain Consensus is similar to DPOS. Only the top 25 voted delegate can get the reward.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 02:55:41 AM
;) ;) i love vite

Thank you.  ;D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 02:56:38 AM
This should be interesting. 5% is alot, but wondering how they will distribute. There's already 8500 telegram members. If it grows to 30K+, sure distribution gets larger, but then 5% seems alot smaller. Not like a crowdsale, where public gets much larger slice of overall pie. I hope this doesn't turn into a $10 airdrop.

We will make an announcement for a plan for an Airdrop soon! Stay tuned and thanks for your interest!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 02:58:49 AM
The project will be huge, but it is bit sad seeing all good projects simply ignore public sale (i.e., small players). Even with legal issues, I think the projects should consider allocating at least 20% for public sale. Anyway, good luck for the project !

The private sale is done, my so sorry for that.

We have reserve 5% of vite for airdrop. Just stay tuned.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 03:03:11 AM
Good Project, but it is sad to see how the new projects ignoring the public sale and sell it all to whales forgetting that crypto is all about communities

We can't do a public sell because of legal issues.

We will publish our Bounties and Airdrop plans soon. people can get some bounties for contributing or get free vite for airdrop.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Dr.Lecter on June 11, 2018, 03:43:48 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

I'm interested in VIte project. ;D and i would like to reserve Vietnamese translations. for more details, kindly check my pm.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: docker.will on June 11, 2018, 03:47:09 AM
Wait airdrop!!!!!!!!!!!!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: SgExcoin on June 11, 2018, 03:56:28 AM
waiting airdrop


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: xonecoinlovers on June 11, 2018, 04:18:00 AM
I've been reading about on the description in this thread,but still not really understand about the application platform.
How does the application work? does it means the application is customize able, depending on the company or personal that needing the application?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: dimikfx on June 11, 2018, 09:39:14 AM
How many percent of the total number of tokens do you plan to allocate to airdrop?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: hirsh on June 11, 2018, 10:24:43 AM
nice project


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: mixarsh on June 11, 2018, 11:48:08 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

Hi, I want to translate into Russian.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: XMN on June 11, 2018, 12:50:44 PM
wil you do any bounty program?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: moohooooo on June 11, 2018, 03:58:47 PM
wait for airdrop ;)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 04:12:04 PM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

I'm interested in VIte project. ;D and i would like to reserve Vietnamese translations. for more details, kindly check my pm.

Are you programmer?If you want to translate, maybe you should know some basic technology. If you are not the coder, I don't suggest you to translate.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 04:21:19 PM
I've been reading about on the description in this thread,but still not really understand about the application platform.
How does the application work? does it means the application is customize able, depending on the company or personal that needing the application?

The application platform is mean dApp platform, is similar to eth dApp. But in Vite, every smart contract is a single chain. Communication between contracts is asynchronous. Every chain can be design for public chain or private chain. And we also add some useful tools for developing contracts. you can check it from https://www.vite.org/whitepaper/vite_en.pdf

Quote
The improvements of Vite’s usability include
providing standard library support in Solidity++,
dedicated to processing message syntax, timing
scheduling of contract, VNS naming services, support
of contract upgrading, and so on


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 04:23:06 PM
do u have any translation bounty? i want to reserved malaysian

The translation bounty is on the way, but I don't know if you can handle the technology word in the white paper.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 11, 2018, 04:24:58 PM
wil you do any bounty program?

Yes, there will be some bounty program, but the detail have not decided. Please stay tuned.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: XMN on June 11, 2018, 07:06:07 PM
wil you do any bounty program?

Yes, there will be some bounty program, but the detail have not decided. Please stay tuned.

ok, thank you,

reserved for  translate to russian!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Dr.Lecter on June 12, 2018, 02:03:52 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

I'm interested in VIte project. ;D and i would like to reserve Vietnamese translations. for more details, kindly check my pm.

Are you programmer?If you want to translate, maybe you should know some basic technology. If you are not the coder, I don't suggest you to translate.
my major is CS at the university, so i can do it. ;)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: BTCMINER6579 on June 12, 2018, 02:30:37 AM
Which exchange will you list this token. When is the airdrop ?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: maaldaz on June 12, 2018, 03:17:09 AM
I'm still don't really understand about the concept of this project and the dAPP that it created.
How will the people utilize this dAPP?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 12, 2018, 03:33:41 AM
I'm still don't really understand about the concept of this project and the dAPP that it created.
How will the people utilize this dAPP?

The dApp is similar to eth. Each smart contract is a single chain, but in eth, there is only one chain. In eth, contracts may affects each other. 

In Vite contracts don't affects each other, If one contract make too many transactions it won't block other contract.

The core concept of Vite is: asynchronous architecture, the transaction is asynchronous, the contract is asynchronous.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 12, 2018, 03:34:23 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

I'm interested in VIte project. ;D and i would like to reserve Vietnamese translations. for more details, kindly check my pm.

Are you programmer?If you want to translate, maybe you should know some basic technology. If you are not the coder, I don't suggest you to translate.
my major is CS at the university, so i can do it. ;)

Ok, I see.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: tancos on June 12, 2018, 06:12:46 AM
The layout is broken in english version white paper.

Check this.

 > Definition 1.2 (Semantics of Transactional State Machine)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 12, 2018, 07:11:56 AM
The layout is broken in english version white paper.

Check this.

 > Definition 1.2 (Semantics of Transactional State Machine)

Thank you, I will check it.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: hakatu on June 12, 2018, 08:27:20 AM
Interesting project, I'm currently waitting for the airdrop!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: bangzy on June 12, 2018, 08:57:40 AM
There's a lot of dag project coming in the market, but it seems that VITE can achieve their plan, roadmap looks good.
Nice project .


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: trantien86 on June 12, 2018, 09:59:46 AM
Good project. I wait airdrop>


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: cryptohome on June 12, 2018, 10:38:30 AM
Hi, Is there any newsletter where we can subscribe to get notifications from Vite.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Dr.Lecter on June 12, 2018, 01:45:38 PM
Hi, Is there any newsletter where we can subscribe to get notifications from Vite.

i think you can join their telegram group (https://t.me/vite_en) to update latest news, or try with Discord (https://discordapp.com/invite/CsVY76q) channel


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: vebster on June 12, 2018, 06:31:47 PM
good project, I wait airdrop  8)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: lephuqui on June 13, 2018, 12:36:25 AM
When will airdrop start?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: notblox1 on June 13, 2018, 02:01:03 AM
I guess community us still small and developing.
I went to Vite Discord ans saw little activity there.

Maybe more people on Telegram ?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: maxjirawat on June 13, 2018, 12:06:25 PM
Wait anounment


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Tunapress on June 13, 2018, 02:43:58 PM
Noted


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: matrix007 on June 13, 2018, 10:57:18 PM
Good project but no ICO!
Btw,waiting for airdrop  :)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: niharpradhan on June 14, 2018, 10:57:11 AM
Interesting Project, congratulations on the funding and your recent newhires.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 14, 2018, 11:29:43 AM
Interesting project, I'm currently waitting for the airdrop!

Stay tuned.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 14, 2018, 11:31:02 AM
I guess community us still small and developing.
I went to Vite Discord ans saw little activity there.

Maybe more people on Telegram ?

Yes, there are about 18000 people in  English Telegram Group.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 14, 2018, 12:50:05 PM
------------Update-----------

A Series of Questions from our thoughtful fanbase, and our Answers to them.

We received a number of very well thought-out questions from our fans, and are publishing answers to them below:

https://medium.com/@viteofficial/a-series-of-questions-from-our-thoughtful-fanbase-and-our-answers-to-them-2b7e0458e28f


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: FEIFEIRUN on June 14, 2018, 04:08:27 PM
There's a lot of dag project coming in the market


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: andro hac on June 14, 2018, 06:37:24 PM
I look forward to updates and additional information on the upcoming ICO


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: yubid on June 15, 2018, 05:50:43 AM
I look forward to updates and additional information on the upcoming ICO

there is no public sale. only airdrop and private sale


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: XMN on June 15, 2018, 08:13:35 AM
I look forward to updates and additional information on the upcoming ICO

there is no public sale. only airdrop and private sale

+ bounty program


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: iBenGunArmor on June 15, 2018, 02:17:40 PM
I read your preview, and very interested. Quite succinctly and clearly all described. Tell me whether you will have more open information on solidity++ and what will be the fundamental difference from smart contracts based on Eth.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: simongoat on June 15, 2018, 03:32:15 PM
This looks like an interesting projoct. Whats the best way to get on the airdrop?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: andro hac on June 16, 2018, 05:28:56 AM
I look forward to updates and additional information on the upcoming ICO

there is no public sale. only airdrop and private sale
Yes thanks,I also found the information here

https://i.imgur.com/z5NzATM.png

https://icodrops.com/vite/


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: David1996 on June 16, 2018, 12:02:48 PM
I am waiting for bounty campaign  ;D ;D ;D this is the great project.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KokoroKlphn on June 16, 2018, 12:56:00 PM
Reserved


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Maksim Bondarenko on June 16, 2018, 02:22:07 PM
Great project, congratulations on financing! We follow your news.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: JCviggen on June 16, 2018, 06:52:56 PM
Perhaps, subscribe to this topic, like strong projects without public sales.
So I hope that the latest announcements from the team are on the way and will not take long to wait..


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Andry Solyankin on June 16, 2018, 09:42:45 PM
Excellent team, strong project!Good luck!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nonmeister on June 17, 2018, 12:50:10 AM
I can't wait airdrop from this project, "high performance DApps platform".
I will follow this project.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nmcryptopro on June 17, 2018, 08:43:07 AM
Interesting Project


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: redsaints4 on June 17, 2018, 12:37:55 PM
Awesome Project !!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: parviznik on June 17, 2018, 01:14:39 PM
great idea. when will the airdrop?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 17, 2018, 02:17:08 PM
I look forward to updates and additional information on the upcoming ICO

Sorry, vite won't do a ico. The private sale is closed, you can buy some form loopring.io or get some from airdrop.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 17, 2018, 02:21:11 PM
Perhaps, subscribe to this topic, like strong projects without public sales.
So I hope that the latest announcements from the team are on the way and will not take long to wait..

Yes, just wait, there is some update: https://medium.com/vitelabs/a-series-of-questions-from-our-thoughtful-fanbase-and-our-answers-to-them-84b6ae6bf509


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: mike0182(hacked) on June 17, 2018, 03:02:14 PM
Could you tell me, the tokens are sold in Bilaxy this is the original tokens Vite?

https://bilaxy.com/exchange#symbol=44 (https://bilaxy.com/exchange#symbol=44)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: somme_ma on June 17, 2018, 08:22:44 PM
DO you need someone for german translation or prove-reading?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Pollax on June 18, 2018, 04:42:56 AM
Yeah! waiting for airdrop!!! 8)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: iputnikov on June 18, 2018, 05:00:01 AM
I'm waiting for an update on holding an airpoop! Probably not only me, I want to get coins of this project


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: kenobius on June 18, 2018, 05:52:35 AM
Could you tell me, the tokens are sold in Bilaxy this is the original tokens Vite?

https://bilaxy.com/exchange#symbol=44 (https://bilaxy.com/exchange#symbol=44)
I did not find the announcement, but judging by the Bilaxy - Ethereum Accounts https://etherscan.io/tokentxns?a=0xf7793d27a1b76cdf14db7c83e82c772cf7c92910
it's the same VITE


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Virus_Pro on June 18, 2018, 10:24:20 AM
Good project) I am waiting airdrop


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: proo7 on June 18, 2018, 01:22:03 PM
Could you tell me, the tokens are sold in Bilaxy this is the original tokens Vite?

https://bilaxy.com/exchange#symbol=44 (https://bilaxy.com/exchange#symbol=44)
I did not find the announcement, but judging by the Bilaxy - Ethereum Accounts https://etherscan.io/tokentxns?a=0xf7793d27a1b76cdf14db7c83e82c772cf7c92910
it's the same VITE

Can this be confirmed ?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Estrange18 on June 18, 2018, 02:19:40 PM
Personaly I like this project. and this is a bit sad that there won't be any public sale and everything was sold on privat. Hope at list airdrop will be fair.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: bitfunnymore1 on June 18, 2018, 04:27:37 PM
 ;D VITE, another dag project! there are too many cryptocurrency about this technology existed by now. in my survey, more than fifteen ones have died, and more than forty ones are still alive, so in this field, it's competitive extremely. For these ones, Iota,nano,fancom&Rchain maybe famous for public, especially iota. DAG as a creative consensus other than chain, have another future. many professional teams aim to it to make some great work ! maybe Vite,is just the one which has a strong technology team and a clear roadmap. in a short word, VITE is a decentralized  application platform connecting the nano's block lattice DAG with ehtereum smart contact concept, is compatible with ehtereum Dapps, and better than fantom. Hope it to arrive it's great goal!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 07:50:20 AM
Could you tell me, the tokens are sold in Bilaxy this is the original tokens Vite?

https://bilaxy.com/exchange#symbol=44 (https://bilaxy.com/exchange#symbol=44)
I did not find the announcement, but judging by the Bilaxy - Ethereum Accounts https://etherscan.io/tokentxns?a=0xf7793d27a1b76cdf14db7c83e82c772cf7c92910
it's the same VITE

Yes, it's the same vite. Our token address: https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 07:52:50 AM

A Next Generation High-performance Decentralized Application Platform


  Official Website (https://www.vite.org/) | White Paper (https://www.vite.org/whitepaper/vite_en.pdf) | Discord (https://discordapp.com/invite/CsVY76q) | Telegram (https://t.me/vite_en) | Twitter (https://twitter.com/vitelabs) | Github (https://github.com/vitelabs)

The Core Key Designs of Vite

Asynchronous Architecture | DAG Ledger | HDPoS Consensus Algorithm | Reactive Contract | Integrated Value System


Specifications

  • Name: Vite
  • Symbol: VITE
  • Initial Supply: 1,000,000,000 Vite
  • Consensus Algorithm: HDPoS Consensus Algorithm
  • Snapshot Chain Block Time: 1 seconds
  • Ledger: DAG (Block-Lattice) + Snapshot Chain
  • Smart Contract: Reactive Contract (Asynchronous Contract)
  • Token Address: 0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016 (https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016)

Introduction

Vite is a next-generation Reactive Blockchain that adopts a message-driven, asynchronous architecture and a DAG-based ledger.  The goal for Vite’s design is to provide a reliable public platform for industrial dApps, with features of ultra-high throughput and scalability.


The most important innovation of Vite is its asynchronous architecture.

The following are the main asynchronous characteristics in Vite’s designs:


  • Asynchronous model of requests and responses
  • Asynchronous model of writing and confirmation of transactions
  • Asynchronous model of communications between contracts


In addition, Vite makes use of a DAG ledger structure called block-lattice, which has far better performance than the traditional blockchain structure.  To make up for the inherent security deficiency of the DAG structure, Vite incorporates the Snapshot Chain technology.

Vite's consensus algorithm, called HDPoS, is a hierarchical consensus algorithm with low latency and high scalability.

In order to accommodate the existing ecosystem, the Vite virtual machine maintains maximum compatibility with EVM,  while providing a more powerful smart contract language, which we call solidity++.

Vite's original quota-based resource model and resource-leasing function ensure that system resources get allocated with maximum efficiency. Commercial Heavy users can be guaranteed sufficient quotas, while lightweight users do not have to pay commissions.

Vite's design of token issuing, token exchanging via loopring protocol and cross-chain protocol constitutes a complete closed-loop value system. Users can conveniently issue, store and exchange their digital assets in Vite system.

In the future, Vite’s mobile app will come with an HTML5 engine for creating dApplets (Decentralized Applets).  Smart contracts on the Vite platform and corresponding SDK support will make it easy to develop and deploy dApps on Vite.


The DAG ledger


Vite makes use of a DAG ledger structure called block-lattice. Each account has its own chain. Each transaction refers to the hash of the previous transaction in the same account. Transactions are divided into two types: "request transactions" and "response transactions.”  A response transaction needs to refer to the hash of the corresponding request transaction. This setup creates a grid-like DAG structure.

Such a structure allows parallel writing of individual transactions, reducing the probability of collisions and improving system throughput.

Note that this structure has an inherent deficiency in security.   This is because transactions are grouped by accounts, and each transaction is only attached to the chain associated with the relevant account. Transactions generated by other accounts do not automatically become the subsequent nodes of the previous transaction. Therefore, for some transactions, the rollback probability of their reversion will not drop over time.  To address this issue, Vite makes use of the snapshot chain technology.



The Model of Asynchronous Requests


Transactions in Vite can be categorized as request transactions and response transactions.  Regardless of whether an event is a transfer or the call of a contract, two successive transactions get generated on the ledger.

A transfer can be split into a receive transaction and a send transaction; a transaction to invoke a contract can be split into a contract request transaction and a contract response transaction; the message call within each contract can be split into a request transaction and a response transaction.

After the split, each transaction only affects the state of a single account, and transactions do not interfere with one another, which improves throughput.  In addition, transactions by different accounts are also allocated to different nodes in the network, thereby increasing scalability.


The Model of Asynchronous Confirmation



In the Vite framework, writing transactions into a ledger and receiving confirmations by the system are also asynchronous.  Different users may write transactions into the ledger in parallel., and the snapshot chain will take snapshots of the ledger at a constant rate.  A confirmation happens once a snapshot of a transaction is taken.  As the snapshot chain grows, the number of confirmations will also increase.

The mechanism of asynchronous confirmation will reduce the peaks and troughs of the speed of transaction writing, thus optimizing usage of resources.

Vite employs a hierarchical HDPoS consensus algorithm. Each account chain in the ledger generates local consensus results,  and the snapshot chain at the highest level selects the final consensus result from the local consensus results.


The Model of Asynchronous Communication


Vite's inter-contract communications incorporate a message-driven architecture, where the contracts do not share states but only communicate by sending messages to each other.

If a contract calls another contract, the former needs to send a request transaction first. This is logically similar to producing a message in MQ.  After the node running the target contract observes the request transaction, the node writes a corresponding response transaction in the ledger, and updates the state of the contract. This process is equivalent to consuming a message from MQ.if a return value is needed,  the target contract will send another message to the source contract in the same way.

In this model, Vite's ledger serves the role of the message middleware, and can guarantee the exactly-once semantics of messages.

The message-based architecture features high throughput and scalability.  But on the flip side, the programming models become more complex. Not only is strong consistency not guaranteed, but latencies may become longer.

To address the above issues and reduce the cost of asynchronous programming, Vite will provide a contract language called Solidity++ and a full SDK associated with it. After rigorous research, we found that in actual scenarios , BASE semantics can replace ACID semantics. The increase in delay is still under control since the HDPoS consensus algorithm guarantees completion of the transaction confirmation  within 1 second.


Other Designs


Vite’s design also comes with a few other features.  They are practical solutions to problems and pain points in the realm of decentralized applications. The development of Vite's community and implementation of the VEPs( Vite Enhancement Proposals) will drive continual improvement of Vite protocol.

Vite’s protocol supports multiple tokens. Unlike the ERC20 scheme, user-issued tokens and Vite tokens share the same underlying trading protocol.  This ensures identical level of security between types of tokens, and obviates security concerns due to poor implementation (e.g., those caused by stack overflow).

Vite will have the Loopring protocol built in, enabling exchange of multiple tokens. Therefore, the Vite wallet has functions of a decentralized exchange.

In addition, Vite proposed the VCTP cross-chain protocol that allows the transfer of assets between chains. The Vite team will implement the cross chain gateways with Ethereum.  Cross-chain gateways with other target chains will open to the community.

The resource allocation mechanism in Vite is based on the stake of VITE tokens, the one-time fee, and the difficulty of PoW for a transaction.  The mechanism provides flexibility for users with different needs. Users can choose to stake  VITE for a period, to get fixed amount of TPS quotas. They can also pay a one-time fee to increase quotas temporarily.  They could also lease resource quotas from existing VITE stake holders.  Lastly, they could even obtain quotas by computing  a PoW.

Moreover, the design of Vite includes the naming services, contract updating, timer scheduling, Solidity++ standard library, block pruning, and so on.

The white paper contains more specifics.


Distribution

The financing of the Vite project has been successfully completed, with a total of approximately 60,000 ETHs (including some BTC converted according to market prices).

A total of 400,000,000 Vite was issued, which accounted for 40% of the total circulation. It is expected that the first token will be issued before June 15 .

All token issuance is divided into 5 times, 20% each time, one month apart.

Vite’s investment institutions include: Bitmain, Node Capital, LinkVC, Genesis Capital, etc.

https://cdn-images-1.medium.com/max/1600/1*AlgnTQzfGTFk-LbseKE-8w.png

https://cdn-images-1.medium.com/max/1600/1*5SX1nrR0w1A2Wk5xITXheQ.png

Resources

  • White Paper (https://www.vite.org/whitepaper/vite_en.pdf)
  • Vite Introduction (https://doc.vite.org/introduction/)
  • FAQ (https://www.vite.org/faq)

Airdrop

we will make an announcement for a plan for an Airdrop soon! Stay tuned!




Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 08:00:46 AM
Could you tell me, the tokens are sold in Bilaxy this is the original tokens Vite?

https://bilaxy.com/exchange#symbol=44 (https://bilaxy.com/exchange#symbol=44)

It's the same vite.

But we don't suggest you to trade there, we suggest you to trade on loopring.io, the decentralized exchange is more safe.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 08:02:25 AM
;D VITE, another dag project! there are too many cryptocurrency about this technology existed by now. in my survey, more than fifteen ones have died, and more than forty ones are still alive, so in this field, it's competitive extremely. For these ones, Iota,nano,fancom&Rchain maybe famous for public, especially iota. DAG as a creative consensus other than chain, have another future. many professional teams aim to it to make some great work ! maybe Vite,is just the one which has a strong technology team and a clear roadmap. in a short word, VITE is a decentralized  application platform connecting the nano's block lattice DAG with ehtereum smart contact concept, is compatible with ehtereum Dapps, and better than fantom. Hope it to arrive it's great goal!

Thank your encourage. ;D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 08:03:43 AM
Could you tell me, the tokens are sold in Bilaxy this is the original tokens Vite?

https://bilaxy.com/exchange#symbol=44 (https://bilaxy.com/exchange#symbol=44)
I did not find the announcement, but judging by the Bilaxy - Ethereum Accounts https://etherscan.io/tokentxns?a=0xf7793d27a1b76cdf14db7c83e82c772cf7c92910
it's the same VITE

Can this be confirmed ?

It's the same vite.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 08:04:51 AM
Personaly I like this project. and this is a bit sad that there won't be any public sale and everything was sold on privat. Hope at list airdrop will be fair.

I'm also very sorry that private sale is closed, now, you can buy from loopring.io or waiting for airdropping.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 19, 2018, 08:15:57 AM
I read your preview, and very interested. Quite succinctly and clearly all described. Tell me whether you will have more open information on solidity++ and what will be the fundamental difference from smart contracts based on Eth.

We will open more info about solidity++, please stay tuned.

The most difference between eth and vite are:

  • Communication between contract is asynchronous
  • In solidity++, it's more like a asynchronous programming

For example:

In solidity:

Code:
pragma solidity ^0.4.0;
contract B {
function add(uint a, uint b) returns (uint ret) {
  return a + b;
 }
}
contract A {
  uint total;
  function invoker(address addr, uint a, uint b) {
  // message call to A.add()
  uint sum = B(addr).add(a, b);
  // use the return value
  if (sum > 10) {
     total += sum;
    }
  }
}

In solidity++:

Code:

pragma solidity++ ^0.1.0;
contract B {
   message Add(uint a, uint b);
   message Sum(uint sum);
   Add.on {
   // read message
   uint a = msg.data.a;
   uint b = msg.data.b;
   address sender = msg.sender;
   // do things
   uint sum = a + b;
   // send message to return result
   send(sender, Sum(sum));
  }
}
contract A {
   uint total;
   function invoker(address addr, uint a, uint b) {
    // message call to B
    send(addr, Add(a, b))
    // you can do anything after sending
    // a message other than using the
    // return value
   }
  Sum.on {
    // get return data from message
   uint sum = msg.data.sum;
   // use the return data
   if (sum > 10) {
     total += sum;
   }
 }
}


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: GodAbes on June 19, 2018, 08:20:39 AM
what a great project, i'll get coins in exchange and from airdrop  ;D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: mrongoz22 on June 19, 2018, 08:31:05 AM
Vite is a next-generation Reactive Blockchain that adopts a message-driven, great project with new concept i am very interesting
hopefull this project will be succes


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nikolya1989 on June 19, 2018, 01:37:38 PM

I really hope that the airdrop will not have to wait long, and the participants will receive a fair number of coins. It's very bad if they give out coins for 1-2 dollars. We believe and hope.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: pvdth on June 19, 2018, 03:41:48 PM

A Next Generation High-performance Decentralized Application Platform


  Official Website (https://www.vite.org/) | White Paper (https://www.vite.org/whitepaper/vite_en.pdf) | Discord (https://discordapp.com/invite/CsVY76q) | Telegram (https://t.me/vite_en) | Twitter (https://twitter.com/vitelabs) | Github (https://github.com/vitelabs)

The Core Key Designs of Vite

Asynchronous Architecture | DAG Ledger | HDPoS Consensus Algorithm | Reactive Contract | Integrated Value System


Specifications

  • Name: Vite
  • Symbol: VITE
  • Initial Supply: 1,000,000,000 Vite
  • Consensus Algorithm: HDPoS Consensus Algorithm
  • Snapshot Chain Block Time: 1 seconds
  • Ledger: DAG (Block-Lattice) + Snapshot Chain
  • Smart Contract: Reactive Contract (Asynchronous Contract)
  • Token Address: 0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016 (https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016)

Introduction

Vite is a next-generation Reactive Blockchain that adopts a message-driven, asynchronous architecture and a DAG-based ledger.  The goal for Vite’s design is to provide a reliable public platform for industrial dApps, with features of ultra-high throughput and scalability.


The most important innovation of Vite is its asynchronous architecture.

The following are the main asynchronous characteristics in Vite’s designs:


  • Asynchronous model of requests and responses
  • Asynchronous model of writing and confirmation of transactions
  • Asynchronous model of communications between contracts


In addition, Vite makes use of a DAG ledger structure called block-lattice, which has far better performance than the traditional blockchain structure.  To make up for the inherent security deficiency of the DAG structure, Vite incorporates the Snapshot Chain technology.

Vite's consensus algorithm, called HDPoS, is a hierarchical consensus algorithm with low latency and high scalability.

In order to accommodate the existing ecosystem, the Vite virtual machine maintains maximum compatibility with EVM,  while providing a more powerful smart contract language, which we call solidity++.

Vite's original quota-based resource model and resource-leasing function ensure that system resources get allocated with maximum efficiency. Commercial Heavy users can be guaranteed sufficient quotas, while lightweight users do not have to pay commissions.

Vite's design of token issuing, token exchanging via loopring protocol and cross-chain protocol constitutes a complete closed-loop value system. Users can conveniently issue, store and exchange their digital assets in Vite system.

In the future, Vite’s mobile app will come with an HTML5 engine for creating dApplets (Decentralized Applets).  Smart contracts on the Vite platform and corresponding SDK support will make it easy to develop and deploy dApps on Vite.


The DAG ledger


Vite makes use of a DAG ledger structure called block-lattice. Each account has its own chain. Each transaction refers to the hash of the previous transaction in the same account. Transactions are divided into two types: "request transactions" and "response transactions.”  A response transaction needs to refer to the hash of the corresponding request transaction. This setup creates a grid-like DAG structure.

Such a structure allows parallel writing of individual transactions, reducing the probability of collisions and improving system throughput.

Note that this structure has an inherent deficiency in security.   This is because transactions are grouped by accounts, and each transaction is only attached to the chain associated with the relevant account. Transactions generated by other accounts do not automatically become the subsequent nodes of the previous transaction. Therefore, for some transactions, the rollback probability of their reversion will not drop over time.  To address this issue, Vite makes use of the snapshot chain technology.



The Model of Asynchronous Requests


Transactions in Vite can be categorized as request transactions and response transactions.  Regardless of whether an event is a transfer or the call of a contract, two successive transactions get generated on the ledger.

A transfer can be split into a receive transaction and a send transaction; a transaction to invoke a contract can be split into a contract request transaction and a contract response transaction; the message call within each contract can be split into a request transaction and a response transaction.

After the split, each transaction only affects the state of a single account, and transactions do not interfere with one another, which improves throughput.  In addition, transactions by different accounts are also allocated to different nodes in the network, thereby increasing scalability.


The Model of Asynchronous Confirmation



In the Vite framework, writing transactions into a ledger and receiving confirmations by the system are also asynchronous.  Different users may write transactions into the ledger in parallel., and the snapshot chain will take snapshots of the ledger at a constant rate.  A confirmation happens once a snapshot of a transaction is taken.  As the snapshot chain grows, the number of confirmations will also increase.

The mechanism of asynchronous confirmation will reduce the peaks and troughs of the speed of transaction writing, thus optimizing usage of resources.

Vite employs a hierarchical HDPoS consensus algorithm. Each account chain in the ledger generates local consensus results,  and the snapshot chain at the highest level selects the final consensus result from the local consensus results.


The Model of Asynchronous Communication


Vite's inter-contract communications incorporate a message-driven architecture, where the contracts do not share states but only communicate by sending messages to each other.

If a contract calls another contract, the former needs to send a request transaction first. This is logically similar to producing a message in MQ.  After the node running the target contract observes the request transaction, the node writes a corresponding response transaction in the ledger, and updates the state of the contract. This process is equivalent to consuming a message from MQ.if a return value is needed,  the target contract will send another message to the source contract in the same way.

In this model, Vite's ledger serves the role of the message middleware, and can guarantee the exactly-once semantics of messages.

The message-based architecture features high throughput and scalability.  But on the flip side, the programming models become more complex. Not only is strong consistency not guaranteed, but latencies may become longer.

To address the above issues and reduce the cost of asynchronous programming, Vite will provide a contract language called Solidity++ and a full SDK associated with it. After rigorous research, we found that in actual scenarios , BASE semantics can replace ACID semantics. The increase in delay is still under control since the HDPoS consensus algorithm guarantees completion of the transaction confirmation  within 1 second.


Other Designs


Vite’s design also comes with a few other features.  They are practical solutions to problems and pain points in the realm of decentralized applications. The development of Vite's community and implementation of the VEPs( Vite Enhancement Proposals) will drive continual improvement of Vite protocol.

Vite’s protocol supports multiple tokens. Unlike the ERC20 scheme, user-issued tokens and Vite tokens share the same underlying trading protocol.  This ensures identical level of security between types of tokens, and obviates security concerns due to poor implementation (e.g., those caused by stack overflow).

Vite will have the Loopring protocol built in, enabling exchange of multiple tokens. Therefore, the Vite wallet has functions of a decentralized exchange.

In addition, Vite proposed the VCTP cross-chain protocol that allows the transfer of assets between chains. The Vite team will implement the cross chain gateways with Ethereum.  Cross-chain gateways with other target chains will open to the community.

The resource allocation mechanism in Vite is based on the stake of VITE tokens, the one-time fee, and the difficulty of PoW for a transaction.  The mechanism provides flexibility for users with different needs. Users can choose to stake  VITE for a period, to get fixed amount of TPS quotas. They can also pay a one-time fee to increase quotas temporarily.  They could also lease resource quotas from existing VITE stake holders.  Lastly, they could even obtain quotas by computing  a PoW.

Moreover, the design of Vite includes the naming services, contract updating, timer scheduling, Solidity++ standard library, block pruning, and so on.

The white paper contains more specifics.


Distribution

The financing of the Vite project has been successfully completed, with a total of approximately 60,000 ETHs (including some BTC converted according to market prices).

A total of 400,000,000 Vite was issued, which accounted for 40% of the total circulation. It is expected that the first token will be issued before June 15 .

All token issuance is divided into 5 times, 20% each time, one month apart.

Vite’s investment institutions include: Bitmain, Node Capital, LinkVC, Genesis Capital, etc.

https://cdn-images-1.medium.com/max/1600/1*AlgnTQzfGTFk-LbseKE-8w.png

https://cdn-images-1.medium.com/max/1600/1*5SX1nrR0w1A2Wk5xITXheQ.png

Resources

  • White Paper (https://www.vite.org/whitepaper/vite_en.pdf)
  • Vite Introduction (https://doc.vite.org/introduction/)
  • FAQ (https://www.vite.org/faq)

Airdrop

we will make an announcement for a plan for an Airdrop soon! Stay tuned!




Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Vikhy on June 19, 2018, 04:07:03 PM
Looking for airdrops  ;D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: kenobius on June 20, 2018, 01:52:28 AM
A Series of Questions from our thoughtful fanbase, and VITE Answers to them.
https://medium.com/vitelabs/a-series-of-questions-from-our-thoughtful-fanbase-and-our-answers-to-them-84b6ae6bf509
oh, that's interesting:
Q: Will the Name Service be protected from a homograph attack?
[http://www.analyticsedge.com/2016/11/heres-a-secret-%C9%A2oogle-com-is-not-google-com/]
[https://en.wikipedia.org/wiki/IDN_homograph_attack]
If yes, how?

A: We will limit the character set to ASCII and provide a library to hash the name to a pixel image like this: https://github.com/ethereum/blockies. The text of names may look similar but the profile pictures look completely different.

Q: Contract Update. Hackers or malicious owners of the contract (aka, scammers) can change the internal structure of the smart contract — and users will think that everything is ok. How will this problem be solved? (If keyword static is purposefully not used.)

Will the delegation of a consensus group proxy node be mandatory to avoid the falsification of a smart contract?

A: We don’t think delegated nodes consensus is a good idea. Critical contracts should be defined as static. The non-static contracts play the role of the backend of dApps. The owner of the contract is responsible for the correctness of the contract.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: loverlone577 on June 20, 2018, 05:28:59 AM
I wait airdrop 😍


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: CryptoBry on June 20, 2018, 09:28:42 AM


This is an interesting project and since there will no more be an ICO I am then happy to receive some airdrops. I now see that there are many project using the DAG platform...and there can be more based on the fact that DAG is serving well. With a good and young team behind the project, the energy and excitement is quite easy to detect in here. I am wishing VITE all the success that it deserves.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: TonyRaut on June 20, 2018, 09:31:52 AM
I wait airdrop 😍

It seems to me that there is no Airdrop. maybe I missed this information. but I can not find it at all.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: paramonline on June 20, 2018, 03:21:13 PM
I wait airdrop 😍

It seems to me that there is no Airdrop. maybe I missed this information. but I can not find it at all.


thats on their english telegram..
"We will make an announcement for a plan for an Airdrop soon! Stay tuned and thanks for your interest."

i am waiting for airdrop rules as well..


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: earlybirdly on June 20, 2018, 06:43:10 PM
Is there any bounty? Looking forward to the airdrop.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: hta on June 21, 2018, 05:28:02 AM
Good project, I bought VITE on bilaxy

for those who need it https://bilaxy.com/exchange#symbol=44


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: pasha888 on June 21, 2018, 11:05:15 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

HI! Awesome project!!! And I ready to translate on Russian!!! I am Waiting PM from you!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Qrypta on June 21, 2018, 03:17:21 PM
I'm always impressed with DAG.. I think it's the future and more practical


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: XMN on June 22, 2018, 04:05:11 AM
reserve Chinese translation

We have the translation of Chinese. Now we may need other languages, such as Russian, Korean and Vietnamese

HI! Awesome project!!! And I ready to translate on Russian!!! I am Waiting PM from you!

reserved! :))


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: poiseulle on June 23, 2018, 02:25:53 AM
how to participate in airdrop?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: jewel1992 on June 23, 2018, 02:42:53 AM
The project is looking good. Is there no ICO? What is the token price? And why there is no bounty ? I would like to more about this project.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: tchame on June 23, 2018, 06:58:51 AM
This project looks promising


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: loverlone577 on June 23, 2018, 05:58:40 PM
When start airdrop ?
I waited


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Estrange18 on June 23, 2018, 06:30:30 PM
https://t.me/vite_ann/13
Vite will have major news release this coming week (the week of Jun 25). Stay tuned!
Maybe it will be some news about airdrop )


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Thibault75005 on June 23, 2018, 07:24:04 PM
Amazing project !


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: NakiRR on June 23, 2018, 07:42:27 PM
As far i understood the crowdsale is canceled.. funds like bitmain, node capital, etc. got all allocations, it's a pity, i wanted to enter.

Hope that i will get at least airdrop.

And i wanted to ask, seems like some small stake of tokens already tradeable, can you clarify what amount is circulating right now?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Javad36 on June 24, 2018, 07:03:21 AM
excellent project . professional developers . thanks


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eznanke on June 24, 2018, 08:11:12 AM
Reserved


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: kenobius on June 24, 2018, 12:29:16 PM
https://t.me/vite_ann/13
Vite will have major news release this coming week (the week of Jun 25). Stay tuned!
Maybe it will be some news about airdrop )
i think they mean this:
Vite Labs is pleased to announce that it has entered into a long-term strategic partnership with OK Blockchain Capital (“OK Capital” below), a blockchain-focused investment fund under OK Group.
https://medium.com/vitelabs/vite-and-ok-blockchain-capital-enter-into-strategic-partnership-38a1ad9c5b37


 


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 24, 2018, 04:59:30 PM
https://t.me/vite_ann/13
Vite will have major news release this coming week (the week of Jun 25). Stay tuned!
Maybe it will be some news about airdrop )
i think they mean this:
Vite Labs is pleased to announce that it has entered into a long-term strategic partnership with OK Blockchain Capital (“OK Capital” below), a blockchain-focused investment fund under OK Group.
https://medium.com/vitelabs/vite-and-ok-blockchain-capital-enter-into-strategic-partnership-38a1ad9c5b37

Yes. You are right.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 24, 2018, 05:04:19 PM
As far i understood the crowdsale is canceled.. funds like bitmain, node capital, etc. got all allocations, it's a pity, i wanted to enter.

Hope that i will get at least airdrop.

And i wanted to ask, seems like some small stake of tokens already tradeable, can you clarify what amount is circulating right now?

The Token been sold at private sale is 40%.  Token will be released for 5 months, every month will release 20%. So in the first month the circulating is: 40% * 20% = 8%.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 24, 2018, 05:06:35 PM


This is an interesting project and since there will no more be an ICO I am then happy to receive some airdrops. I now see that there are many project using the DAG platform...and there can be more based on the fact that DAG is serving well. With a good and young team behind the project, the energy and excitement is quite easy to detect in here. I am wishing VITE all the success that it deserves.

Just stay tuned, AIRDROP is coming soon.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Tuanpk on June 24, 2018, 08:59:31 PM
I think this project very good. But I want see more, and when airdrop?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: V8D8ForYou on June 25, 2018, 01:29:04 AM
I'm waiting for the airdrop. I really believe in your project.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: piebeyb on June 25, 2018, 01:41:18 AM
https://twitter.com/Aurora_dao/status/1010661816018432001
correction if i am wrong, is it true this is a VITE token added by IDEX, if true i want to be part of this thread see what is interesting in this project, if i see the contract address it seems not wrong


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 05:14:42 AM
https://twitter.com/Aurora_dao/status/1010661816018432001
correction if i am wrong, is it true this is a VITE token added by IDEX, if true i want to be part of this thread see what is interesting in this project, if i see the contract address it seems not wrong


The vite is true vite, but idex is not official exchange. We have not contact with idex.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 05:19:37 AM
Hello fellows.
It seems of this project will be preferably in the near future.

Thanks  ;D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Gonzo1977 on June 25, 2018, 07:11:02 AM
Will you have bounty campaigns?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 12:18:20 PM
Will you have bounty campaigns?

Just stay tuned.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: NakiRR on June 25, 2018, 12:46:55 PM
As far i understood the crowdsale is canceled.. funds like bitmain, node capital, etc. got all allocations, it's a pity, i wanted to enter.

Hope that i will get at least airdrop.

And i wanted to ask, seems like some small stake of tokens already tradeable, can you clarify what amount is circulating right now?

The Token been sold at private sale is 40%.  Token will be released for 5 months, every month will release 20%. So in the first month the circulating is: 40% * 20% = 8%.
Got it ,thank you for this clarification. Seems like is too dangerous to buy it now... but who knows, maybe the demand will cover all this my fears.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 12:53:51 PM
As far i understood the crowdsale is canceled.. funds like bitmain, node capital, etc. got all allocations, it's a pity, i wanted to enter.

Hope that i will get at least airdrop.

And i wanted to ask, seems like some small stake of tokens already tradeable, can you clarify what amount is circulating right now?

The Token been sold at private sale is 40%.  Token will be released for 5 months, every month will release 20%. So in the first month the circulating is: 40% * 20% = 8%.
Got it ,thank you for this clarification. Seems like is too dangerous to buy it now... but who knows, maybe the demand will cover all this my fears.
;D You are welcome.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 12:55:54 PM
I'm waiting for the airdrop. I really believe in your project.

Stay tuned, Please join our telegram, we will make a announcement on telegram when airdrop plan is ready. https://t.me/vite_ann


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: yakiza on June 25, 2018, 01:04:10 PM
Hi, guys! I wish your plan runs successfully.
Watchful website,  good results.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Estrange18 on June 25, 2018, 03:11:07 PM
so for now it's clear that Vite will be listed at Okex. And this rpoject begin to look much more interesting  for investment )


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: lefte on June 25, 2018, 03:47:45 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 03:53:08 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 03:54:01 PM
so for now it's clear that Vite will be listed at Okex. And this rpoject begin to look much more interesting  for investment )

There are bright prospects lying ahead.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: miyami on June 25, 2018, 04:02:38 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.
Can you tell me where I can read the information about the bounty campaign? I can't find her by myself. Thank You!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on June 25, 2018, 04:07:23 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.
Can you tell me where I can read the information about the bounty campaign? I can't find her by myself. Thank You!

The bounty program is not come out, stay tuned, when bounty program is ready, I will make an announcement in telegram.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Estrange18 on June 25, 2018, 06:53:08 PM
This is good decision to make not just airdrop but also a bounty. Coz many people abusing airdrops today by making tones of fake accounts.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: sva_h4cky0 on June 26, 2018, 05:24:12 AM
oh yeah airdorps  8) 8) 8)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: NakiRR on June 26, 2018, 02:06:17 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.
Where is your bounty program and which campaigns does it include? I didn't see any announcement about it, but i would like to participate if you have any such program.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nicefirework on June 26, 2018, 02:12:52 PM
any exchange to buy vite?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Ali_G007 on June 26, 2018, 05:33:02 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.
Can you tell me where I can read the information about the bounty campaign? I can't find her by myself. Thank You!

The bounty program is not come out, stay tuned, when bounty program is ready, I will make an announcement in telegram.
Any bounty program and how could I participate in ICO?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: trancuong on June 27, 2018, 04:09:29 PM
wait airdrop, vite very good


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: a264836321 on June 27, 2018, 04:59:30 PM
No ICO?From this point on, I am very interested in it.I have added your telegram. I will know more about the development of your project. :)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: iBenGunArmor on June 27, 2018, 10:26:18 PM
If there is no token sale, how to become your investor? Airdrop? or is there a direct opportunity to participate in the investment?
How do you get on the white list? if he will of course.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: NakiRR on June 29, 2018, 11:35:23 AM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.
Can you tell me where I can read the information about the bounty campaign? I can't find her by myself. Thank You!

The bounty program is not come out, stay tuned, when bounty program is ready, I will make an announcement in telegram.
Any bounty program and how could I participate in ICO?
There will not be a public sale man, all tokens were sold to private investors and funds and we expect an airdrop, and may be a bounty in addition.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: ZdeHru on June 29, 2018, 12:07:45 PM
this project is perfect. the way can be long but idea is great!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: MrDongyy on June 29, 2018, 05:10:24 PM
Hello, first of all when and how are you going to inform us about the airdrop. Second, is there a bounty program?

There is a bounty program.

The airdrop is on the plan. Stay tuned.
Where is your bounty program and which campaigns does it include? I didn't see any announcement about it, but i would like to participate if you have any such program.


"The bounty program is not come out, stay tuned, when bounty program is ready, It will make an announcement in telegram."


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Sergey_G on July 01, 2018, 08:27:12 AM
An excellent and promising project in my opinion. We are waiting for news and the most important is airdrop


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 02, 2018, 10:02:30 AM
This is good decision to make not just airdrop but also a bounty. Coz many people abusing airdrops today by making tones of fake accounts.

We will prevent people abusing airdrop.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 02, 2018, 10:05:42 AM
An excellent and promising project in my opinion. We are waiting for news and the most important is airdrop

Stay tuned, by the way, there is a news, we are now open source the go-vite. Here is the link: https://github.com/vitelabs/go-vite


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: williamwey9 on July 02, 2018, 01:14:10 PM
I read that you would be using a separate blockchain for each account. Is this similar to Nano in some ways? Any key differences?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: sunshinejames on July 02, 2018, 01:41:56 PM
I read that you would be using a separate blockchain for each account. Is this similar to Nano in some ways? Any key differences?
You can find more in our whitepaper, we have listed our some problems. Nano adopts a voting based consensus algorithm, transaction is signed by a set of representative nodes selected by a group of users.  We provide Snapshotchain.  We can regard the voting results as a snapshot of the status of the ledgers. This snapshot will be distributed in the local storage of each node in the network. In order to have the same tamper proof ability with the block chain, we can also organize these snapshots into chain structures, which is one of the kernel of the Vite design - the snapshot chain


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Lionedi on July 02, 2018, 01:50:14 PM
so for now it's clear that Vite will be listed at Okex. And this rpoject begin to look much more interesting  for investment )

There are bright prospects lying ahead.

I also see great prospects for this project. I believe in the team's success. they are pr-professionals and they must achieve their goals.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nomoreelliot on July 03, 2018, 08:52:58 AM
Hello, guys! What is the tps of Vite?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: sunshinejames on July 03, 2018, 09:43:24 AM
This number hasn't been released at the moment. TPS is a headline number that doesn't capture other key characteristics such as the scalability and security of a public blockchain.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KokoroKlphn on July 04, 2018, 06:38:08 AM
great project


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KokoroKlphn on July 04, 2018, 08:09:13 AM
This project is perfect....Wait airdrop   ;)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: williamwey9 on July 04, 2018, 10:21:11 AM
I thought airdrop would be before hitting exchange. I know this has been asked a lot. But can you tell when you plan to share more about the airdrop? Can we expect anything this month?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: sunshinejames on July 04, 2018, 10:28:29 AM
I thought airdrop would be before hitting exchange. I know this has been asked a lot. But can you tell when you plan to share more about the airdrop? Can we expect anything this month?
their COO said definitely, they are about to make an announcement


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 05, 2018, 03:50:38 AM
Hello, guys! What is the tps of Vite?

When we finish the core development, we will make a test. Now we don't know how much tps vite can touch.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: ch_mubarak on July 05, 2018, 05:31:47 AM
When airdrop ??


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: jorj_pay_UZ on July 05, 2018, 05:35:22 AM
Hey, guys. Is bounty not included in the plans of developers? High ratings put services to the project, I would like to earn a piece of cake  ;)  I have heard That the coin is already trading, but I did not find where. Can you tell?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 05, 2018, 06:42:59 AM
Hey, guys. Is bounty not included in the plans of developers? High ratings put services to the project, I would like to earn a piece of cake  ;)  I have heard That the coin is already trading, but I did not find where. Can you tell?

We have a plans for developers. We like genius developers, and want more developers to join vite. This is our code: https://github.com/vitelabs/go-vite


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: nomoreelliot on July 05, 2018, 02:50:09 PM
Hello, guys! Are there any interviews with the founders?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: sunshinejames on July 05, 2018, 02:56:07 PM
Hello, guys! Are there any interviews with the founders?
yes, check this one:
https://youtu.be/hho-kjHNIKs


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: wforwork on July 06, 2018, 02:57:09 PM
Wait for the airdrop !


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: NakiRR on July 06, 2018, 04:14:56 PM
Hello, guys! What is the tps of Vite?
i'm not a tech specialist but as i know, Tps is not the main indicator of blockchain, there are a lot of other important characteristicks...


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: faragly on July 06, 2018, 05:22:18 PM
https://image.ibb.co/bCaZ1d/photo_2018_07_06_22_08_04.jpg

Vite will soon launch its airdrop campaign and advises to closely monitor announcements. Judging by the highlighted letters there can be puzzles...


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: andro hac on July 07, 2018, 09:52:15 AM
can anyone give me some information within regards to when the tokens will be released and is there a lock on them? How much was raised in private sale? what was the highest discount for private sale tier?thanks  :)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Estrange18 on July 07, 2018, 08:37:12 PM
So regarding to the latest announcements now we need to w8 untill monday and watch AMA on youtube )


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: jorj_pay_UZ on July 07, 2018, 10:09:52 PM
Hey, guys. Is bounty not included in the plans of developers? High ratings put services to the project, I would like to earn a piece of cake  ;)  I have heard That the coin is already trading, but I did not find where. Can you tell?

We have a plans for developers. We like genius developers, and want more developers to join vite. This is our code: https://github.com/vitelabs/go-vite
I understand you, unfortunately, I'm just a hunter. But a hunter with strong beliefs I'm more a holder than a speculator. Currently, there are very few cool projects that allow you to participate in the promotion. As a rule, they do not need it.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: CryptoRobert on July 07, 2018, 10:58:08 PM
Very interesting project, from what I could see from the ANN. I'm now waiting for the announcements which are supposed to start from monday, and they should also relate to airdrops, if I have understood correctly.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: lenadra on July 08, 2018, 03:42:27 PM
This is a top notch project from a world class team. I am really excited about Vite and what they aim to accomplish.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 09, 2018, 02:46:11 AM
Hey, guys. Is bounty not included in the plans of developers? High ratings put services to the project, I would like to earn a piece of cake  ;)  I have heard That the coin is already trading, but I did not find where. Can you tell?

We have a plans for developers. We like genius developers, and want more developers to join vite. This is our code: https://github.com/vitelabs/go-vite
I understand you, unfortunately, I'm just a hunter. But a hunter with strong beliefs I'm more a holder than a speculator. Currently, there are very few cool projects that allow you to participate in the promotion. As a rule, they do not need it.

What's your github?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 09, 2018, 02:46:42 AM
Very interesting project, from what I could see from the ANN. I'm now waiting for the announcements which are supposed to start from monday, and they should also relate to airdrops, if I have understood correctly.
:D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Estrange18 on July 10, 2018, 10:08:07 AM
Hey guys ! Does somebody watched the AMA  ? was there anything interesting and any information about airdrop maybe  ?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: andro hac on July 13, 2018, 05:00:07 AM
Hey guys ! Does somebody watched the AMA  ? was there anything interesting and any information about airdrop maybe  ?
You have to answer questions during the AMA to get rewared.The result of the AMA has not yet to announced,  keep an eye on https://t.me/vite_en (https://t.me/vite_en)  ;)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: lyka on July 13, 2018, 05:06:36 AM
One of the few projects that has real value. Impressive.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: jorj_pay_UZ on July 13, 2018, 05:12:05 AM
Hey, guys. Is bounty not included in the plans of developers? High ratings put services to the project, I would like to earn a piece of cake  ;)  I have heard That the coin is already trading, but I did not find where. Can you tell?

We have a plans for developers. We like genius developers, and want more developers to join vite. This is our code: https://github.com/vitelabs/go-vite
I understand you, unfortunately, I'm just a hunter. But a hunter with strong beliefs I'm more a holder than a speculator. Currently, there are very few cool projects that allow you to participate in the promotion. As a rule, they do not need it.

What's your github?
What will he give you? I'm not a developer. I just collect coins promising in my opinion projects. It is natural that with hope to receive a profit in the future) ;)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 15, 2018, 01:20:46 PM
One of the few projects that has real value. Impressive.

Vite is the true gem.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: crpytonation on July 15, 2018, 06:07:49 PM
This looks like a hidden gem.Will follow up on telegram
BWT when is the ICO scheduled ?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: cryptotool on July 16, 2018, 02:42:05 AM

A Next Generation High-performance Decentralized Application Platform


  Official Website (https://www.vite.org/) | White Paper (https://www.vite.org/whitepaper/vite_en.pdf) | Discord (https://discordapp.com/invite/CsVY76q) | Telegram (https://t.me/vite_en) | Twitter (https://twitter.com/vitelabs) | Github (https://github.com/vitelabs)

The Core Key Designs of Vite

Asynchronous Architecture | DAG Ledger | HDPoS Consensus Algorithm | Reactive Contract | Integrated Value System


Specifications

  • Name: Vite
  • Symbol: VITE
  • Initial Supply: 1,000,000,000 Vite
  • Consensus Algorithm: HDPoS Consensus Algorithm
  • Snapshot Chain Block Time: 1 seconds
  • Ledger: DAG (Block-Lattice) + Snapshot Chain
  • Smart Contract: Reactive Contract (Asynchronous Contract)
  • Token Address: 0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016 (https://etherscan.io/token/0x1b793E49237758dBD8b752AFC9Eb4b329d5Da016)

Introduction

Vite is a next-generation Reactive Blockchain that adopts a message-driven, asynchronous architecture and a DAG-based ledger.  The goal for Vite’s design is to provide a reliable public platform for industrial dApps, with features of ultra-high throughput and scalability.


The most important innovation of Vite is its asynchronous architecture.

The following are the main asynchronous characteristics in Vite’s designs:


  • Asynchronous model of requests and responses
  • Asynchronous model of writing and confirmation of transactions
  • Asynchronous model of communications between contracts


In addition, Vite makes use of a DAG ledger structure called block-lattice, which has far better performance than the traditional blockchain structure.  To make up for the inherent security deficiency of the DAG structure, Vite incorporates the Snapshot Chain technology.

Vite's consensus algorithm, called HDPoS, is a hierarchical consensus algorithm with low latency and high scalability.

In order to accommodate the existing ecosystem, the Vite virtual machine maintains maximum compatibility with EVM,  while providing a more powerful smart contract language, which we call solidity++.

Vite's original quota-based resource model and resource-leasing function ensure that system resources get allocated with maximum efficiency. Commercial Heavy users can be guaranteed sufficient quotas, while lightweight users do not have to pay commissions.

Vite's design of token issuing, token exchanging via loopring protocol and cross-chain protocol constitutes a complete closed-loop value system. Users can conveniently issue, store and exchange their digital assets in Vite system.

In the future, Vite’s mobile app will come with an HTML5 engine for creating dApplets (Decentralized Applets).  Smart contracts on the Vite platform and corresponding SDK support will make it easy to develop and deploy dApps on Vite.


The DAG ledger


Vite makes use of a DAG ledger structure called block-lattice. Each account has its own chain. Each transaction refers to the hash of the previous transaction in the same account. Transactions are divided into two types: "request transactions" and "response transactions.”  A response transaction needs to refer to the hash of the corresponding request transaction. This setup creates a grid-like DAG structure.

Such a structure allows parallel writing of individual transactions, reducing the probability of collisions and improving system throughput.

Note that this structure has an inherent deficiency in security.   This is because transactions are grouped by accounts, and each transaction is only attached to the chain associated with the relevant account. Transactions generated by other accounts do not automatically become the subsequent nodes of the previous transaction. Therefore, for some transactions, the rollback probability of their reversion will not drop over time.  To address this issue, Vite makes use of the snapshot chain technology.



The Model of Asynchronous Requests


Transactions in Vite can be categorized as request transactions and response transactions.  Regardless of whether an event is a transfer or the call of a contract, two successive transactions get generated on the ledger.

A transfer can be split into a receive transaction and a send transaction; a transaction to invoke a contract can be split into a contract request transaction and a contract response transaction; the message call within each contract can be split into a request transaction and a response transaction.

After the split, each transaction only affects the state of a single account, and transactions do not interfere with one another, which improves throughput.  In addition, transactions by different accounts are also allocated to different nodes in the network, thereby increasing scalability.


The Model of Asynchronous Confirmation



In the Vite framework, writing transactions into a ledger and receiving confirmations by the system are also asynchronous.  Different users may write transactions into the ledger in parallel., and the snapshot chain will take snapshots of the ledger at a constant rate.  A confirmation happens once a snapshot of a transaction is taken.  As the snapshot chain grows, the number of confirmations will also increase.

The mechanism of asynchronous confirmation will reduce the peaks and troughs of the speed of transaction writing, thus optimizing usage of resources.

Vite employs a hierarchical HDPoS consensus algorithm. Each account chain in the ledger generates local consensus results,  and the snapshot chain at the highest level selects the final consensus result from the local consensus results.


The Model of Asynchronous Communication


Vite's inter-contract communications incorporate a message-driven architecture, where the contracts do not share states but only communicate by sending messages to each other.

If a contract calls another contract, the former needs to send a request transaction first. This is logically similar to producing a message in MQ.  After the node running the target contract observes the request transaction, the node writes a corresponding response transaction in the ledger, and updates the state of the contract. This process is equivalent to consuming a message from MQ.if a return value is needed,  the target contract will send another message to the source contract in the same way.

In this model, Vite's ledger serves the role of the message middleware, and can guarantee the exactly-once semantics of messages.

The message-based architecture features high throughput and scalability.  But on the flip side, the programming models become more complex. Not only is strong consistency not guaranteed, but latencies may become longer.

To address the above issues and reduce the cost of asynchronous programming, Vite will provide a contract language called Solidity++ and a full SDK associated with it. After rigorous research, we found that in actual scenarios , BASE semantics can replace ACID semantics. The increase in delay is still under control since the HDPoS consensus algorithm guarantees completion of the transaction confirmation  within 1 second.


Other Designs


Vite’s design also comes with a few other features.  They are practical solutions to problems and pain points in the realm of decentralized applications. The development of Vite's community and implementation of the VEPs( Vite Enhancement Proposals) will drive continual improvement of Vite protocol.

Vite’s protocol supports multiple tokens. Unlike the ERC20 scheme, user-issued tokens and Vite tokens share the same underlying trading protocol.  This ensures identical level of security between types of tokens, and obviates security concerns due to poor implementation (e.g., those caused by stack overflow).

Vite will have the Loopring protocol built in, enabling exchange of multiple tokens. Therefore, the Vite wallet has functions of a decentralized exchange.

In addition, Vite proposed the VCTP cross-chain protocol that allows the transfer of assets between chains. The Vite team will implement the cross chain gateways with Ethereum.  Cross-chain gateways with other target chains will open to the community.

The resource allocation mechanism in Vite is based on the stake of VITE tokens, the one-time fee, and the difficulty of PoW for a transaction.  The mechanism provides flexibility for users with different needs. Users can choose to stake  VITE for a period, to get fixed amount of TPS quotas. They can also pay a one-time fee to increase quotas temporarily.  They could also lease resource quotas from existing VITE stake holders.  Lastly, they could even obtain quotas by computing  a PoW.

Moreover, the design of Vite includes the naming services, contract updating, timer scheduling, Solidity++ standard library, block pruning, and so on.

The white paper contains more specifics.


Distribution

The financing of the Vite project has been successfully completed, with a total of approximately 60,000 ETHs (including some BTC converted according to market prices).

A total of 400,000,000 Vite was issued, which accounted for 40% of the total circulation. It is expected that the first token will be issued before June 15 .

All token issuance is divided into 5 times, 20% each time, one month apart.

Vite’s investment institutions include: Bitmain, Node Capital, LinkVC, Genesis Capital, etc.

https://cdn-images-1.medium.com/max/1600/1*AlgnTQzfGTFk-LbseKE-8w.png

https://cdn-images-1.medium.com/max/1600/1*5SX1nrR0w1A2Wk5xITXheQ.png

Resources

  • White Paper (https://www.vite.org/whitepaper/vite_en.pdf)
  • Vite Introduction (https://doc.vite.org/introduction/)
  • FAQ (https://www.vite.org/faq)

Airdrop

we will make an announcement for a plan for an Airdrop soon! Stay tuned!


really great project. I want to stick with this vite.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 16, 2018, 03:29:30 AM
This looks like a hidden gem.Will follow up on telegram
BWT when is the ICO scheduled ?

Sorry, there is no ICO. The private sale is closed.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: hta on July 16, 2018, 04:34:54 AM
I expect this project becomes a great success.
Engaging approach, really well project, informed design.

I wait for airdrops


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: tyz on July 16, 2018, 07:55:33 PM
I have overflown the whitepaper and I very like the idea. As an early investor of other successful DAG based projects I regret I have not found the project earlier.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 17, 2018, 03:39:00 AM
I have overflown the whitepaper and I very like the idea. As an early investor of other successful DAG based projects I regret I have not found the project earlier.

It's not too late to join vite.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: wasubiza on July 17, 2018, 03:52:33 AM
Hi . I'm interested on this project. I'll wait for this to look what is going to originate!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KokoroKlphn on July 18, 2018, 05:27:37 AM
Wait for Airdrop.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: CryptoChartIndex on July 18, 2018, 12:08:06 PM
 VITE  (https://cryptochartindex.com/currency/vite)is now listed on CryptoChartIndex , Now you can get all information regarding VITE on CryptoChartIndex (https://cryptochartindex.com)!


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KokoroKlphn on July 18, 2018, 01:24:15 PM
VITE  (https://cryptochartindex.com/currency/vite)is now listed on CryptoChartIndex , Now you can get all information regarding VITE on CryptoChartIndex (https://cryptochartindex.com)!

listed on CMC,IDEX,CoinEX


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: KokoroKlphn on July 19, 2018, 03:01:25 AM
When mainnet ?
thank...


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: NakiRR on July 19, 2018, 09:50:17 PM
am i alone think that this AMA airdrops are not efficient and unfair? i was trying that during the very first ama with crypto zombie and i was really disapointed about how it is going and how many people get airdrop. i think that the team could come up something better, they need hype, it happens when you sell all allocation to investment funds and a common people don't even know about the project, and it happens more often last times...


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 21, 2018, 04:46:37 AM
VITE  (https://cryptochartindex.com/currency/vite)is now listed on CryptoChartIndex , Now you can get all information regarding VITE on CryptoChartIndex (https://cryptochartindex.com)!

Thank you. ;D


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 21, 2018, 04:48:20 AM
When mainnet ?
thank...

It should be at Jan 2020. Maybe we will make it ahead of schedule. The deadline is Jan 2020.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on July 21, 2018, 04:50:07 AM
New Update:


VITE Progress Report (July 1–15 2018) (https://medium.com/vitelabs/vite-progress-report-july-1-15-2018-5ed13c36635b)


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: jorj_pay_UZ on July 22, 2018, 01:42:59 PM
am i alone think that this AMA airdrops are not efficient and unfair? i was trying that during the very first ama with crypto zombie and i was really disapointed about how it is going and how many people get airdrop. i think that the team could come up something better, they need hype, it happens when you sell all allocation to investment funds and a common people don't even know about the project, and it happens more often last times...
Recently, unfortunately, it is, I agree with you. Most of the coins are sold to private funds, and ordinary users are left out of work...Well, or they will allocate 2-5% to everyone. So the question arises-where is the true decentralization when almost all the coins are concentrated in several wallets?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: CryptoRobert on July 22, 2018, 11:35:10 PM
am i alone think that this AMA airdrops are not efficient and unfair? i was trying that during the very first ama with crypto zombie and i was really disapointed about how it is going and how many people get airdrop. i think that the team could come up something better, they need hype, it happens when you sell all allocation to investment funds and a common people don't even know about the project, and it happens more often last times...
Recently, unfortunately, it is, I agree with you. Most of the coins are sold to private funds, and ordinary users are left out of work...Well, or they will allocate 2-5% to everyone. So the question arises-where is the true decentralization when almost all the coins are concentrated in several wallets?

I agree. I've read on this thread that a private sale has been done - and that's it, if I understand well. This is NOT decentralisation, and sooner or later this could provoke the project's failure. Tech is not everything - at all! Adoption is the key. An airdrop has been announced, but then never confirmed. Some good news would be appreciated.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: andro hac on July 23, 2018, 05:10:35 AM
is here any plan for comunity airdrop or only watching videos etc? and lot of promises?  tell something constructive or what is this all about? we all can see no airdrop happened here. all is about some 20 people that win some tokens after see video. lot of peopme waiting for airdrop and nobody from u can tell some valid information so i want to know ( because like this is a waste of time)  if will be normal regular airdrop or u just tell me stay tuned.... 
thanx...


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: PS1987 on July 26, 2018, 01:21:49 PM
is here any plan for comunity airdrop or only watching videos etc? and lot of promises?  tell something constructive or what is this all about? we all can see no airdrop happened here. all is about some 20 people that win some tokens after see video. lot of peopme waiting for airdrop and nobody from u can tell some valid information so i want to know ( because like this is a waste of time)  if will be normal regular airdrop or u just tell me stay tuned.... 
thanx...
Curious, too.
Shilling your own coin makes a shady light on it btw, saw many dev doing this in the past, you can guess where the coins are nowadays. I also hope you are not related to the scam coin vites, which has very similar name and similar logo.
Besides of that, vite is looking quite interesting, I will observe this.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 02, 2018, 09:44:53 AM
We are now at okex.com.

Please check it at: https://www.okex.com/spot/trade#product=vite_okb


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: gembira on August 02, 2018, 10:00:29 PM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 03, 2018, 09:52:52 AM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?

All 40% token was sold on private sale. There is no public sale. The Ecology funds is for building our Vite ecology. Now we have invest some dapp project. Such as payment project. Latter, we will put out the news.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: gembira on August 03, 2018, 03:11:40 PM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?

All 40% token was sold on private sale. There is no public sale. The Ecology funds is for building our Vite ecology. Now we have invest some dapp project. Such as payment project. Latter, we will put out the news.

Sorry but I can't understand. What this means "Vite ecology"? This is for development or for mining of for what? What price was at private sale?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: Meliorus on August 03, 2018, 10:07:21 PM
Looks like a really promising project. Really like the list of investors and strength of team. Only concern is lengthy roadmap.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 04, 2018, 04:17:43 AM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?

All 40% token was sold on private sale. There is no public sale. The Ecology funds is for building our Vite ecology. Now we have invest some dapp project. Such as payment project. Latter, we will put out the news.

Sorry but I can't understand. What this means "Vite ecology"? This is for development or for mining of for what? What price was at private sale?

Vite ecology is for build vite dapp ecosystem. We will use this fund to invest and support some dapp on vite. Such as payment app, game app.

The price at private sale is: 1:7000, So the price is 0.00014286 eth/vite. But most people get vite above 0.00014286 because some people is get vite from investment organization. So these people get the higher price.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 04, 2018, 04:19:39 AM
Looks like a really promising project. Really like the list of investors and strength of team. Only concern is lengthy roadmap.

We are considering to put forward process. Maybe in Q1 2019. 

But it have not been decided yet.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: BuE22 on August 04, 2018, 09:39:34 AM
YOUR PROJECT LITTER BIT MORE AMAZE ME THAN OTHER PROJECT BUT WHEN IS ICO DECLARED.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 04, 2018, 10:35:30 AM
YOUR PROJECT LITTER BIT MORE AMAZE ME THAN OTHER PROJECT BUT WHEN IS ICO DECLARED.

Sorry, there is no ICO. There is a private sale, but it is closed.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: vuglusk on August 04, 2018, 10:39:33 AM
Greetings! What will you do next, after the private sale?


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 04, 2018, 10:46:54 AM
Greetings! What will you do next, after the private sale?

We are now working hard to develop the first version of vite. You can check the github: https://github.com/vitelabs.

https://cdn.discordapp.com/attachments/425845491478298624/475251908244799489/unknown.png

https://cdn.discordapp.com/attachments/425845491478298624/475252019901497344/unknown.png


The first version of go-vite have been finish which include basic function of transaction. You can check it at: https://github.com/vitelabs/go-vite

The vite-wallet is going to internal test process.  You can check it here: https://github.com/vitelabs/vite-wallet

The first version of block-explorer have been finish, you can check it at: https://github.com/vitelabs/vite.net

 



Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: gembira on August 04, 2018, 10:45:00 PM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?

All 40% token was sold on private sale. There is no public sale. The Ecology funds is for building our Vite ecology. Now we have invest some dapp project. Such as payment project. Latter, we will put out the news.

Sorry but I can't understand. What this means "Vite ecology"? This is for development or for mining of for what? What price was at private sale?

Vite ecology is for build vite dapp ecosystem. We will use this fund to invest and support some dapp on vite. Such as payment app, game app.

The price at private sale is: 1:7000, So the price is 0.00014286 btc/vite. But most people get vite above 0.00014286 because some people is get vite from investment organization. So these people get the higher price.

Thank you. I understand now. So price fixed in BTC? What min amount for private sale and how much hardcap in total?


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 05, 2018, 03:27:15 AM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?

All 40% token was sold on private sale. There is no public sale. The Ecology funds is for building our Vite ecology. Now we have invest some dapp project. Such as payment project. Latter, we will put out the news.

Sorry but I can't understand. What this means "Vite ecology"? This is for development or for mining of for what? What price was at private sale?

Vite ecology is for build vite dapp ecosystem. We will use this fund to invest and support some dapp on vite. Such as payment app, game app.

The price at private sale is: 1:7000, So the price is 0.00014286 btc/vite. But most people get vite above 0.00014286 because some people is get vite from investment organization. So these people get the higher price.

Thank you. I understand now. So price fixed in BTC? What min amount for private sale and how much hardcap in total?

Sorry, it's my fault. The price is 0.00014286 eth/vite. The price is fixed in ETH. The private sale is over. We have sold about 40%.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on August 06, 2018, 10:22:04 AM
Preview version is coming. This version only include basic transaction in DAG with Snapshot-Chain.

Next step, multi-token, basic smart-contract, HDPOS.

Vite is on the road.

https://cdn.discordapp.com/attachments/425845491478298624/475966069295677440/WechatIMG28.jpeg


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: KokoroKlphn on August 06, 2018, 03:52:53 PM
Preview version is coming. This version only include basic transaction in DAG with Snapshot-Chain.

Next step, multi-token, basic smart-contract, HDPOS.

Vite is on the road.

https://cdn.discordapp.com/attachments/425845491478298624/475966069295677440/WechatIMG28.jpeg
Good update, Wait for more and airdrop ;D


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: skorkmaz on August 06, 2018, 05:57:44 PM
perfect!


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Meliorus on August 07, 2018, 05:56:57 PM
Preview version is coming. This version only include basic transaction in DAG with Snapshot-Chain.

Next step, multi-token, basic smart-contract, HDPOS.

Vite is on the road.

https://cdn.discordapp.com/attachments/425845491478298624/475966069295677440/WechatIMG28.jpeg

Wonderful UI and color choice, looks like Vite is ahead of roadmap.


Title: Re: [ANN] [VITE] [DAG + Reactive Contracts] Vite | Asynchronous Architecture
Post by: CryptoRobert on August 11, 2018, 11:05:16 AM
All 40% for token sale was sold on private sale or they had public sale as well? They have 25% of total tokens for "Ecology funds". what this means?

All 40% token was sold on private sale. There is no public sale. The Ecology funds is for building our Vite ecology. Now we have invest some dapp project. Such as payment project. Latter, we will put out the news.

I understand that getting all the money in one shot is something difficult to refuse, but I'm pointing to your attention that the key of value in crypto is decentralisation (=adoption, which is what is creating value according to Metcalfe's law), and you have just centralised 40% of the tokens by selling them to just a few players, which added to 25% of tokens reserved for your needs + 20% reserverd for you pockets means that 85% the network is actually not a network, but just a couple of nodes. I don't know how this will play out, but surely it doesn't sound good. Even though the project on paper seems (or seemed) to be a good one.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Xiphos on August 15, 2018, 07:38:51 PM
We've added Vite to our voting list on which users are able to vote on their favorite coin. The top 10 of those coins will be listed in our brand new exchange in the beta phase.
If you'd like to contact us please do so via our contact form system on https://Xiphos.exchange/help.
Vote now at https://xiphos.exchange/vote.
We wish you good voting and the best of luck.
Yours sincerely,
Xiphos Team


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Abrah on August 15, 2018, 08:49:37 PM
We've added Vite to our voting list on which users are able to vote on their favorite coin. The top 10 of those coins will be listed in our brand new exchange in the beta phase.
If you'd like to contact us please do so via our contact form system on https://Xiphos.exchange/help.
Vote now at https://xiphos.exchange/vote.
We wish you good voting and the best of luck.
Yours sincerely,
Xiphos Team

I have never heard of this exchange  ??? lol


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Estrange18 on August 15, 2018, 08:57:34 PM
I remember that this guys were announcing big giveaways or airdrops. Is any information about any stuff like that ?


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Abrah on August 16, 2018, 07:44:37 AM
VITE an interesting project
My rationality in the project has just been strengthened after I bought a lot of VITE


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Xiphos on August 16, 2018, 09:14:45 AM
We've added Vite to our voting list on which users are able to vote on their favorite coin. The top 10 of those coins will be listed in our brand new exchange in the beta phase.
If you'd like to contact us please do so via our contact form system on https://Xiphos.exchange/help.
Vote now at https://xiphos.exchange/vote.
We wish you good voting and the best of luck.
Yours sincerely,
Xiphos Team

I have never heard of this exchange  ??? lol


We recently started, the alpha is going live soon (0% fees) we're going to release more info about this soon. After the alpha is done (2-3 weeks) we'll start the beta and list the winners


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: laosan22 on August 18, 2018, 02:28:51 PM
I am so depressed, i came to this post almost every few days, and every time i saw it, the airdrop plan still do not begin.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: np6969 on August 18, 2018, 10:35:32 PM
Bitcointalk Profile:
ETH Wallet:0x18a994A3CFF10C1eb9207DA3048033e3e928C7e7
Telegram username:@np696969
Twitter username:@99mlinton
Youtube profile link:https://www.youtube.com/channel/UCsg9eOM1aF_eUhplPvOwL3A?view_as=subscriber
Youtube user: UCsg9eOM1aF_eUhplPvOwL3A


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: nuzzo on August 28, 2018, 07:09:28 PM
The concept of Snapshot Chain is created by Vite. How does this idea come from? This article was originally written by the founder and CEO of Vite, Charles (Chunming) Liu. Check it on our official channel now!
https://medium.com/vitelabs/snapshot-chain-an-improvement-on-block-lattice-5c1897e0cc89 …
https://twitter.com/vitelabs/status/1034211403018645504
https://i.imgur.com/7qtoOih.jpg


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: tyz on August 31, 2018, 10:09:56 PM
@eli_lyd1: Can you already give some information about the community airdrop?

Preview version is coming. This version only include basic transaction in DAG with Snapshot-Chain.

Next step, multi-token, basic smart-contract, HDPOS.

Vite is on the road.

https://cdn.discordapp.com/attachments/425845491478298624/475966069295677440/WechatIMG28.jpeg


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Abrah on September 05, 2018, 01:39:22 AM
Is there a future for this coin?
In the near future, not a very long time


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Emerson_Koca on September 05, 2018, 01:46:35 AM
Hi team. This is so much guaranteed, all the legendaries on the forum are supporting, celebrities are supporting it! You can not hesitate now, 100X investment returned is just around the corner.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on September 11, 2018, 09:55:24 AM
@eli_lyd1: Can you already give some information about the community airdrop?

Preview version is coming. This version only include basic transaction in DAG with Snapshot-Chain.

Next step, multi-token, basic smart-contract, HDPOS.

Vite is on the road.

About the airdrop. We will do an airdrop after our test net 1.0 is public. We will issue a assets on our testnet which will convert to real vite on mainnet.

During the test net, everyone can running a node to get reward.

The test-net 1.0 is under developing which will come out on 2018.10.

Test-net 1.0 will contain many features:

  • Support HDPOS
  • Support Simple Smart-Contract
  • Support Quota Calculation
  • Reduce The Block Time To 1 Second


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: PS1987 on October 02, 2018, 09:06:37 AM
Hi, any news about progress?


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: faragly on October 02, 2018, 01:12:59 PM
Vite has a team of 38 people already, I believe. Here’s hope for more product releases and sooner main net launch


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: pietro_B on October 02, 2018, 01:28:44 PM
Performance of the coin on the market is not great at the moment. Are you guys waiting for a big technology break?


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: BitcoinArsenal on October 02, 2018, 08:48:05 PM
I remember that this guys were announcing big giveaways or airdrops. Is any information about any stuff like that ?

I remember the same. They have still 2/3 of all tokens to distribute, so I really hope there will be an airdrop.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: siribo4134 on October 05, 2018, 04:49:29 PM
I remember that this guys were announcing big giveaways or airdrops. Is any information about any stuff like that ?

I remember the same. They have still 2/3 of all tokens to distribute, so I really hope there will be an airdrop.

Waiting for that too


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Jadz on October 09, 2018, 08:39:16 PM
Hi everyone,
We are happy to announce this big thing!
After more than one-month of R&D, we are grateful to announce that  five products of Vite team are launched on Sep 30, which can be named:
Vite Web Wallet, Vite iOS App (which includes a wallet function), Vite Block Explorer, Vite Store, and Vite Pay!

1. Vite Web Wallet Address: https://wallet.vite.net/
2. Vite iOS App, point your browser to the following link: https://testflight.apple.com/join/3P0mLlhn (steps are informed in the below Medium link)
3. To download Vite Block Explorer, visit https://testnet.vite.net.
4. The Vite store is at http://vite.store.
5. Vite Pay

More information to be found here: https://medium.com/@viteofficial/51133ef9a01c
Please feel free to add comments/ feebacks with us.

Visit us at website vite.org for more information.
Thanks!


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Bshiki on October 09, 2018, 08:50:04 PM
Hi everyone,
We are happy to announce this big thing!
After more than one-month of R&D, we are grateful to announce that  five products of Vite team are launched on Sep 30, which can be named:
Vite Web Wallet, Vite iOS App (which includes a wallet function), Vite Block Explorer, Vite Store, and Vite Pay!

1. Vite Web Wallet Address: https://wallet.vite.net/
2. Vite iOS App, point your browser to the following link: https://testflight.apple.com/join/3P0mLlhn (steps are informed in the below Medium link)
3. To download Vite Block Explorer, visit https://testnet.vite.net.
4. The Vite store is at http://vite.store.
5. Vite Pay

More information to be found here: https://medium.com/@viteofficial/51133ef9a01c
Please feel free to add comments/ feebacks with us.

Visit us at website vite.org for more information.
Thanks!

great news and great progress for the team. it can be seen that finally launched the work as it should. have you tested all the updates and bugs and no problems? just my antivirus warn problems after downloads and do not really understand why.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: PS1987 on October 09, 2018, 09:57:02 PM
Careful with this guy, doubt he is from official vite team. Very likely that this links contain malware


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on October 11, 2018, 07:50:44 AM
Careful with this guy, doubt he is from official vite team. Very likely that this links contain malware
The links is right.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on October 11, 2018, 08:10:17 AM
Vite has a team of 38 people already, I believe. Here’s hope for more product releases and sooner main net launch

Yes, the main net may launch in 2019.02.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on October 11, 2018, 08:12:45 AM
I remember that this guys were announcing big giveaways or airdrops. Is any information about any stuff like that ?

I remember the same. They have still 2/3 of all tokens to distribute, so I really hope there will be an airdrop.

There will be a give away in our 0.0.3 test-net.  If you running supper node in 0.0.3 test-net, you will get some vite as reward which will convert to real vite after main net is launch.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: BitcoinArsenal on October 11, 2018, 01:30:22 PM
That's a great idea for a airdrop. I would like to set up a node for testnet as soon as it is possible. I have two idle VPS available.
Can you already say when I can set up the node? Is there any tutorial?

I remember that this guys were announcing big giveaways or airdrops. Is any information about any stuff like that ?

I remember the same. They have still 2/3 of all tokens to distribute, so I really hope there will be an airdrop.

There will be a give away in our 0.0.3 test-net.  If you running supper node in 0.0.3 test-net, you will get some vite as reward which will convert to real vite after main net is launch.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: ranbon210 on October 12, 2018, 04:10:46 AM
Ecosystem of blockchain technology - will Vite labs beat its own R&D timeline again?
https://medium.com/vitelabs/ecosystem-of-blockchain-technology-2c36c161adb6
Comment here!


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: frcat on October 12, 2018, 07:00:26 PM
What advantages you have before tons of other new similar project which creating platform for dAaps? What speed you have in your testnet? Do you have comparison with other blockchains?


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Jadz on October 13, 2018, 08:27:13 AM
What advantages you have before tons of other new similar project which creating platform for dAaps? What speed you have in your testnet? Do you have comparison with other blockchains?

Firstly, Vite applies an asynchronous architecture to the message-driven of smart contract. Nano (a DAG project) divides the transfer into two actions: billing and recording. Meanwhile, Vite draws on Nano and extends it to the smart contract. Transactions are divided into accounts. A call transaction has two parts: a request and a respond transaction. In Block-lattice, there are a independent chain for each account, while DAG (Directed Acyclic Graph) usually says a tangle structure which does not support the mentioned feature. Transactions in DAG could refer to multiple blocks while in Vite the transaction pair only happens between sender account chain and receiver account chain. In Vite, the transaction is written onto the ledger and is asynchronous.

Secondly, in Vite, users can write a lot of transactions to the ledger within limit TPS, but the throughput is confirmed asynchronously, which smooths the confirmation of transactions, maximizes the use of the system resources, and improve the throughput of the whole system. In the meantime, transactions are sent in one account, leaving those in other accounts unrecognized for a longer periods.

Last but not least, Vite is expected to use the asynchronous design for inter-contract calls. With an event-driven architecture, every smart contract is viewed as an independent service. Contracts communicate via messages without sharing state. Vite adopts message-driven architecture. There is no state sharing between contracts. Users only communicate by sending message to each other.

Transactions in Vite are grouped by accounts. That is, each transaction only changes the state of one single account. Sending transactions are separated from receiving transactions, which obviates waiting for a transaction to be completed before the initiation of another one. The hierarchical design of the consensus algorithm allows horizontally scale in consensus groups.

I believe with those criteria, Vite is a technical coin, and expected to be the most promising blockchains project of 2018.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Jadz on October 17, 2018, 12:13:10 PM
Vite TestNet Online Notice
Major Milestones about Our TestNet

https://medium.com/vitelabs/vite-testnet-online-notice-81d06cf7d463


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Jadz on October 18, 2018, 07:41:25 PM
Further Details about Vite TestNet
https://medium.com/vitelabs/further-details-about-vite-testnet-9856ea31a40f


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: siribo4134 on October 19, 2018, 10:44:02 AM
Very active project.. Hope Mainnet coming soon after Testnet launch next month.


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: act0d on October 20, 2018, 01:32:49 AM
waiting for testnet


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: Jadz on October 21, 2018, 07:47:32 PM
Vite Bi-weekly Report
October 1–15 2018

https://medium.com/vitelabs/vite-bi-weekly-report-f51f1ad5511c



Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: jerry3k5jamiso1 on October 22, 2018, 04:43:07 PM
Vite Labs COO Discussed Blockchain/AI in the U.S. vs China

On October 4, 2018, Vite Labs COO Richard Yan presented in a panel at the 2018 AI conference (theme: “Artificial Intelligence — Imagining the New World of AI”) in Silicon Valley with 200 attendees. The conference was organized by Silicon Valley Technology Advisory Committee + Constellar Ventures with Silicon Valley Technology Association. Richard shared insights on the blockchain and AI industry, highlighting the difference of companies in this sector between the US and China, the integration of the two technologies, and tips for selecting high-quality projects for investment.

https://medium.com/vitelabs/vite-labs-coo-discussed-blockchain-ai-in-the-us-vs-china-7192f359d67b

https://cdn-images-1.medium.com/max/2000/1*QnStqDs6YamDPypEttRroQ.jpeg


Title: Re: [ANN] [VITE] [DAG + Smart Contract] Vite | Asynchronous Architecture
Post by: eli_lyd1 on November 15, 2018, 07:41:51 AM
Please visit our new BTT post (https://bitcointalk.org/index.php?topic=5056409)