-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSE: Include symbolic contracts corresponding to
contract
fields in…
…to accounts (#600) * Draft implementation and test for `contract` field accounts inclusion * Set Version: 0.1.301 * Set Version: 0.1.301 * Set Version: 0.1.302 * Use (simple) `#lookup` constraint for `contract` field in storage * Minor formatting * Set Version: 0.1.303 * Draft implementation refactoring * Set Version: 0.1.306 * renaming contracts to avoid conflicts, removing unneeded constraints * minor streamlining * Set Version: 0.1.307 * Set Version: 0.1.308 * removing unused variable * renaming re-assigned variable * Make `_create_cse_accounts` apply recursively on `contract` field accounts * Code quality improvement * Set Version: 0.1.309 * Avoid adding new accs for constructors, add new CSE test for recursive storage building * Enforce same symbolic storage variable name between constructor and functions * tests with immutables * stabilising tests * Set Version: 0.1.309 * Update expected output, remove `Accounts` test * Update `contracts.k` expected output to reflect removal of `Accounts` * Set Version: 0.1.310 * Use default symbolic storage var name for constructor storage with CSE * Documented `_create_cse_accounts` * One other output update * Set Version: 0.1.311 * Apply refactoring from review comments * Apply refactoring from review comments, preserve `new_init_cterm` * Add test for recursive storage generation in new accounts * Update output to account for TGovernance * correction --------- Co-authored-by: devops <[email protected]> Co-authored-by: Petar Maksimović <[email protected]> Co-authored-by: Petar Maksimovic <[email protected]> Co-authored-by: rv-jenkins <[email protected]>
- Loading branch information
1 parent
304c658
commit 71adb1a
Showing
16 changed files
with
1,646 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.310 | ||
0.1.311 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "kontrol" | ||
version = "0.1.310" | ||
version = "0.1.311" | ||
description = "Foundry integration for KEVM" | ||
authors = [ | ||
"Runtime Verification, Inc. <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
if TYPE_CHECKING: | ||
from typing import Final | ||
|
||
VERSION: Final = '0.1.310' | ||
VERSION: Final = '0.1.311' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.