The Good Tech Companies - 5 Steps to Build an Exchange-Optimized L3 Rollup "Eventum"
Episode Date: October 16, 2024This story was originally published on HackerNoon at: https://hackernoon.com/5-steps-to-build-an-exchange-optimized-l3-rollup-eventum. Why we chose the blockchain soluti...on that forms the foundation of the Event Horizon ecosystem and 5 steps to build it. Check more stories related to web3 at: https://hackernoon.com/c/web3. You can also check exclusive content about #decentralization, #event-horizon, #dex, #web3, #l3-blockchain, #layer3-rollup, #arbitrum, #good-company, and more. This story was written by: @eventhorizon. Learn more about this writer by checking @eventhorizon's about page, and for more stories, please visit hackernoon.com.
Transcript
Discussion (0)
This audio is presented by Hacker Noon, where anyone can learn anything about any technology.
5 Steps to Build an Exchange-Optimized L3 Rollup, Eventum, by Event Horizon.
Long story short. How to build your own L2 per liter 3 blockchain.
This article aims to explain and justify the journey we undertook to choose the
blockchain solution that forms the foundation of the Event Horizon ecosystem.
Step 1. Preface.
The main goal of Event Horizon is to provide users with the same broad range of features
as centralized exchanges, such as Binance, Bybit, OKEx, and others, but without the need for KYC
procedures while offering more transparent trading rules. To achieve this, we have developed a hybrid
decentralized exchange that leverages the
best aspects of both CEX and DEX approaches, delivering maximum speed and security to users.
Let's highlight the key criteria on which our research was based on security.
The exchange should not use hot or cold wallets and should not have direct access to users' funds.
In the event of a hack or if the exchange ceases operations,
users must be able to recover' funds. In the event of a hack or if the exchange ceases operations, users must be able to recover their funds. All contracts should be public and audited. Backslash dot, trading speed.
Order matching should take no more than 100 milliseconds and settlements should occur within
two seconds. Backslash dot, competitive fees. Since the fixed costs of the exchange are reflected in
the fees charged to users, minimizing the exchange's costs allows us to lower user fees. Decentralization. In today's world, decentralization adds an extra layer of
security and promotes resilience without significantly increasing maintenance costs.
Step 2. Market Analysis. In analyzing the market and considering the insights of key experts,
we concluded that our future network must be EVM compatible for the rapid development of our product.
We will use Solidity as the contract language, as ITIS the most widely adopted for smart contracts.
While other languages like Rust, used in Solana and Near, or Move can also achieve decentralization, their ecosystems are significantly weaker compared to EVM networks,
and development on them is more expensive. Therefore, we are not considering these
languages or specialized networks like Cosmos, Polkadot, or Solana. This article is not about
yet another Ethereum killer. Instead, practicality, limited resources, and our timelines exclude the
possibility of competing at the level of trading fees,
as the development and maintenance costs require profitability.
A bit about Ethereum There's no need to go too deep into the advantages of Ethereum. Suffice it to say that it is one of the most secure and decentralized blockchain
platforms, with high liquidity and strong user trust. The main drawback is its limited throughput,
which leads to peak loads and high transaction fees.
Although scaling solutions have been in development for years,
these issues remain unresolved on the main network.
Ethereum continues to be one of the slowest and most expensive EVM networks.
What is scaling? Scaling refers to methods designed to increase a network's throughput
by enhancing its protocol. One of the earliest and most popular
solutions was sharding, dividing the blockchain into separate parts, shards, that process
transactions in parallel, increasing the network's capacity. Each shard requires its own validators,
and individual nodes do not need to process all transactions, reducing load and allowing
the network to handle more transactions over time.
Initially, sharding was expected to be implemented in Ethereum before its transition to proof-of-stake.
However, development took much longer than anticipated, and the primary method of scaling has since shifted to L2-per-liter-3 solutions, which we'll discuss below.
In his article, What Kind of Layer 3s Make Sense?, Vitalik Buterin wrote greater than one topic that
often re-emerges in layer 2 scaling discussions is the concept greater than a layer 3s.
If we can build a layer 2 protocol that anchors into layer 1 greater than for security and adds
scalability on top, then surely we can scale even more greater than by building a layer 3 protocol
that anchors into layer 2 for security and adds greater than even more scalability on top of that. This led us to the idea of creating
the most efficient solution for our exchange. To fully understand the situation, let's look
at the primary scaling technologies for Ethereum. What is rollup? A rollup is a network that
operates in parallel with Ethereum but records transactions on the main network.
Transaction validity is verified on the Ethereum network. There are two types of rollups based on the method of transaction verification, optimistic rollups and ZK rollups. Optimistic rollups.
Optimistic rollups form batches of their transactions and record them on the main
net in a compressed format, which makes the recording cheaper. Because transactions are not directly executed on the Ethereum network, and due to savings in the
recording format, it is possible to significantly reduce gas fees and make transaction recording
cheaper. In optimistic rollups, the recorded data on transactions is considered valid,
but there is a specific period during which the recorded data can be challenged.
There is a potential risk that
if an invalid transaction is not contested by anyone within the allocated time, it will be
recorded on the mainnet as valid. ZK rollups. ZK rollups are also networks that operate in
parallel with Ethereum, but they use a different method for verifying the validity of recorded
data. They also form batches of transactions, but instead of recording all
transaction details in the mainnet, they submit a summary of these batches along with a cryptographic
proof of the transaction's validity. ZK rollups are arguably one of the most promising scaling
solutions for Ethereum at the moment because, unlike optimistic rollups, the recorded transaction
data cryptographically verified at the time of recording. This means there is no need to wait for the end of a challenge period to ensure that the
transaction will not be reversed. However, the mathematical complexity of ZK proofs imposes
certain limitations. Verifying general-purpose EVM computations is a very challenging task,
and active development is currently underway to address these challenges.
State Channels State Channels
State Channels are a technology that allows a group of participants to exchange multiple
transactions among themselves while only recording two transactions on the main network,
the initial and the final transaction. Here's how it works.
In the Ethereum network, a multi-sig smart contract is deployed.
This contract verifies that the transactions are signed by the necessary
participants involved in the interaction. Participants in the state channel deposit
funds into this multi-sig contract and then engage in off-chain interactions with one another.
At the end of their interactions, the participants sign the final outcome of their engagement.
Finally, the smart contract distributes the funds according to the recorded result.
This approach significantly reduces the number of transactions that need to be recorded on the
Ethereum mainnet, lowering fees and increasing transaction speed while still ensuring security
through the use of a multisig contract. Plasma-plasma chain is a middle ground between
rollups, where complete transaction verification occurs on layer 1, and sidechains, which do not require
such verification. The idea behind the Plasma chain is that not all transactions need to be
verified by every node on the Ethereum network. Plasma chains periodically record the result of
their operations along with a cryptographic proof of the current state of the network.
The actual data of this state is not recorded, instead, the proof is of a small size.
As a result, the validity of the transactions themselves is not checked, but if a commitment
has already been recorded on Ethereum, the Plasma chain cannot retroactively alter the
transaction history. This approach helps in reducing the load on the Ethereum network
while still providing a level of security through periodic commitments. V-A-L-I-D-I-U-M, Optimium
In terms of architecture, Validium is similar to ZK roll-up solutions,
with the key difference being that transaction verification data is stored off-chain.
This allows for greater throughput and lower fees but at a trade-off.
Validium solutions are less secure than ZK solutions because the operator of a Validium
can potentially freeze funds without data on the Layer 1 network. While this architecture offers
advantages in scalability and cost, it introduces additional risks regarding the control and access
to user funds. SIDE CHAINSA sidechain is a separate blockchain that operates independently
of Ethereum but is connected to it through a two-way bridge. Unlike roll-up solutions, transaction verification is not conducted
on the Layer 1 network for sidechains. As a result, the security of a sidechain is solely
dependent on the implementation of that sidechain itself. However, this independence from the Layer
1 network provides greater flexibility in terms of architectural implementation and allows for more tailored solutions that can address specific use cases or requirements.
Optimal technology. There have been many attempts to scale the Ethereum network,
some more successful than others. Scaling Layer 1 itself would be the safest and most
user-friendly option, but it has proven to involve significant technical challenges.
Therefore, at present,
the preferred scaling vector is through L2 per liter 3 solutions. Rollup solutions, in particular,
provide the highest level of security among alternative options. Both optimistic rollups and ZK rollups have proven themselves as the most popular solutions, offering a high degree
of security on relatively low integration costs compared to other methods.
Considering the recent Ethereum update, Denkun, which significantly reduced the cost of recording
data for verification at Layer 1, rollup-based solutions stand out over alternatives like
Plasma and Validium, providing greater security with minimal additional costs.
For users, decentralization in rollups ensures that they can withdraw their
funds even in the event of a crash or other critical issues. User funds are locked on the
main network, allowing withdrawal from the rollup to the main network regardless of the rollup status.
However, one key drawback is that users are introduced to an additional network that may
not be supported by all wallets, complicating deposits and withdrawals via a bridge. The process locks tokens in the main network and issues a wrapped token in the roll-up,
which can complicate the user experience and create barriers to accessing funds.
With that said, there are undeniable advantages infrastructure management.
Parameters of the network can be flexibly configured and optimized to meet the current
needs of the product. Transaction speed. They accelerate the confirmation of operations, which is critically
important for trading. Reduced fees. They lower the cost of transactions, affecting the operational
expenses of the exchange and making the platform more efficient. Scalability. They increase the
network's throughput, supporting a higher volume of trading operations. Enhanced user experience. They provide a more predictable and controlled
experience for users interacting with the solution. Step 3. Network and technology selection.
Initially, we considered existing blockchains like Arbitrum One and Optimism,
both optimistic roll-ups, for deploying our exchange infrastructure.
These networks offer high popularity, liquidity, and extensive third-party bridge support for
cross-chain operations. However, we identified significant downsides. First, sooner or later,
we would face the issue of scaling to other networks. Many popular projects, from Aave to
Uniswap, have gone through this process after initially launching on just one
network. This necessitates maintaining multiple parallel infrastructures, dilutes liquidity,
and significantly increases the operational costs of the exchange.
Second, there is a challenge with protocol governance through a governance system.
Distributing governance tokens across different networks can lead to vote manipulation,
which undermines the very idea of decentralization. Third, the settlement cost of orders on the
exchange is considerably higher. Our estimates suggest that the settlement cost on the optimism
network would be around $0.03, whereas in our own roll-up, it would be 10 to 100 times lower.
Moreover, in the case of our own L2 per liter 3 network, infrastructure
costs increase non-linearly, and the cost per transaction decreases with the number of transactions,
thereby enhancing the competitiveness of the exchange. After considering these factors,
we began exploring the development of our OWN L2 per liter 3 solution, and we reached out to
partners from Hachex and Gelato. Javier Donzo, head of
developer relations at Gelato, shared greater than, for projects like Event Horizon it makes
total sense to have their own chain. Greater than the ability to customize block times,
block gas limit, or base fee, among greater than other parameters, gives their project an edge
against the competition as they greater than can build a more optimized chain for their needs. Greater than greater than greater than we have seen protocols doing a two
step approach, yet Event Horizon has, from greater than day one, a clear vision and roadmap that
makes having their own chain the best greater than choice. Before we dive deeper into the analysis,
let's take a look at some competitors that are already utilizing similar solutions avo they use their
own l2 solution based on optimism op stack rollup which allows them to maintain high transaction
speeds and low fees while ensuring security at the level of the main ethereum blockchain
dydx initially used an l2 solution based on starkware z Rollup, but later announced a transition to their own L1 network based on
Cosmos. GMX. Focused on derivatives, GMX offers the ability to trade perpetual futures with
leverage. The platform initially launched on the Avalanche network but later moved to the L2
solution Arbitrum. Quenta. Operating on the Optimism network, Quenta focuses on trading perpetual futures.
Perpetual Protocol. This platform supports perpetual futures and operates on Optimism,
although it was initially launched on the XDAI network, now NasusChain.
Technology Selection. To begin, we need to understand the key terms related to roll-up
components. Sequencer. Responsible for ordering transactions on L2
and grouping them into blocks. It functions similarly to miners or validators in L1 blockchains.
Thesequencer collects transactions from users, combines them into batches, and SNs them to L1
for recording, ensuring the order and integrity of the data. Proposer. This entity or node proposes
new blocks of transactions to be
included in the transaction chain. It may be part of a consensus mechanism that selects one of many
proposers to add a new block. Proposers play an important role in creating and proposing valid
blocks. Batcher. A batcher, sometimes called an aggregator, is a component that combines multiple
transactions into a single package or batch. This reduces the load on the main blockchain and lowers gas fees. The batcher then sends this
batch to the main network for final recording. Thus, the batcher helps to minimize the number
of interactions with the main network and reduce costs. State validation. State validation involves
checking the correctness of the blockchain state in the rollup. This is a key process that ensures trust in the data. Different solutions
use various approaches to state validation. Some, such as optimistic rollups, assume the
correctness of transactions until proven otherwise, while others, like ZK rollups,
use zero-knowledge proofs to verify the state. Settlement layer. Responsible for the final
confirmation and recording of transactions on the main network. This layer is where financial
settlements and consensus occur. The settlement layer serves as the foundation for ensuring that
the data in the roll-up matches that of the main network. Data layer. The data layer manages the
storage and access to the data needed to restore the roll-up state in case of disputes or the need for recalculation.
Various solutions may store data on-chain or use external off-chain solutions to minimize costs and ensure reliable storage.
Now, we need to understand the basic load parameters we are planning for planned throughput.
Number of settlements per day, 100,000.
Gas required for one settlement, 400,000. Gas per second for the required number of settlements per day, 100,000. Gas required for one settlement, 400,000. Gas per
second for the required number of settlements, 463,000 gas, S. Settlement mining speed, up to
2 seconds. Peak load, 1,000 settlements per second. Roll-up technology. We have gathered an analysis
of current market solutions and presented the results in a comparative table information op stack arbitrum orbit polygon cdk zk stack ecosystem optimism
arbitrum polygon zk sync usage by major projects base mode avo exchange arbitrum 1k inton n
enmanta migrated from op stack a star launch chronos, exchange, throughput up to 200M gas,
block up to 60M gas, block 5E14 gas, block 1.1E15 gas, block block mining speed 2 seconds per block,
slight customization possible, 0.26 second per block 3 second per block 1 second per block,
and maturity of the solution plus plus plus plus degree of decentralization
decentralized sequencer is only planned plus there is a possibility of withdrawing funds by
connecting your own prover ability to withdraw funds after l2 failure tuptions decentralized
and centralized plus n plus sequencer failure users can submit transactions to l1 bypassing
the sequencer 12 hour delay users can submit transactions to l1 bypassing the sequencer, 12-hour delay.
Users can submit transactions to L1 bypassing the sequencer, 1-day delay.
There is a mechanism, but it is not yet operational in Polygon ZK EVM.
The sequencer cannot selectively block transactions,
but it can completely stop supplying them to L1.
Proposer failure Anyone can act as a proposer.
After 6 days and 8 hours, can act as a proposer. After 6 days and 8 hours,
anyone can become a proposer. There is a possibility of withdrawing funds. Vendors
provide this service. Only whitelisted proposers can publish the state. Withdrawals can be
completely blocked. End-state validation Anyone can perform adispute. Whitelist of addresses
There are 14 in Arbitrum 1.
NZK Proofs
ZK Proof Solution for Deposits, Withdrawals, Bridge, Canonical Bridge, Superchain, Q1 2025,
Canonical Bridge plus Fast Withdrawal. Ag Layer is in development, similar to Superchain,
Hyperchain, Support for Chains in ZK stack. N liquidity in the ecosystem base,
OpMainnet, Blast, and Mantle have over $16 billion in liquidity. Arbitrum 1 has $13 billion,
while other L2s do not have significant liquidity. Polygon ZKE VM70MZK Sync Era 800M
Data Layer Ethereum is needed to support the superchain. Anyone anyone, Validium mode.
Anyone cost of infrastructure support small small 5x compared to Optimism.
X5 compared to Optimism. Vendors almost all support Opstack. Caldera Gelato most supported.
NZEV, data availability providers for rollups Ethereum eigenlayer celestia avail near any trust popularity 5 3 3 3 1 3 consensus
gasper committee based consensus model tendiment polka dots babe and grandpa doom slug pos bls
signatures require n1 signatures where n is the number of dac participants dos dos after the
upgrade to dank sharding will not be available for at least a few years. Plus plus in development, encoding scheme KZG commitments KZG commitments fraud proofs KZG
commitments KZG commitments decentralization 1M validators committees approximately 200
validators do 1000 validators 223 validators low. The number of participants is less than 10.
Cost of 100k settlements approximately 200
plus dollar no data tilde 30 dollars the mainnet is not launched. Tilde 1 dollar depends on the
configuration. It is important to note that in DA providers data is not stored indefinitely.
It is essential to store transaction data additionally. The infrastructure provider
typically runs additional archive nodes from which the transaction history can be extracted if necessary.
Data Source for Costs Vendors were unable to provide reliable information
on costs as per our request.
Arbitrum Nitro Stack Arbitrum Nitro combines all existing approaches
of Arbitrum in building L2-per-liter 3 networks Arbitrum Rollup, Arbitrum Orbit, and Arbitrum AnyTrust.
Arbitrum OrbitJAN operate in two modes, Rollup and AnyTrust. The main difference lies in how
transaction data is stored. The Rollup mode is the most decentralized, with transaction data
recorded on L1. Storing data on L1 represents the primary costing this mode. In any trust mode, the Data Availability Committee
DAC is responsible for data storage. Data is stored off-chain, which significantly reduces
storage costs. DAC participants run servers that store transaction data. For the network security,
at least two DAC participants must be honest. The sequencer distributes transaction data to
all committee members. Arbitrum Nova has a DAC
committee consisting of six members. Advantages of Arbitrum Orbit Higher block mining speed,
which is important for exchanges. Greater throughput, the ability to launch L3 solutions,
significantly reducing network fees. The possibility of writing optimized contracts in
Rust, which will run in parallel with the main ones in Solidity. The protocol supports permissioned access, only the smart contracts
of the required application can be deployed. In the event of sequencer, proposer failure,
users have the option to withdraw their funds to L1. Disadvantages of ArbitRUM Orbit
When launched in any trust mode, the security of the network depends on the honesty
of the members of the DAC committee, leading to high centralization. Unlike OPSTAC, there are no
permissionless fraud proofs. Fraud proofs are conducted by whitelisted validators. In Arbitrum
Nova, there are 13 validators on the whitelist. Unlike ZK Solutions, there is a risk that none
of the validators will check the state, and invalid data may be recorded
on L1. Complex implementation of the prover due to support for solidity and programming languages
that compile to WASM, Rust, C++. OpStack. OpStack is an open-source solution that plays a key role
in the infrastructure of optimism. The goal of OpStack is to provide the necessary infrastructure
for development of a compatible
ecosystem of roll-ups called Superchain. Superchain aims to ensure interaction and
transactions between various Layer 3 networks. Decentralized withdrawal
The main technological distinction is the ability to decentralize the deposit
withdrawal of funds between networks based on OPPS stack.
In mid-2024, the permissionless output proposals,
POPs, mechanism was implemented, allowing any network participant to create a withdrawal
request through Dispute Game Factory. Currently, the mechanism is not fully decentralized,
as there is a Security Council that can veto withdrawals. There are plans to revise the
rights and restrictions of the Security Council in the future, although there are no clear timelines for these changes. Advantages of Opstack
The superchain ecosystem built on Opstack offers several advantages efficiency, simplicity,
and scalability. You can launch your own Layer 2 blockchain with just one click.
Interoperability Layer 2 solutions based on Opstack can easily
interact with each other.
Security Guaranteed by Ethereum,
the key difference from Arbitrum Orbit is that Superchain focuses on building horizontal Layer 2 blockchains instead of Layer 3. There are already many such networks based on Opstack,
including Optimism, Base, Zora, OPBNB, Public Goods Network, DaBank, AVO, and others.
Disadvantages of Opstack
Currently, Opstack is a leader among competitors in terms of the number of integrations and revenue.
However, it also has its downsides long withdrawal times.
Users must wait for confirmations on the main blockchain.
Low privacy, excessive centralization.
At present, there is only one sequencer
processing transactions. The Optimism team is actively working to address these issues,
and Espresso is already offering its own sequencer for Opstack blockchains.
Step 4. L2 or L3? The roll-up technology is fundamentally suitable for building both L2
and L3 networks. The only difference is which network the data is published
to. Typically, the main Ethereum network is used for L2, while any L2 network can beckon as the
target for L3. The cost of recording data in an L2 network is significantly lower than in L1,
while providing a similar user experience. However, the question of security arises,
as an L2 network may cease to function.
Thus, there must be sufficient liquidity and a level of trust in Placeto host your
roll-up on that network. Our choice for the exchange's requirements,
any of the aforementioned stacks could be suitable. ZK solutions appear promising,
but they are still under active development and carry significantly higher infrastructure
support costs. Among the two main optimistic solutions, OpStack and Arbitrum Orbit, Arbitrum Orbit seems more
appropriate for a decentralized exchange due to its focus on significant differences in speed and
decentralization, as well as the highest liquidity within the ecosystem, concentrated in a single
network, approximately twice that of Base and Op Mainnet. In July 2024, Arbitrum Orbit introduced
the Fast Withdrawal Initiative, which aims to significantly expedite fund withdrawals from
the roll-up to 5-15 minutes, contrasting sharply with the 7-day wait required for withdrawals from
op stack roll-ups. Additionally, Arbitrum Orbit actively supports projects built on ITS
infrastructure, while the Superchain Initiative resembles a centralized, closed VIP club, for insiders only. At the same time,
it is worth noting that initiatives within Opstack, such as Interop and AltDA, look intriguing.
These initiatives will allow funds to be transferred between Opstack rollups without
the 7-day delay and utilize alternative data layers such as celestia
which can further reduce transaction costs however the op stack team has made it clear that only
select projects will be able to become part of superchain and fully utilize interop and based
in our assessments optimism likely aims to limit this number to no more than 5 to 10 projects
across the entire superchain. It is also important to
remember that any network can be disabled at any time since the keys to the sequencer are transferred
to Optimism and are not disclosed to the network owner, which raises doubts about the core concept
of decentralization. After a month of intensive discussions within the team and analyzing various
options, we concluded that our own L3 network based on Arbitrum Orbit plus any trust
is the optimal balance of cost and speed for our exchange. Considering the developed ecosystem,
marketing opportunities, and recent updates, Arbitrum Orbit stands out as the most decentralized
and reliable option currently available in the market. Additionally, the ability to participate
in the fast withdrawal initiative is a significant advantage, allowing for automatic fund withdrawals within 5-15 minutes without the need to wait for hours
or even days, as is customary with traditional optimistic roll-ups. Advantages of L3 network
based on Arbitrum Orbit for us, greater than, choosing the right blockchain for a hybrid
exchange is a task that requires greater than balancing the trade-offs between blockchain speed, decentralization, and the greater-than complexity of development and
infrastructure support costs. Considering the greater-than outlined requirements,
the most optimal solution appears to be based on greater-than-arbitrum orbit in any trust mode,
which allows for the deployment of a secure greater-than blockchain that meets the specified
requirements with minimal trust greater-than assumptions. Greater-than greater-than greater-than one Gleb Zykov,
CTO and co-founder of HashiEx, Speed. Utilizing Arbitrum Orbit provides us with nearly an 8x
increase in settlement speed compared to Opstack, while maintaining a similar block gas limit.
Arbitrum Orbit ecosystem, it is one of the most popular ecosystems, boasting $16 billion in
liquidity, strong marketing support, and a professional team. Control over infrastructure.
We can quickly implement changes to the network, adding necessary features and improvements that
enhance the user experience. Economic efficiency. The cost of a single settlement is projected to be only $0.0001 to $0.0002,
significantly reducing operational costs and allowing us to maintain low fees for users.
Token and DAO issues resolution. The use of a native token within a single network addresses
the problem of vote manipulation and promotes greater decentralization, similar to what is
implemented by Arbitrum,
Optimism, and others. Arbitrum network support on all major exchanges. The Arbitrum team has already done significant work to become a major player and ensure support for their network on
all leading exchanges. Along with fast token deposits, withdrawals, this greatly simplifies
the user journey. Disadvantages of our L3 solution building
from scratch. Constructing a network from the ground up requires significant resources and time,
even though we are using a ready-made SDK that simplifies the setup process considerably.
Self-support. Unlike utilizing existing solutions, we will be fully responsible for
maintaining the network's functionality and promptly addressing any issues that arise. Higher risk of L3 network downtime compared to L1. While we believe this scenario
is unlikely, it is theoretically possible. In such a case, the roll-up would continue to function
but would not publish data to the L3 network. Step 5. Conclusion. Building our own L3 network
on Arbitrum Orbit offers unique growth opportunities for our exchange. This solution reduces operational costs,
enhances user experience, and increases opportunities for participating in governance.
Although constructing and maintaining our own network requires considerable effort,
we are confident that this strategic decision will ensure the long-term success and sustainable
development of our exchange. Thank you for listening to this Hackernoon story, read by Artificial Intelligence.
Visit hackernoon.com to read, write, learn and publish.