Protocol Oxford¶
This page documents the changes brought by protocol Oxford with respect to Nairobi (see Protocol naming).
The code can be found in directory src/proto_018_Proxford of the master
branch of Octez.
Contents
Environment Version¶
This protocol requires a different protocol environment version than Nairobi. It requires protocol environment V10, compared to V9 for Nairobi.
Smart Rollups¶
Add the support for bootstrapped smart rollups in storage initialization, similarly to bootstrapped accounts and smart contracts. (MR !8552)
Remove the origination proof from the smart rollups’ origination operation. (MR !8817)
The field
commitment
in the operationSc_rollup_cement
is now removed. It was no longer used and was deprecated in Nairobi. This also mean that the commitment does not need to be provided in the client command. (MR !8850)- Before::
./octez-client cement commitment <commitment hash> from <src> for smart rollup <smart rollup address>
- Now::
./octez-client cement commitment from <src> for smart rollup <smart rollup address>
Enable the latest version of the WASM PVM (
2.0.0-r2
). Existing smart rollups will see their PVM automatically upgrade, and newly originated smart rollups will use this version directly (MR !9051)Add one new host function to the WASM PVM:
store_exists
(MR !9204).Remove dead refutation games at migration time. A game is dead if both players are no longer staking. (MR !8975)
Reduce cost for internal transaction to smart rollup (MR !9284)
Remove dead refutation games at migration time. A game is dead if both players are no longer staking. (MR !8975)
Data Availability Layer (ongoing)¶
Gossipsub (MR !9123)
Adaptive Issuance (ongoing)¶
This protocol asks the bakers to set their votes for the adoption of the adaptive issuance feature. They may use the per-block votes file, or CLI option
--adaptive-issuance-vote
. If they do not vote for the adaptive issuance feature, the vote defaults to “pass” (unlike for the liquidity baking vote, which is mandatory).Introduce feature flag for Adaptive Issuance. (MR !8566)
Add parameter
limit_of_staking_over_baking
as the limit of co-staked tokens over the baked tokens for a given baker. (MR !8744)
When the feature flag is enabled, the following extra changes happen:
Most rewards (baking rewards, baking bonuses, attestation rewards, revelation rewards) are paid on the frozen deposits balance rather than the spendable balance. Manager operations fees and denunciation rewards are still paid on the spendable balance. (MR !8091)
Multiplicative coefficient (with a dynamic part) applied to reward values. (MRs !8860, !8861)
Denunciation rewards computation updated to depend on
limit_of_staking_over_baking
. (MR !8939)EMA and launch cycle. (MRs !8967, !9002, !9025, !9058, !9071, !9074, !9087)
Staking, deposits and supply. (MRs !8940, !8957, !8958, !8965, !8966, !8973, !9000, !9014, !9015, !9018, !9022, !9023, !9031, !9033, !9039, !9040, !9044, !9052, !9054, !9055, !9069, !9089, !9091, !9093, !9241, !9277, !9298, !9299, !9301, !9303, !9304, !9312, !9319, !9330, !9351, !9365, !9321, !9367, !9376, !9383, !9386, !9387, !9403, !9406, !9407, !9408, !9420, !9456, !9482, !9498, !9499, !9511, !9513, !9523, !9531, !9533, !9537, !9539, !9543, !9544, !9547, !9564, !9577, !9611)
New RPCs introduced: total supply, rewards, total frozen stake, inflation, launch cycle, unstaked frozen deposits, unstaked requests, staking parameters (MRs !8982, !8983, !8995, !8997, !9057, !9243, !9409, !9419)
Gas improvements¶
Gas model improved for smart rollups origination. (MR !9020)
Gas parameters related to
Comb
instruction updated. (MR !9046)More accurate gas model for integer division. (MR !8666)
Improved gas model for type comparison with
TY_EQ
. (MR !9121)Improved gas model for
Michelson_v1_gas_costs.cost_N_KMap_enter_body
. (MR !9283)
Breaking Changes¶
Operation
Set_deposits_limit
removed. (MR !8831)Protocol parameter
ratio_of_frozen_deposits_slashed_per_double_endorsement
is converted from the ratio1/5
into the percentage50%
and renamed topercentage_of_frozen_deposits_slashed_per_double_attestation
. (MRs !8753, !9440)Protocol parameter
double_baking_punishment
is converted from a fixed value of640tz
into the percentage11%
and renamed topercentage_of_frozen_deposits_slashed_per_double_baking
. (MR !8753)Since protocol Ithaca, the ratio of delegated tez over the delegate’s frozen deposit must be at most 9. Until now, this was ensured by a protocol parameter named
frozen_deposits_percentage
(whose value is 10%) representing the minimal percentage of frozen deposit. We convert it from a percentage to a factor namedlimit_of_delegation_over_baking
whose value is 9. (MR !8884)The frozen deposits are not computed automatically from the baker’s total stake (own tokens and delegated ones). Hence there are no automatic transfers of the baker’s spendable balance to their frozen deposits. Bakers need to use the
stake
pseudo-operation to increase their frozen deposits. (MR !8087)Receipts involving the
Deposits
kind of balance are updated in a non-backward-compatible manner. It allows non-delegates, and distinguishes updates to a delegate’s balance from sharing of rewards and punishments. (MR !9498)Field
for_double_endorsing
from context storage has been renamed intofor_double_attesting
. (MR !9486)Field
endorsing_reward_per_slot
from rewards storage has been renamed intoattesting_reward_per_slot
. (MR !9486)Field
missed_endorsements
from contract storage has been renamed intomissed_attestations
. (MR !9486)Fields
preendorsements_seen
,endorsements_seen
anddouble_endorsing_evidences_seen
from the mempool’soperation_state
encoding has been renamedpreattestations_seen
,attestation_seen
anddouble_attesting_evidences_seen
. (MR !9440)endorsement
renamed toattestation
in the protocol codebase. (MRs !9362, !9364, !9425)
RPC Changes¶
Split duplicated argument
pkh
in RPCsmart_rollups/smart_rollup/<address>/staker1/<pkh>/staker2/<pkh>/timeout
andsmart_rollups/smart_rollup/<address>/staker1/<pkh>/staker2/<pkh>/timeout_reached
into/staker1/<staker1_pkh>/staker2/<staker2_pkh>
. This changes the RPC description but not its use. (MR !8339)Update context with new reward parameters. This changes the JSON from the RPC
/chains/main/blocks/head/context/constants
. (MR !8657)Remove the RPC for computing smart rollups’ origination proofs
smart_rollups/all/origination_proof
. (MR !8817)Add the consensus key’s public key to the reponse of the
../context/delegates/<delegate_pkh>/consensus_key
RPC. (MR !8856)Three new variants of the
voting_power
RPC (which returns the voting power of a delegate based on the stake it had when voting snapshot was taken) have been added:Two new variants of the
voting_power
RPC (which returns theexpected_endorsing_rewards
field from/participation
RPC has been renamed inexpected_attesting_rewards
.
Operation receipts¶
To handle the new staking pseudo-operations, the following changes to receipts have been made:
the
Deposits
kind of balance, which used to be associated to the public key hash of a delegate, has been generalized to handle non-delegate staking and sharing of rewards and punishments; it is now associated to either aSingle
delegator (represented by a pair of the delegator address and its delegate public key hash) orShared
between all the delegators of a given delegate in proportion to their stake (represented by the public key hash of the delegate). (MR !9498)a new
Unstaked_deposits
kind of balance has been added to represent tez for which unstaking has been requested. This kind of balance is associated with the cycle at which the tez become liquid and, like in theDeposits
case, it is either associated with aSingle
delegator orShared
between a delegate and its delegators. (MR !9498)
Bug Fixes¶
Fix the JSON field
kind
of the smart rollup preveal encoding. This constant field was wrongfully set for themetadata
andrequest_dal_page
case. (MR !9307)
Minor Changes¶
Improve the error for implicit account type check. (MR !7714)
Remove infinite source
Double_signing_evidence_rewards
and take reward from the punishment instead. (MR !7758)Remove zero tickets from a big map of a mainnet contract during migration. (MR !8111)
Add a
Stake
operation, implemented as an entrypoint of external operations to implicit accounts, for delegates only. (MR !8120)Add a Total supply counter in the storage. (MRs !8732, !8739)
Allow to choose the bootstrapped contracts hashes. (MR !9176)
Rename
endorsement
intoattestation
in protocol errors (MR !9192)
Internal¶
Fail earlier when a smart rollup commitment is in conflict when cementing. (MR !8128)
split smart rollup origination fct for readibility. (MR !8276)
Remove the deprecated and unused
tx_rollup_l2_address
Michelson type. (MR !8546)Add an internal represention case for the
UNIT
Michelson instruction. (MR !8579)Encoding that supports
endorsement
kind in JSON are now suffixed with_with_legacy_attestation_name
. Non legacy encoding supportsattestation
kind. (MRs !8563, !8531)Michelson: remove legacy behaviour related to contract type. (MR !5800)
Michelson: cleanup legacy annotation management. (MR !8208)
Michelson: refactor management of metadata in ty smart constructors. (MR !8420)
Michelson: remove unused deprecated tx_rollup_l2_address type. (MR !8546)
Michelson: type of
cost_UNPARSE_TYPE
changed to match with the other cost functions inmichelson_v1_gas_costs.ml
. (MR !7529)Rename
source
intosender
. (MR !7373)Improve efficiency of solving the baker PoW challenge. (MR !8403)
Refactor declarations of
make_empty_context
andmake_empty_tree
for easier use. (MR !8550)Move notions of Smart rollup address and various smart rollup hashes types to the shell to make them common to all protocols though the environment. (MR !8562, MR !8625)
Refactoring : stake splitted between a frozen part and a delegated part. (MRs !8051, !8885)
Refactoring : rewards computed as a relative portion of the total amount of tez rewarded per minute (about 85tez/min). (MR !8657)
Introduce the notion of rollups “machine” which can compute the semantics of a given rollup, but cannot be used to generate or verify proof. (MR !8815)
Consensus: optimized validation of attestations by maintaining a set of forbidden delegates instead of checking through an I/O that the delegate has a sufficient frozen deposit. (MR !8722)
Refactor punishing transfers to be closer to each other. (MR !7759)
Remove almost all transaction rollup logic from the protocol. (MR !8466)
Fix encoding names for rewards. (MR !8716)
Use
pair
type instead of*`
for Michelson pairs. (MR !8720)Add new function
of_list
to build a Merkle list. (MR !8853)Improve some aspects in the PlonK code. (MR !8730)
Store a history of percentages of slashed deposits. (MR !8828)
Renaming the
endorsement_power
andpreendorsement_power
fields from consensus operation receipt toconsensus_power
in the non legacy encoding. (MR !8531)Improve storage cleaning at the end of a refutation game. (MR !8881)
version_value
moved fromraw_context.ml
toconstants_repr.ml
. (MR !8867)Transaction rollup: removed left parameters (!8700)
balance_update_encoding
now outputattesting rewards
andlost attesting rewards
in JSON.balance_update_encoding_with_legacy_attestation_name
has been added and output legacyendorsing rewards
andlost endorsing rewards
. (MR !9251)