Bitcoin Forum
May 28, 2024, 03:20:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [ANN]Dora is a highly parallelized, high performance public chain  (Read 355 times)
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
September 20, 2018, 02:47:09 PM
Last edit: September 20, 2018, 04:57:55 PM by Couriter
 #1

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!
cryptodrunk
Member
**
Offline Offline

Activity: 217
Merit: 10


View Profile
September 20, 2018, 04:53:57 PM
 #2

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.
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
September 20, 2018, 05:07:34 PM
 #3

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.
kopisusu
Full Member
***
Offline Offline

Activity: 1050
Merit: 100



View Profile
September 20, 2018, 06:19:33 PM
 #4









just help you
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
September 29, 2018, 02:18:21 PM
 #5

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!
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
September 30, 2018, 05:18:10 PM
 #6

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.
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 02, 2018, 03:08:44 PM
 #7

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.
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 04, 2018, 05:04:13 PM
 #8

https://cdn-images-1.medium.com/max/65/1*8YkLkcQ6rr2dEiNxx9A5mA.jpeg
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 07, 2018, 05:19:57 PM
 #9

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.
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 09, 2018, 02:36:39 PM
 #10

Explores the parallelism between contracts and within contract in order to execute smart contracts concurrently to the maximum, while improving system TPS.
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 12, 2018, 06:42:18 AM
 #11

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!
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 13, 2018, 05:03:03 PM
 #12

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
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 16, 2018, 03:36:33 PM
 #13

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
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 21, 2018, 05:01:36 PM
 #14

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
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
October 22, 2018, 02:36:27 PM
 #15

Added testing case for correctness, including common transfer and mint smart contracts transfer
Couriter (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
November 01, 2018, 02:26:31 PM
 #16

Role of Token: UTILITY
dzkrb
Sr. Member
****
Offline Offline

Activity: 672
Merit: 250


🔰FERRUM NETWORK🔰


View Profile
November 02, 2018, 07:24:55 PM
 #17

You wrote. "The Dora Network received an angel investment from the Loopring Foundation and built the first major technical team, which began working on coding in March 2018." What kind of angel are we talking about? And what investment have you received?


                            █████
                        █████████████
                     █████████████
                 ██████████████        █████
              █████████████        ████████████
          ██████████████        █████████████
       █████████████        █████████████       ██████
       ██████████        ████████████           ██████
       ███████       █████████████       ███    ██████
       ███████    █████████████       ██████    ██████
       ████████████████████       ██████████    ██████
       █████████████████       █████████████    ██████
       █████████████       █████████████        ██████
       ██████████       █████████████           ██████
       ███████      ██████████████       ███    ██████
       ██████    █████████████       ███████    ██████
       ██████    ██████████       ██████████    ██████
       ██████    ██████        █████████████    ██████
       ██████    ███       █████████████        ██████
       ██████           █████████████       ██████████
       ██████       █████████████        █████████████
                 █████████████       █████████████
              ████████████        █████████████
                  ████         ████████████
                           █████████████
                         ███████████
                            █████
Ferrum Network • Interoperability Network for Financial Applications
Tylerkot
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
November 13, 2018, 07:47:14 AM
 #18

Hi, here is the link for Loopring Foundation which we received the angel investment: http://loopring.org/leaf.html. This investment has enabled Dora to assemble our technical team to start coding since March, 2018, and all operational expenses. Please let us know if you have any other questions.
dzkrb
Sr. Member
****
Offline Offline

Activity: 672
Merit: 250


🔰FERRUM NETWORK🔰


View Profile
November 15, 2018, 07:31:03 PM
 #19

You wrote. "Dora's network has joined the Blockchain Loopnest accelerator at Hongkong Cyberport, which works closely with Price Waterhouse Coopers. Price Waterhouse Coopers will provide consulting and support services for the company's architecture, legal issues, taxation, financing, etc." And this is very important information for investors. These are the most financially capacious areas of business.


                            █████
                        █████████████
                     █████████████
                 ██████████████        █████
              █████████████        ████████████
          ██████████████        █████████████
       █████████████        █████████████       ██████
       ██████████        ████████████           ██████
       ███████       █████████████       ███    ██████
       ███████    █████████████       ██████    ██████
       ████████████████████       ██████████    ██████
       █████████████████       █████████████    ██████
       █████████████       █████████████        ██████
       ██████████       █████████████           ██████
       ███████      ██████████████       ███    ██████
       ██████    █████████████       ███████    ██████
       ██████    ██████████       ██████████    ██████
       ██████    ██████        █████████████    ██████
       ██████    ███       █████████████        ██████
       ██████           █████████████       ██████████
       ██████       █████████████        █████████████
                 █████████████       █████████████
              ████████████        █████████████
                  ████         ████████████
                           █████████████
                         ███████████
                            █████
Ferrum Network • Interoperability Network for Financial Applications
Tylerkot
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
November 26, 2018, 04:32:59 PM
 #20

Happy Holidays! Yes, agreed on the importance of compliance processing by PWC. We believe it's a necessary step if we want to be part of the future when the traditional capital enters the crypto arena.  It's been a expensive and long drawn out process, but we are almost there!
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!