diff --git a/packages/website/pages/docs/guides/enable-a-proposer.mdx b/packages/website/pages/docs/guides/enable-a-proposer.mdx index fb800dc2839..b199985fdb0 100644 --- a/packages/website/pages/docs/guides/enable-a-proposer.mdx +++ b/packages/website/pages/docs/guides/enable-a-proposer.mdx @@ -100,6 +100,16 @@ You can check all commands to see proposer logs in the [node runner manual](/doc +## Tokenomics + +The proposer orders (sequences) transactions in a block. Transaction fees to be included into a block are paid in ETH. +To extract as much MEV (Maximal Extractable Value) as possible paid in ETH, each proposer will try to search the mempool to: +``` +-✅ fit as many valid transctions into a block as possible +-💰 include transactions with the highest fees +``` +The proposer must then deliver their proposed blocks to a prover. + ## Videos - [Enable a proposer on your Taiko L2 node](https://www.youtube.com/watch?v=z3gWKEoJidw) (deprecated, but still useful) diff --git a/packages/website/pages/docs/guides/enable-a-prover.mdx b/packages/website/pages/docs/guides/enable-a-prover.mdx index d060819452e..3a97dfb6c78 100644 --- a/packages/website/pages/docs/guides/enable-a-prover.mdx +++ b/packages/website/pages/docs/guides/enable-a-prover.mdx @@ -123,6 +123,23 @@ Add your prover to the [prover registration page](/docs/reference/prover-market- +## Tokenomics + +When a prover receives a block from a proposer, the prover must bond TTKOj tokens to the TaikoL1 contract. +Once TTKOj is bonded, a countdown is started to prove the block. + +✅ If the prover is successful in proving the block in time, the prover will receive their bond back with additional TTKOj rewards. + +❌ If the prover fails to prove a block in time, part of their bonded TTKOj will be slashed. +Then a new prover will be given the chance to prove that block with the remaining TTKOj that wasn't slashed. + +🛒 A prover market has been added with testnet Jolnir. +This gives proposers the ability to pick provers based on: +``` +-fees paid in ETH +-competitive proving speed (reported from community reputation) +``` + ## Videos - [Enable and exit a prover on your L2/L3 node](https://www.youtube.com/watch?v=yAHpbmNEC0M) (deprecated, but still useful)