-
Notifications
You must be signed in to change notification settings - Fork 2
refactor(deploy): migrate deploy constants to the per-version snapshot canon #253
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
Open
thedavidmeister
wants to merge
7
commits into
main
Choose a base branch
from
fix/deploy-constants-snapshot-canon
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
627c609
refactor(deploy): migrate deploy constants to the per-version snapsho…
thedavidmeister d1f2f50
refactor(deploy): use the shared LibSnapshot instead of a local copy
thedavidmeister e318d66
fix(deploy): complete the release record — real codehash, creation + …
thedavidmeister 68531c7
refactor(script): use LibCodeGen.addressConstantString, drop the loca…
thedavidmeister 3b59115
refactor(deploy): generated files are not pointers
thedavidmeister 48175ec
refactor(script): name the build fns for the record they build
thedavidmeister 865a49e
Merge remote-tracking branch 'origin/main' into fix/deploy-constants-…
thedavidmeister File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| // SPDX-License-Identifier: LicenseRef-DCL-1.0 | ||
| // SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd | ||
| pragma solidity ^0.8.25; | ||
|
|
||
| // THIS FILE IS AUTOGENERATED BY ./script/BuildPointers.sol | ||
|
|
||
| // This file is committed to the repository because there is a circular | ||
| // dependency between the contract and its pointers file. The contract | ||
| // needs the pointers file to exist so that it can compile, and the pointers | ||
| // file needs the contract to exist so that it can be compiled. | ||
|
|
||
| /// @dev Hash of the known bytecode. | ||
| bytes32 constant BYTECODE_HASH = bytes32(0x0000000000000000000000000000000000000000000000000000000000000000); | ||
|
|
||
| /// @dev Address of the log tables data contract deployed via Zoltu's | ||
| /// deterministic deployment proxy. Identical across all EVM networks. | ||
| address constant LOG_TABLES_DEPLOYED_ADDRESS = address(0xc51a14251b0dcF0ae24A96b7153991378938f5F5); | ||
|
|
||
| /// @dev Runtime codehash of the deployed log tables data contract. | ||
| bytes32 constant LOG_TABLES_DEPLOYED_CODEHASH = 0x2573004ac3a9ee7fc8d73654d76386f1b6b99e34cdf86a689c4691e47143420f; | ||
|
|
||
| /// @dev Address of the DecimalFloat contract deployed via Zoltu's | ||
| /// deterministic deployment proxy. Identical across all EVM networks. | ||
| address constant DECIMAL_FLOAT_DEPLOYED_ADDRESS = address(0xBee0eEFaffD046c9602109eB30A858Be301CC926); | ||
|
|
||
| /// @dev Runtime codehash of the deployed DecimalFloat contract. | ||
| bytes32 constant DECIMAL_FLOAT_DEPLOYED_CODEHASH = 0x7a93d0311f7782b44157ba40e94ec936085ebe001c7893bdd74911c8351d3def; |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| // SPDX-License-Identifier: LicenseRef-DCL-1.0 | ||
| // SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd | ||
| pragma solidity ^0.8.25; | ||
|
|
||
| // THIS FILE IS AUTOGENERATED BY ./script/BuildPointers.sol | ||
|
|
||
| // This file is committed to the repository because there is a circular | ||
| // dependency between the contract and its pointers file. The contract | ||
| // needs the pointers file to exist so that it can compile, and the pointers | ||
| // file needs the contract to exist so that it can be compiled. | ||
|
|
||
| /// @dev Hash of the known bytecode. | ||
| bytes32 constant BYTECODE_HASH = bytes32(0x0000000000000000000000000000000000000000000000000000000000000000); | ||
|
|
||
| /// @dev Address of the log tables data contract deployed via Zoltu's | ||
| /// deterministic deployment proxy. Identical across all EVM networks. | ||
| address constant LOG_TABLES_DEPLOYED_ADDRESS = address(0xc51a14251b0dcF0ae24A96b7153991378938f5F5); | ||
|
|
||
| /// @dev Runtime codehash of the deployed log tables data contract. | ||
| bytes32 constant LOG_TABLES_DEPLOYED_CODEHASH = 0x2573004ac3a9ee7fc8d73654d76386f1b6b99e34cdf86a689c4691e47143420f; | ||
|
|
||
| /// @dev Address of the DecimalFloat contract deployed via Zoltu's | ||
| /// deterministic deployment proxy. Identical across all EVM networks. | ||
| address constant DECIMAL_FLOAT_DEPLOYED_ADDRESS = address(0x799632d282178e770C7465cad54aDA1021A913D6); | ||
|
|
||
| /// @dev Runtime codehash of the deployed DecimalFloat contract. | ||
| bytes32 constant DECIMAL_FLOAT_DEPLOYED_CODEHASH = 0xdc468883c345d41c0abd98ef2fd933c370bd1682522d37e6f6b729793301f55e; |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| // SPDX-License-Identifier: LicenseRef-DCL-1.0 | ||
| // SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd | ||
| pragma solidity ^0.8.25; | ||
|
|
||
| // THIS FILE IS AUTOGENERATED BY ./script/BuildPointers.sol | ||
|
|
||
| // This file is committed to the repository because there is a circular | ||
| // dependency between the contract and its pointers file. The contract | ||
| // needs the pointers file to exist so that it can compile, and the pointers | ||
| // file needs the contract to exist so that it can be compiled. | ||
|
|
||
| /// @dev Hash of the known bytecode. | ||
| bytes32 constant BYTECODE_HASH = bytes32(0x0000000000000000000000000000000000000000000000000000000000000000); | ||
|
|
||
| /// @dev Address of the log tables data contract deployed via Zoltu's | ||
| /// deterministic deployment proxy. Identical across all EVM networks. | ||
| address constant LOG_TABLES_DEPLOYED_ADDRESS = address(0xc51a14251b0dcF0ae24A96b7153991378938f5F5); | ||
|
|
||
| /// @dev Runtime codehash of the deployed log tables data contract. | ||
| bytes32 constant LOG_TABLES_DEPLOYED_CODEHASH = 0x2573004ac3a9ee7fc8d73654d76386f1b6b99e34cdf86a689c4691e47143420f; | ||
|
|
||
| /// @dev Address of the DecimalFloat contract deployed via Zoltu's | ||
| /// deterministic deployment proxy. Identical across all EVM networks. | ||
| address constant DECIMAL_FLOAT_DEPLOYED_ADDRESS = address(0x799632d282178e770C7465cad54aDA1021A913D6); | ||
|
|
||
| /// @dev Runtime codehash of the deployed DecimalFloat contract. | ||
| bytes32 constant DECIMAL_FLOAT_DEPLOYED_CODEHASH = 0xdc468883c345d41c0abd98ef2fd933c370bd1682522d37e6f6b729793301f55e; |
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.