UNPKG

@chorus-one/ethereum

Version:

All-in-one toolkit for building staking dApps on Ethereum network

35 lines (33 loc) 984 B
/** * Contains the Ethereum validator addresses for Chorus One's vaults. */ export const CHORUS_ONE_ETHEREUM_VALIDATORS = { /** * Ethereum mainnet validator addresses. */ ethereum: { /** * The Obol Distributed Validator Technology (DVT) vault address. * This vault leverages Obol's DVT to provide enhanced resilience and decentralization for Ethereum staking. */ obolDvVault: '0xdbdee04c72a02a740b9f26ada9203582c8a99daf', /** * The MEV Max vault address. * This vault utilizes Chorus One’s proprietary [MEV Research](https://chorus.one/categories/mev) to enhance staking returns. */ mevMaxVault: '0xe6d8d8ac54461b1c5ed15740eee322043f696c08' }, /** * Hoodi testnet validator addresses. */ hoodi: { /** * Testnet vault */ mevMaxVault: '0x2148ffbc0a2d83f5e3605041f5b85d54305f803c', /** * Testnet vault */ obolDvVault: '0x2148ffbc0a2d83f5e3605041f5b85d54305f803c' } } as const