-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v25 protocol defense #774
Conversation
Co-authored-by: Raid Ateir <[email protected]>
Co-authored-by: Uacias <[email protected]> Co-authored-by: Mateusz Zając <[email protected]> Co-authored-by: Mateusz Zając <[email protected]>
chore(contracts): merge release 23 into dev
Merge main to dev
Co-authored-by: Stanislav Breadless <[email protected]>
Signed-off-by: Danil <[email protected]> Co-authored-by: Lyova Potyomkin <[email protected]> Co-authored-by: kelemeno <[email protected]> Co-authored-by: Stanislav Bezkorovainyi <[email protected]> Co-authored-by: Raid Ateir <[email protected]> Co-authored-by: kelemeno <[email protected]> Co-authored-by: Jmunoz <[email protected]> Co-authored-by: Bence Haromi <[email protected]> Co-authored-by: Danil <[email protected]>
Co-authored-by: tommysr <[email protected]>
Failing CI check is for coverage and for external contributors, they are not permissioned enough to run this check. The reason being Github doesn't allow granting anything except read for tokens, when PR is from fork https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
Merge Main into Dev
Merge main into dev
Signed-off-by: Danil <[email protected]> Co-authored-by: Bence Haromi <[email protected]> Co-authored-by: Grzegorz Prusak <[email protected]> Co-authored-by: Moshe Shababo <[email protected]> Co-authored-by: Akosh Farkash <[email protected]> Co-authored-by: Bruno França <[email protected]> Co-authored-by: Vlad Bochok <[email protected]> Co-authored-by: Roman Brodetski <[email protected]> Co-authored-by: vladbochok <[email protected]> Co-authored-by: Stanislav Bezkorovainyi <[email protected]> Co-authored-by: Danil <[email protected]>
Signed-off-by: Danil <[email protected]> Co-authored-by: otani <[email protected]> Co-authored-by: Zach Kolodny <[email protected]>
using stdToml for string; | ||
|
||
struct Config { | ||
address admin; | ||
address governor; | ||
} | ||
|
||
Config internal config; | ||
|
||
function initConfig() public { | ||
string memory root = vm.projectRoot(); | ||
string memory path = string.concat(root, "/script-config/config-accept-admin.toml"); | ||
string memory toml = vm.readFile(path); | ||
config.admin = toml.readAddress("$.target_addr"); | ||
config.governor = toml.readAddress("$.governor"); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems it's a merge artifact
@@ -145,7 +158,8 @@ fn insert_residue_elements_and_commitments( | |||
Ok(reg.render_template( | |||
&verifier_contract_template, | |||
&json!({"residue_g2_elements": residue_g2_elements, | |||
"commitments": commitments}), | |||
"commitments": commitments, | |||
"vk_hash": vk_hash}), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@koloz193 - but this vk_hash is not present in the verifier_contract_template.txt ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It’s one of the comments at the top
@koloz193 it's worth calling out explicitly the bootloader change to remove the 10k gwei limitation for the |
Signed-off-by: Danil <[email protected]>
Co-authored-by: Vlad Bochok <[email protected]>
feat: add timestamp asserter contract
…sserter-command fix: add deploy timestamp asserter command
v25 release changes
Bootloader
increase max_pubdata price and max_l2_price from 1M to 2^64
removed upgradesystemcontext method
Contracts
Scripts
Testing
Docs & comments
Dependencies