We will update Ithacanet to Jakarta protocol at block 765,952. The first Jakarta cycle will be cycle 187. This should happen on June 28th a few hours before the mainnet upgrades to Jakarta as well.
In order to remain on the network, every ithacanet baker must do the following:
- upgrade to octez 13.0
- turn on the jakarta baker alongside the ithaca baker
- configure the jakarta user-activated upgrade
Configuring the user activated upgrade requires a change to the tezos json configuration.
The tezos json configuration file is typically at ~/.tezos-node/config.json
but may be in a different location.
To add the jakarta user-activated upgrade, issue the following command:
tezos-node config update --network https://teztnets.xyz/ithacanet
If your config file is not at the default location, add --config-file /path/to/config.json
to the command above.
You should now see the following in your config.json:
"network": {
"chain_name": "TEZOS_ITHACANET_2022-01-25T15:00:00Z",
"genesis": {
"block": "BLockGenesisGenesisGenesisGenesisGenesis1db77eJNeJ9",
"protocol": "Ps9mPmXaRzmzk35gbAYNCAw6UXdE2qoABTHbN2oEEc1qM7CwT9P",
"timestamp": "2022-01-25T15:00:00Z"
},
"user_activated_upgrades": [
{
"level": 8191,
"replacement_protocol": "Psithaca2MLRFYargivpo7YvUr7wUDqyxrdhC5CQq78mRvimz6A"
},
{
"level": 765952,
"replacement_protocol": "PtJakart2xVj7pYXJBXrqHgd82rdkLey5ZeeGwDgPp9rhQUbSqY"
}
],
"sandboxed_chain_name": "SANDBOXED_TEZOS",
"default_bootstrap_peers":
[ "ithacanet.teztnets.xyz", "ithacanet.smartpy.io",
"ithacanet.boot.ecadinfra.com", "ithacanet.kaml.fr",
"ithacanet.stakenow.de:9733", "ithacanet.visualtez.com" ],
"genesis_parameters": {
"values": {
"genesis_pubkey": "edpkuYLienS3Xdt5c1vfRX1ibMxQuvfM67ByhJ9nmRYYKGAAoTq1UC"
}
}
}
A restart of the node is required for the configuration change to take effect.