Blog

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Security and Key Management Practices at Chorus One
We explore Chorus One’s security and key management measures to mitigate staking risks in our products.
August 7, 2023
5 min read
Prologue

Recent upgrades to Ethereum, such as The Merge and Shapella, were as transformative to the underlying technical algorithms of Ethereum, as they were for the underpinning economy. Previously, hardware enthusiasts and enterprises worked to provide security for the network and were generously rewarded in the process, while today the main driving force that makes Ethereum work securely is their validator community. While there are some similarities between miners and validators -- they both secure the chain via some technological process -- there are many striking differences between the two, particularly in the technology involved.

This article will focus on the technical aspects of being part of a validator community, risks associated with this role, and Chorus One’s measures to mitigate staking risks in our products.

Cryptography keys used in Ethereum Proof-of-Stake network

Before 2022, Ethereum's main network used a Proof-of-Work (PoW) system called ETHash to create new blocks and handle transactions. Miners using this system had to solve complex puzzles using powerful computers to create blocks of transactions. These blocks were verified with a code unique to the miner, commonly referred to as a (ECDSA) cryptographic key. The EVM then transferred the transaction fees and additional inflation rewards into an account identified by a public key of that miner key pair. This cryptographic key pair that the miner received was known as a coinbase address, and was configured directly in software the miner used.

Now, things are different. Ethereum no longer requires complex puzzle to create blocks anymore. Instead of miners, a specific type of software called Validator Client creates new blocks. Running validators involves locking some funds on-chain, and then producing blocks when that validator is chosen as the next block producer by the randomness of the consensus algorithm. Since there is no hardware-intensive puzzle solving involved, and the randomness consensus algorithm is very lightweight and has allowed the network to reduce the hardware involved and energy spent within Ethereum blockchain. On the economic side, however, this also had profound changes.

First, they changed how rewards are distributed. Instead of the reward going to one address, it is now split into two parts: consensus and execution, which can be specified in separate accounts/addresses. It is split in this manner:

Execution rewards: fees collected for transactions in a block. These are sent to a special address set in the Ethereum software as the "fee recipient address."

Consensus Rewards: These are based on inflation and given to validators who make blocks and also to those who vote on blocks made by other validators. This consensus reward goes to an address set when a new validator is added. It can't be changed later and is called the "withdrawal address."

Second, the very algorithm used to sign the blocks was changed to involve a BLS algorithm instead of the previous ECDSA (however, the individual transaction signatures still utilize ECDSA for convenience and compatibility reasons). Next we will explain why this matters.

More differences between withdrawal and validator addresses

Now, there are two addresses involved in the reward process instead of just one cryptographic key pair. This means each validator has two key pairs. One of these key pairs is called BLS, and it's always used by the Ethereum client software to sign block information. This helps verify the address where fees should go, which is included in the block's data.

The block production process itself does not require the holder to also keep the ECDSA keys to the fee recipient address, so potentially every Ethereum address can be specified in the Validator Client to receive execution rewards. The withdrawal (ECDSA) key pair, however, is never loaded into a client, and is immutably bound to every Ethereum validator during the validator creating process.

For validators, this means that there exists a non-custodial process which allows them to lock their Ethereum coins in the blockchain while still having control over those funds and any future consensus rewards, while the actual Validator Clients can be run by a separate entity. Such an entity would only hold validator BLS signing keys and not the withdrawal ECDSA keys.

Let’s focus on validator keys

The Validator BLS key pair, which is important for confirming and creating new blocks, is traditionally generated from random information using a secure method that keeps the private keys unpredictable. Chorus One has its own in-house tool that makes generating keys fast and secure, which you can read more about here.

After creating the keys, the on-chain verification and loading of the deposit transaction data both kick off in parallel, in a process known as ‘Voting period’, and usually takes around 16 hours. During this time, Ethereum nodes from across the globe will read the deposit transaction log, and vote on whether the signature included in the transaction is correct. When enough votes for correctness are collected, the voting period elapses. However, the validator does not immediately start to fulfill its duty of securing the chain, but due to a limitation in the amount of validators that can become active per block, some additional time is spent in an activation queue. More information on this process can be found here.

Once the activation queue period has passed, the validator clients where the keys have been loaded will start fulfilling Ethereum blockchain duties. Only after this point is that specific duties can be assigned and the keys will start being used to produce signatures and blocks.

This process is visualized on the following image:

Risks involved for the validator key holders and operators

The biggest danger for validator key holders is if those keys are stolen, because attacker in possession of the victim validator keys can produce messages infringing to security of a blockchain, which will lead to slashing the validator that incurs a large penalty (more than 1Eth per validator).Currently, it is not possible for a perpetrator in this scenario to profit from such operation, however the possibility to vandalize the ledger still exists and is the most significant risk when operating the validator keys. Thus, participation in staking usually involves consistent and well-thought security practices that prevent unauthorized access to the validator key seed. It is also important to understand that a single seed can be used to generate multiple validators; the more validators were created from a single seed, the bigger the potential impact from leaking the keys.

Besides this, other risks arise from the operation of running validators.

Client software risks

The Ethereum community often discusses the risks associated with client software diversity, which refers to having different types of software implementations. Ethereum offers various open-source validator options, and users can even create their own software. However, most users prefer established open-source options. Validator software is complex and can have bugs that lead to penalties. To minimize risk, stakers should use different validator software types to avoid simultaneous problems that could result in increased penalties for everyone, known as an "inactivity leak."

It's better for stakers to run multiple types of validators to reduce risk. Currently, Ethereum has good diversity at the consensus layer, but there's an issue with one software type dominating the execution layer. Bugs often appear in specific software versions, but Ethereum runs multiple versions simultaneously to reduce risks. Those using a service to stake Ethereum should make sure the service uses diverse software types for both main agreement and action parts of Ethereum.

Withdrawal risks

Withdrawal risks arise from possible issues with the withdrawal keys, like if they are accidentally revealed or if access to the wallet's private key (ECDSA) is lost. As of now, Ethereum lacks mechanisms to regain access to validator withdrawal once the wallet is lost. This underscores the significance of using a trustworthy wallet, maintaining backups, or relying on a reputable custody provider to safeguard the withdrawal seed. It's essential to ensure the correct wallet public key is used when setting up the validator.

Chorus One operations and practices

At Chorus One, we operate over 8000 validators on the Ethereum Mainnet for various customers, drawing from years of experience without encountering any slashable offense. In the following sections, we'll delve into the techniques we've developed to oversee validator operations, along with the software and infrastructure controls we've implemented. These measures are aimed at minimizing risks for our customers.

  1. Validator key security

Validator key security is at heart of our operation. We ensure that validator keys are never stored on disk without encryption. We utilize cloud-based Vault software, implementing zero-trust access controls, to securely store and provide validator keys to validator clients throughout their lifecycle and operation.

  1. Vault access control

We employ Vault access control policies to ensure that only software clients have access to validator key content. We also segment access for different processes, ensuring that each validator client process can access only a specific set of keys. These keys are guaranteed to be unique across all processes. While generating each validator's private BLS key, we use a strong source of randomness to minimize the possibility of collisions. Furthermore, an SQL database with a unique constraint on the validator's public key field is used to ensure that generated validator keys are never reused for new validators, even if a validator is exited later.

To maintain transparency, we maintain an append-only log of all operations on the Vault storage, and we routinely review it for any anomalies. When it comes to data transfers involving validator keys, they exclusively occur through TLS encrypted channels. Additionally, backups of validator key storage are encrypted with multiple keys, requiring the authorization of multiple individuals to restore from the backup. Each mnemonic used for a validator's BLS private key is unique and exclusively assigned to that specific validator. This approach further minimizes the risk of key leakage.

  1. Slashing Protection Database

For each validator client, we maintain a local slashing protection database. Additionally, we utilize the Web3Signer signing service, which employs a centralized slashing protection database. This dual-layer approach offers enhanced security. In the event of potential glitches or bugs in our cloud platform that might result in two instances of the same process running with the same local slashing protection database, the centralized Web3Signer database acts as a safeguard against double signing by our validators.

The Web3Signer centralized database is replicated across multiple data centers, ensuring redundancy and availability. An automated fail-over mechanism is also in place to address any downtime in a data center. The protective measures employed by Web3Signer to prevent double signing are depicted in the illustration below.

  1. Geographically distributed data-centers

At the core of our infrastructure lies a network of public Ethereum nodes that actively engage in the Ethereum consensus and execution process. These nodes establish dependable infrastructure pathways that support the seamless functioning of the Ethereum network. These public nodes are strategically positioned across various geographical data centers, ensuring redundancy and reliability.

Within our validator clients, we've implemented load-balancing mechanisms. This ensures that if one of the data centers experiences an outage, our validator clients seamlessly transition to utilizing Ethereum nodes from other operational data centers.

  1. Node Monitoring

Alongside the usual health checks for Ethereum APIs, our load-balancing strategy incorporates personalized health assessments for Ethereum nodes. For instance, if an Ethereum node's connected peers experience a sudden drop, our load balancer redirects validator traffic away from that node. This action prevents any potential issues with attestation or block propagation.

At Chorus One, we adopt a safeguard by running various implementations for both the consensus and execution layers in parallel. This approach ensures that any bugs in a single client implementation won't impact all of our nodes. The visual depiction of the infrastructure alignment between public nodes and validators is illustrated in the diagram below.

Our validator client software connects to the public Ethereum nodes, which are hosted on lightweight cloud appliances situated in proximity to the public node hosts. We maintain distinct validator client processes for different customers, ensuring that validators from separate customers don't share the same process memory.

We employ cloud automation software to facilitate automated upgrades for the client process. This includes an instant rollback feature triggered by automated health checks if any misconfiguration is detected that could potentially result in penalties.

  1. Infrastructure Resilience

Our infrastructure platform, Kubernetes, operates on top of public cloud providers, ensuring that only a single instance of each validator client process is active at any given time. This is achieved through the utilization of StatefulSet resources, which terminate old processes before launching new ones during restarts.

Our automated validator client updates undergo thorough testing before implementation. Updates are applied exclusively to Ethereum mainnet validators that have been rigorously evaluated and proven effective in privatenet and public testnet environments prior to deployment. The process of automated upgrades and rollbacks is visually depicted in the diagram below.

The controls and mechanisms mentioned above are sophisticated and prioritize security and safety over maintaining uptime. For instance, our validator client software integrates slashing protection to prevent signing attestation in scenarios where true double signing could occur, or if there's an issue with the centralized slashing protection database service.

Another example pertains to the potential downtime of the Vault service, which could lead to validator clients being unable to load signing keys and thus unable to sign on time. To address this, we implement continuous monitoring for all validators and the underlying infrastructure, generating automated alerts if any issues arise. To ensure comprehensive oversight, even in cases where our internal monitoring might falter, we employ a separate process of on-chain monitoring. This process involves scraping Ethereum blockchain APIs from an isolated set of public Ethereum nodes. It raises alerts if any penalties are detected with Ethereum validators.

Our team of rotating on-call engineers is available round the clock to respond to these alerts promptly and troubleshoot any potential problems with validator clients.

About Chorus One

Chorus One is one of the biggest institutional staking providers globally operating infrastructure for 40+ Proof-of-Stake networks including Ethereum, Cosmos, Solana, Avalanche, and Near amongst others. Since 2018, we have been at the forefront of the PoS industry and now offer easy enterprise-grade staking solutions, industry-leading research, and also invest in some of the most cutting-edge protocols through Chorus Ventures.

Wrapping Up EthCC6
Some of Chorus One's key highlights from EthCC 2023
July 25, 2023
5 min read
That’s a wrap, EthCC 2023!

We had an enriching and productive time at EthCC 6, a week-long event in Paris that brought together industry professionals and experts from across the globe. Here's a recap of Chorus One's highlights from the event:

Breakfast Morning:
  • We started the week with a lively breakfast, connecting with peers and engaging in fantastic discussions about staking and beyond over coffee and croissants.

Gabriella Sofia's Staking Economy Presentation:

Our Research Analyst and Ethereum expert, Gabriella Sofia, delivered an insightful presentation on the staking ecosystem. She covered everything from the history of staking to the latest developments in liquid staking and MEV.

Brian Crain's Urbit 101 exploration:

Our CEO and Founder, Brian Crain, took the EthCC main stage to explore the Urbit ecosystem. His talk delved into Urbit's history, use cases, and future outlook. If you're new to the ecosystem, we highly recommend watching his presentation to get up to speed.

Jennifer Parak's ETH-staking-smith Presentation:

On the final day, Jennifer, our Engineering Team Lead, presented Chorus One's key generation tool, ETH-staking-smith. Her technical yet concise explanation shed light on the optimized, open-source Ethereum validator key generation tool we developed to streamline key and deposit data generation.

OSMOCON 2023
Michael Moser's Validator-driven MEV on Appchain and Beyond Presentation:
  • Our Head of Research, Michael Moser, delved into validator-driven MEV at Osmocon2023. His presentation explored recent developments in the MEV realm, shining a spotlight on Chorus One's work for MEV optimization.
NEBULAR SUMMIT 2023
Brian’s Staking Economy Presentation:

Brian returned on stage for his second talk on the staking economy, where he explored the depths of the staking ecosystem, from its history to where it stands today (1:05:52 - 1:26:23)

Throughout the event, we absorbed a wealth of knowledge and returned with a renewed sense of hope and motivation. The community's energy was infectious, inspiring us to continue building better technologies, products, and solutions in the second half of the year.

See you next time!

About Chorus One

Chorus One is one of the biggest institutional staking providers globally operating infrastructure for 40+ Proof-of-Stake networks including Ethereum, Cosmos, Solana, Avalanche, and Near amongst others. Since 2018, we have been at the forefront of the PoS industry and now offer easy enterprise-grade staking solutions, industry-leading research, and also invest in some of the most cutting-edge protocols through Chorus Ventures.

Switzerland’s Digital Asset Renaissance
Switzerland has reigned as the leading standard for crypto regulation. Will it prevail against growing competition?
July 20, 2023
5 min read

For decades, Switzerland has been revered as a global hub for finance.

Driven by a commitment to maintain its prominence in the financial sector, this alpine nation has actively fostered an environment that nurtures innovation in digital assets. We delve into Switzerland's notable strides in attracting leading blockchain companies that are shaping the landscape of digital asset innovation.

Switzerland, renowned for its precision and innovation, stands as a beacon of stability, security, and support in the realm of digital assets. At present, Switzerland's Crypto Valley, encompassing Zug, Zurich, Lugano, and Geneva, has cultivated a thriving ecosystem for digital assets, hosting over 1,000 companies, including 9 unicorns, and boasting a combined valuation of around $185 billion. The impressive figures speak for themselves.

Source: https://www.cvvc.com/insights#top50

Now, what is it about Switzerland that entices an ever-growing number of blockchain firms?

Solid regulatory structure

At the core of Switzerland's ecosystem lies the esteemed Swiss Financial Market Supervisory Authority (FINMA), which plays a pivotal role in shaping the digital asset landscape by providing clear guidelines and frameworks. In 2018, FINMA issued ICO guidelines, establishing a solid foundation of regulatory clarity and setting the stage for Switzerland's digital asset endeavors. The introduction of the Swiss DLT legal framework in 2021 further solidified Switzerland's pioneering position by enabling collective and segregated custody of digital assets. Switzerland's regulatory environment fosters innovation and attracts businesses seeking stability and support. This regulatory oversight also presents significant advantages for non-custodial companies like Chorus One.

Switzerland's regulatory prowess, lauded by Ilya Volkov, Board Member at Crypto Valley Association and CEO of Youhodler, lies in its rational and sensible approach. A key merit, Volkov notes, lies in Switzerland's well-defined and precise classification of securities, which helps prevent the confusion experienced in the US with certain cryptocurrencies. The country's early implementation of the EU Transfer of Funds Regulation (TFR) as the Travel Rule further exemplifies its proactive and forward-thinking regulatory stance.

A structural advantage of Switzerland's regulatory structure is that FINMA is the sole regulatory body covering nearly all crypto services (banking, ICO, staking, trading and money transmission). This unification prevents turf wars between regulators. Contrast this to the US system where different regulators - the SEC, CFTC, FinCEN and the state financial regulators - control different aspects of crypto services. When rule-making is fractured across different bodies, turf wars emerge - which regulator has jurisdiction over what element of the new industry. Turf wars in the US have trapped the crypto-industry into spending way more effort into lobbying and lawyers, than is merited by the small size of the industry.

Switzerland is also unique in having issued banking licenses to new “crypto-banks”. These banking licenses enable crypto-organizations to offer crypto custody, staking, crypto structured products and other services, while also benefiting from the brand stability provided by such a license. This move is unique in the world, where contrasting examples (like the US) are actively curtailing crypto-friendly banks. Infact, our private conversations with Swiss banking partners indicate that 2023 has been an excellent year for Swiss crypto-banks, as they are the only institutions that could capitalize on the failures of SVB, Silvergate and Signature Bank in the US.  

According to Volkov, Switzerland's regulatory edge also extends to asset tokenization, enabling businesses to issue shares easily in token form and embracing NFTs for Intellectual Properties. This clarity propels Switzerland to the forefront of such initiatives globally. As a result, the country experiences a continuous surge in crypto adoption. Major players like AXA and Atupri accept crypto payments, while Crypto-ATM expansion and the availability of crypto purchases in post offices and Kiosks contribute to Switzerland's crypto-friendly ecosystem.

Business-friendly and Collaborative approach

Tomas Matta, Chorus One’s Chief Financial Officer, highlights Switzerland's business-friendly approach when working with regulators and tax authorities. This means that authorities are open to engaging in dialogue, particularly in uncertain or unregulated areas.

A notable example is Switzerland's approach to Value Added Tax (VAT) for staking providers. Tax authorities in general might struggle with new aspects and complexity that blockchain transactions such as staking rewards introduce, which can often lead to a fiscally suffocating environment for companies (planning to be) active in these spaces. The Swiss tax authorities have a progressive approach by investing time and effort to adequately understand the technologies and transactions, being open to dialogues with different parties and finding solutions. This transparency and room for dialogue, coupled with low corporate taxes, have fostered a diverse ecosystem of digital asset-only banks, traditional financial institutions, and service providers offering a range of services such as custody, trading, and staking.

Another hidden advantage for Switzerland, in matters of tax policy, is that the nation doesn't not levy capital gains taxes on assets for private investors, unless those gains are derived from short term professional trading. Hence, private investors are able to take full benefits of huge booms in crypto asset prices during bull markets.

Another driving factor in the prominence of Crypto Valley is the existence of a very unique collaborative mindset. This is heralded by ecosystem builders who drive and build interconnection each day such as CV Labs of which Fabiola Luna Huerta is ecosystem manager. She outlines that  “Companies, academics, federal institutions and a supportive business environment collaborate - offering expertise, networks and shared access which is particularly vital when new stakeholders enter’.  Fabiola also highlights that “Crypto Valley ranked No1 in CoinDesks recent ranking of Global crypto Hubs, it had the highest ranking in the two heaviest weighted criteria overall, regulatory structure and quality of life”. Currently we have over 1135 blockchain related companies in the Valley and the number keeps growing as Switzerland is one of the best places in the world to set up, make connections, live freely and work smart with global talents in a decentralized way.

"Switzerland placed No1 in the Crypto Hubs 2023 rating by CoinDesk.  This result is not an overnight miracle but the sustained work of multiple stakeholders building the Swiss ecosystem over the past 10 years”. -  Fabiola Luna Huerta

Ever-growing digital asset ecosystem

The Swiss Digital Asset Custody Report 2023 serves as a testament to Switzerland's prowess, showcasing the extensive depth and breadth of this ecosystem. Among the 34 identified providers, established players like Bitcoin Suisse and Crypto Finance stand alongside emerging forces such as Berner Kantonalbank (BEKB). Traditional Swiss financial institutions like Luzerner Kantonal Bank have also embraced the digital wave, expanding their custody services for digital investment products and propelling a remarkable surge in offerings.

Switzerland's Digital Asset Ecosystem (2022)
Switzerland's Digital Asset Ecosystem (2023)

(Illustration: Increase in digital asset institutions in Switzerland 2022 vs 2023)

Switzerland's home to numerous network foundations and collaborative peers like Interchain Foundation (Cosmos), Ethereum, Near, Aragon, Bancor, Solana, 21Shares, Aave, Curve, and others  further facilitates the collaboration among like-minded innovators in the region.

Switzerland's Competitive Edge

While Switzerland’s dedication to embracing blockchain-based technology has propelled it to the forefront of crypto regulation, European rivals are eagerly vying for a position in the market.

Liechtenstein has had its DLT legal framework in place for several years, and countries like Malta, Germany, France, and Luxembourg are also taking steps to embrace digital assets. In the summer of 2021, Deutsche Börse's majority stake acquisition in Crypto Finance from Switzerland demonstrated the German stock market's commitment to establishing an institutional and regulated crypto exchange. France, as one of the first countries to regulate the use of blockchain/DLTs, issued the PSAN (Prestataires de Services sur Actifs Numériques), a comprehensive framework for digital assets. Earlier this year, the European Parliament approved the MiCA Law, representing the EU's first regulatory framework to monitor and regulate crypto-asset transfers. MiCA’s positive impact is already apparent, with significant developments such as Deutsche Bank's application for a Digital Asset Custody License from Bafin.

Nevertheless, Switzerland's independence from the regulatory confines of the European Union grants it the agility and freedom to swiftly adapt and embrace a progressive approach to governing the sector. Additionally, the close ties that many Crypto Valley companies have with the EU equip them with the necessary expertise to navigate regulatory changes efficiently, building upon their prior experience with regulatory clarity. Consequently, the Swiss nation is poised to maintain its leading position in Europe by spearheading regulatory advancements in the digital asset realm.

As the global regulatory landscape for cryptoassets undergoes transformations in both major and emerging economies, the concerted efforts of esteemed financial centers, including Switzerland, in establishing frameworks that attract and promote the thriving crypto economy serve as compelling evidence that digital assets have solidified their status as an institutional asset class.

Moreover, Switzerland's allure extends beyond its regulatory advantages. With a neutral, stable social climate, a consistent political system, robust infrastructure, reputable universities, and an exceptional quality of life, it stands as a sophisticated destination of choice for global stakeholders.

A heartfelt thank you to Ilya Volkov, Board Member at Crypto Valley Association and CEO of Youhodler, and Fabiola Luna Huerta, Ecosystem Manager at CV Labs, for sharing their valuable insights on Switzerland's alluring digital asset ecosystem.

About Chorus One

Chorus One is one of the biggest institutional staking providers globally operating infrastructure for 40+ Proof-of-Stake networks including Ethereum, Cosmos, Solana, Avalanche, and Near amongst others. Since 2018, we have been at the forefront of the PoS industry and now offer easy enterprise-grade staking solutions, industry-leading research, and also invest in some of the most cutting-edge protocols through Chorus Ventures.

MEV Matters: Decoding Chorus One’s winning MEV strategy
We explore Chorus One's achievements and solutions in the MEV realm
July 19, 2023
5 min read

The staking economy is a thriving industry, offering over $12 billion in rewards, with $600 million attributed to Maximal Extractable Value (MEV). At Chorus One, we deeply recognize the significance of MEV for both validators and investors, which has fueled our commitment to continuously optimize our infrastructure to ideally integrate with the Ethereum MEV pipeline.

Source: https://ethereum.org/en/developers/docs/mev/

MEV serves as a gateway for validators to maximize the value extracted from transactions within a block. As early as 2019, the research paper "Flash Boys 2.0," authored by Ari Juels and Lorenz Breidenbach, shed light on its real-world impact, particularly in decentralized exchanges and user experiences. The cumulative value of MEV extracted on Ethereum alone surpassed $78 million in early 2021 and has skyrocketed to an astonishing $600 million in 2023.

MEV has become a cornerstone of Chorus One's research efforts. As one of the earliest and most influential contributors to MEV research, we conduct in-house studies and experiments to optimize MEV yield. Notably, we were commissioned by dYdX to produce an in-depth report on MEV within dYdX v4, and released the first public tracker of (pre-protorev) MEV on Osmosis (@chorusonemev). Furthermore, we have developed a customized version of the Solana client to capture MEV opportunities on the Solana network.

To achieve the highest possible MEV yield, employing effective infrastructure strategies is paramount. At Chorus One, we conduct a series of experiments to identify the most efficient combination of strategies, aiming to optimize our MEV performance. Below, we delve into the fundamentals of MEV extraction, exploring the solutions we implement to improve our performance.

Block builders vs Validators : Who’s who?

In general, MEV empowers block producers to rearrange, include, or exclude transactions, providing advantages that can impact users. However, there is a subtle distinction in how MEV operates on Ethereum compared to other blockchain networks.

On Ethereum, the process involves a 'block builder' constructing the block, which is then passed on to a 'relay' before being proposed by a validator. This Proposer-Builder Separation (PBS) introduces a separation between the block producer and the proposer. As an Ethereum validator, Chorus One focuses on optimizing MEV rewards by fine-tuning our interaction with relays.

Conversely, on most other chains, validators themselves build the block and have the freedom to prioritize transaction sorting to maximize MEV rewards.

Illustrating Chorus One’s MEV Performance on Ethereum

We continuously optimize our infrastructure to capture the highest possible MEV rewards.

The following graph illustrates our performance over a 60-day period. Over this time period, Chorus One nodes have captured close to 14% more MEV rewards per validator (ETH) when compared to the weighted industry average, observed on Lido.

*Please note that this is a snapshot, and that MEV rewards fluctuate as a function of variance and market conditions. Please visit Rated Network to view the latest figures.

This process of continuous infrastructure optimization highlights the significance of employing a combination of well-established best practices to achieve higher MEV rewards. By utilizing specific methods in tandem, validators can effectively maximize their MEV yield. More on this below.

But first, how does MEV extraction work?

Before diving into Chorus One's approach, we briefly explore the process of extracting MEV. It involves key players with distinct roles:

Block Producers: They create blocks of transactions on the blockchain, deciding which transactions to include and their order.

Relays: A relayer is an entity responsible for checking blocks before passing them to the block producers. The relay confirms the builder blocks for validity and estimate the MEV-related value of each block. By tweaking how block producers/validators interface with relays, they can add value by optimizing MEV rewards.

Searchers: These individuals or automated bots constantly monitor the blockchain, searching for profitable opportunities to manipulate transaction order and earn additional profits through MEV.

DApps and Protocol Developers: Decentralized applications (DApps) and the developers who create rules for block producers support MEV extraction. DApps create opportunities for MEV extraction through their design, while protocol developers establish rules that enable block producers to capture MEV.

In simpler terms, block producers create blocks,relays check the blocks, searchers seek ways to profit by manipulating transaction order, and DApps and protocol developers provide the framework and incentives for MEV extraction.

Source: https://info.etherscan.com/exploring-the-world-of-mev/

Validators often employ similar solutions to increase rewards and actively seek optimization opportunities. For instance, MEV-Boost, an implementation of proposer-builder separation (PBS) developed by Flashbots for Ethereum, enables validators to maximize staking rewards by selling block space to builders in an open market.

MEV-Boost is free, open-source, and neutral software designed to democratize MEV while minimizing associated negative implications, such as consensus-layer security risks, centralization, or the risk of searchers going rogue. For more information on MEV-Boost software, visit https://boost.flashbots.net.

MEV plays a significant role in yield generation on networks like Ethereum, and as a result, our nodes are MEV-boost enabled by default.

Chorus One’s strategies for MEV extraction

With a team of in-house experts, we continuously adjust our infrastructure to optimally integrate with the Ethereum MEV pipeline.

1. Relay Selection

Relays are crucial intermediaries in the MEV extraction process, acting as trusted connectors between block builders and validators. Their primary role is to facilitate seamless data exchange and ensure the selection of the most lucrative bids for validators. We continuously conduct experiments to identify the optimal combination of relays (as shown in the relay market dashboard below) , aiming to establish efficient communication and achieve the highest valid bid submission to validators.

Our approach: By carefully selecting the best relays, we enable our validators to receive winning bids from all connected relays.

MEV-Boost relay market. Source: https://mevboost.pics

2. Latency Games

Exploring the dynamics between builders, relays, and validators is even more interesting with a new dimension: time.

Latency, the delay in data transmission, has gained significant importance for relays and the entire MEV supply chain, leading to notable consequences. It acts as a centralizing force within the MEV supply chain, with relays having shorter latency likely to be more successful in auctions. This preference encourages builders to prioritize sending their blocks to those relays.

Our approach: We optimize our connection to relays when requesting blocks by prioritizing payoff and minimizing the probability of a missed slot.

3. Infrastructure Optimization

On the infrastructure and hardware front, we prioritize optimizing the performance of our validators. Through the strategic selection of hardware, geographical distribution, and client implementation, we ensure that our infrastructure operates at its peak efficiency. This optimization enhances the rewards generated for our customers.

Our approach: We are actively investing in and expanding our infrastructure to further elevate performance and rewards.

Why does MEV performance matter?

TL;DR: More rewards, more revenue.

Through our unique solutions and ongoing research, we continuously push the boundaries to enhance the rewards obtained through MEV. Today, our MEV-boost enabled nodes capture significantly higher APR on staked ETH, surpassing the yield of the average validator.

 To learn more about our approach to MEV, visit: https://chorus.one/mev-maximum-extractable-value

To stake with Chorus One, reach out to staking@chorus.one and we'll get back to you.

About Chorus One

Chorus One is one of the biggest institutional staking providers globally operating infrastructure for 45+ Proof-of-Stake networks including Ethereum, Cosmos, Solana, Avalanche, and Near amongst others. Since 2018, we have been at the forefront of the PoS industry and now offer easy enterprise-grade staking solutions, industry-leading research, and also invest in some of the most cutting-edge protocols through Chorus Ventures.

 Join our mailing list to receive our latest updates, research reports, and industry news.

Want to be a guest?
Drop us a line!

Submit
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.