Search content
Sort by

Showing 15 of 15 results by Couriter
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 01/11/2018, 14:26:31 UTC
Role of Token: UTILITY
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 22/10/2018, 14:36:27 UTC
Added testing case for correctness, including common transfer and mint smart contracts transfer
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 21/10/2018, 17:01:36 UTC
Optimization of TPS
  Achieved compact block logic
  Removed 1 execution of tx out of 2: no execution at “deliverTx”, only execute at “commit”
  When transmitting over p2p network, “flush” time is reduced from 100ms to 10ms, “send/recv” rate is improved from 51200 to 51200x100
  “gossip data / vote” sleep time is reduced from 100ms to 10ms
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 16/10/2018, 15:36:33 UTC
PBFT Parallelization
 Fixed the problem of abnormal switching of the status VMs during the testing process of multi-nodes
 Fixed the problem of synchronization between block data and votes caused by the block heights synchronization logic
 Fixed the problem of multi-node slowdown and stoppage during Rollbac
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 13/10/2018, 17:03:03 UTC
When Block data and Account data is divided into 2 DB, the performance increased by 15% compared to un-optimized levelDB. It’s about the same compared to the optimized levelDB
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 12/10/2018, 06:42:18 UTC
Great news! Dora Network has been officially admitted to the Hong Kong Cyberport Incubation Program! This is after several months of our efforts, and after the careful review by their panel of experts on our team, our technologies, and our business plan. HK CIP will provide assistance to Dora Network in terms of incubation capital, free rent, connection to investors, etc. etc. This is an awesome recognition of who we are and what we do, and truly a milestone of our development! Go Dora!
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 09/10/2018, 14:36:39 UTC
Explores the parallelism between contracts and within contract in order to execute smart contracts concurrently to the maximum, while improving system TPS.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 07/10/2018, 17:19:57 UTC
bi-directionally expanded, high performance, zero-transaction fee
Dora Network is a high-performance public blockchain dedicated to the execution of dApps with high-concurrency. Dora Network improves the performance from three aspects: Vertical Expansion, Horizontal Expansion and DVBC consensus. It is without transaction fees and compatible with EVM to enable fast migration of existing dApps. Through horizontal expansion, Dora Network’s performance can reach millions of TPS.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 04/10/2018, 17:04:13 UTC
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 02/10/2018, 15:08:44 UTC
1) Performance Optimization for Tx Pool’s AddTx
  a. (30%) txSortedMap.len() repeatedly calculate existing tx queue len, it’s redundant code, will use one variable to avoid repeat calculation.
  b. (30%) various statedb operations, such as getBalance, getNonce, etc, belongs to levelDB operations.
  c. (30%) EIP155Siner.PublicKey() is calculated to get “from” address from signed message.
  d. (10%) There is WAL(write ahead log) inside of Tendermint’s mempool. It has no practical use.
Point a and d will be optimized directly. Point b depends on the performance of stateDB. For point c, it will be optimized by calculation parallelization and by delay calculation to execution.

2) Performance Analysis for tendermint P2P
  a. Sorted out the logic for P2P network transmission, realized the logic for speed testing based on P2P network transmission
  b. MConnection is the core data structure for the entire data transmission. Based on the same network connection, it conceptualizes different channels. Based on the Tendermint design, every channel will correspond to modules needing to be exchanged in the network (for example, mempool, consensus, etc).

Initial Conclusion:
  a. The buffer usage level in the network transmission logic is a little excessive. The transmission logic ultimately transmit data to the network through “Flush”.
  b. In the configuration of Tendermint, the speed for Send and Transmit is limited to 512k. If the speed limit is changed to 50M, the transmission speed between P2P nodes can easily reach 10MB/s.

3) PBFT Parallelization
  a. Expand PeerRoundState function, support synchronization of state/data under pipeline condition
  b. Solve the problem of unable to generate blocks when the consensus between 2 nodes is missing tx.

4) Performance Analysis of StateDB
  When Block data and Account data is divided into 2 DB, the performance increased by 15% compared to un-optimized levelDB. It’s about the same compared to the optimized levelDB.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 30/09/2018, 17:18:10 UTC
1.PBFT Parallelization
  a. Completed logic to validate PBFT block,
  b. implemented rollback logic if pipeline is broken
  c. Implemented proposer determination for multi-node consensus.
  d. Added transaction pool for uncommitted transactions to make sure no duplicated transactions exist on pipelines.
  e. Pipeline logic optimization: if more than 2/3 votes are received, but not the complete block, the next block generation will be paused.

2.StateDB performance
  Integrated testing base58 encoding for MPT. Under condition of 10000 transactions, the StateDB performance is NOT improved due to the fact that base58 encoding is more complex than base16, and disk IO optimization is NOT materialized.

3.Test Platform
  Start building transaction correctness testing (common transfer and smart contract transfer) and stress testing platform.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 29/09/2018, 14:18:21 UTC
Great news! Dora Network has been officially admitted to the Hong Kong Cyberport Incubation Program! This is after several months of our efforts, and after the careful review by their panel of experts on our team, our technologies, and our business plan. HK CIP will provide assistance to Dora Network in terms of incubation capital, free rent, connection to investors, etc. etc. This is an awesome recognition of who we are and what we do, and truly a milestone of our development! Go Dora!
Post
Topic
Board Tokens (Altcoins)
Re: [ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 20/09/2018, 17:07:34 UTC
Hello! I really do not understand many things about your project, is it an own blockchain or an ethereum token? when will you publish your whitepaper? Regards.
Hi,own blockchain and will be coming in soon...Please continue to pay attention to our project.
Post
Topic
Board 中文 (Chinese)
Re: 你为什么要持有比特币?
by
Couriter
on 20/09/2018, 14:54:13 UTC
因为有信仰。。。。。。。。。。。。。 Smiley
Post
Topic
Board Tokens (Altcoins)
[ANN]Dora is a highly parallelized, high performance public chain
by
Couriter
on 20/09/2018, 14:47:09 UTC
Dora Network
Dora Network is a high-performance public blockchain dedicated to execution of dApps with high-concurrency. It is without transaction fees, supports commercial grade TPS, and is compatible with EVM.


Features of Dora Network
     Vertical Expansion:  Explores the parallelism between contracts and within contract in order to execute smart contracts concurrently to the maximum, while improving system TPS.
Horizontal Expansion: Supports Multi-chain technology and Cross-chain transaction, which further improves system TPS.
Delegate Verifiable BFT Consensus (DVBC): Based on DPoS, VRF and BFT, it has a hierarchical design, which balances security and performance perfectly.
BFT - Parallelized Consensus Algorithm:  Combines the pipeline concept, re-designs parallelized algorithm of BFT, and improves consensus speed of block.

 
Economic Model of Dora
     Dora Network will issue 1 billion of DNT tokens in total, 5% of which will be allocated as rewards for miners for the 1st 5 years, 1% per year. The transaction fees for common transfers can be paid by locked up DNT tokens. All transaction fees on Dora Network will be stored in a pool, and will be periodically distributed to miners, token holders, and qualified dApp projects. To motivate dApp R&D and ecosystem building, Dora communities will incubate early stage dApp projects.
 
Main Investment Institutions
     Dora network has received angel-round investment from Loopring Foundation, and has built initial core technical team, which started to work on coding since March 2018.
      Dora network has joined the Loopnest blockchain accelerator in Hongkong Cyberport which cooperates with Price Waterhouse Coopers closely. Price Waterhouse Coopers will provide consulting and support services on company architecture, legal affairs, tax, financing, etc.


Team and Advisors
     Guo Xionghui  Founder and CEO | Tyler Kot Co-Founder and COO |  Li Xing Co-Founder and CTO
     Allan Kwan Co-partner of Oak Investment Fund in APAC. | Terence Lam Co-founder of Loopnest Accelerator Limited.  |  Chen Yong Founder of Beijing BiYing Techconogy.  |  Wang Dong Founder of Loopnest Accelerator Limited.
     You can meet other team members and learn more details on our website .

Roadmap
      ⚡️Preparation 2018.Q1      ⚡️Proto-system 2018.Q3      ⚡️Proto-Test-Network 2018.Q4      ⚡️Formal Network 1.0 2019.Q1      ⚡️Test-Network 2019.Q4      ⚡️Formal Network 2.0 2020.Q1

JOIN THE REVOLUTION
       WEBSITE | TWITTER | TELEGRAM | MEDIUM
We are building the highway in the blockchain world, and would like to invite your to join us to make our contributions.You can visit our website to get the latest and greatest.Thank you very much for your time!