> ## Documentation Index
> Fetch the complete documentation index at: https://primev-24-validator-dashboard-intro.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to Primev

> Primev is building mev-commit; a credible commitment network used for preconfirmations & more

export const QuickStartCardFooter = ({children}) => <div className="text-sm">{children}</div>;

export const CardContent = ({children}) => <div className="text-sm" style={{
  height: "9rem"
}}>
    {children}
  </div>;

export const Separator = () => <div className="border-b border-0.5 border-gray-100 dark:border-gray-800 mb-4" />;

export const CardDescription = ({children}) => <div className="h-12 text-xs text-gray-600 dark:text-gray-400 flex items-center">
    {children}
  </div>;

export const QuickStartCard = ({children, title, icon}) => <div className="inline-card-header">
    <Card title={title} icon={icon}>
      {children}
    </Card>
  </div>;

## Get Started

Welcome to the starting point of your mev-commit journey!
Our quickstart guides are tailored to your specific role within the Ethereum ecosystem and designed to get you up and running quickly.
Choose the guide below that best aligns with your interests and needs:

<CardGroup cols={3}>
  <QuickStartCard title="Bidders" icon="user-bounty-hunter">
    <CardDescription>
      Searchers, Solvers, Rollup Provers, AA Bundlers, End Users
    </CardDescription>

    <Separator />

    <CardContent>
      For those looking to explore MEV opportunities, follow our Bidder Quickstart to learn how to
      efficiently identify and capture valuable transactions.
    </CardContent>

    <QuickStartCardFooter>
      • [Receive a Preconfirmation](/get-started/bidders/first-preconf)

      • [Bidder Node Commands](/get-started/bidders/bidder-node-commands)

      • [Bid Structure](/concepts/bids)

      • [Tools For Bid Submission](/developers/tools-for-bid-submission)

      • [Managing Your Bidder Deposit](/developers/bidder-deposit)
    </QuickStartCardFooter>
  </QuickStartCard>

  <QuickStartCard title="Providers" icon="network-wired">
    <CardDescription>
      Block Builders, Relays, Proposers, Rollup Sequencers
    </CardDescription>

    <Separator />

    <CardContent>
      Providers are the backbone of the Primev ecosystem. Start with our Provider's Quick Setup to
      optimize your block production and validation processes.
    </CardContent>

    <QuickStartCardFooter>
      • [Registering as a Provider](/get-started/providers/registering-a-provider)

      • [Consuming Bids](/get-started/providers/consuming-bids)

      • [Sending Commitments](/get-started/providers/sending-commitments)

      • [Commitments Structure](/concepts/commitments)

      • [Querying for Proposers](/get-started/providers/Querying-for-proposers)

      • [Relay Guide](/get-started/relays)
    </QuickStartCardFooter>
  </QuickStartCard>

  <QuickStartCard title="Validators" icon="ethereum">
    <CardDescription>
      L1 Ethereum validators
    </CardDescription>

    <Separator />

    <CardContent>
      Validators add ultimate credibility to commitments within the mev-commit network. Start here to participate in the mev-commit protocol as a Validator.
    </CardContent>

    <QuickStartCardFooter>
      • [Opting-in as a Validator](/get-started/validators)

      • [What is mev-commit?](/concepts/what-is-mev-commit)

      • [Validator considerations](/concepts/validator-considerations)

      • [mev-commit Testnet](/developers/testnet)
    </QuickStartCardFooter>
  </QuickStartCard>
</CardGroup>
