-
Notifications
You must be signed in to change notification settings - Fork 4
Feat/lzconstants #9
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
dhruvinparikh
wants to merge
34
commits into
FraxFinance:master
Choose a base branch
from
dhruvinparikh:feat/lzconstants
base: master
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 all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
30401bb
(feat): abs,apt,arb,aur,ava,base,mov
dhruvinparikh db8620b
(feat): bera,blast,bsc,ethereum,fraxtal,hype,ink,katana,linea,mode,op…
dhruvinparikh a375cc9
(chore): gen cosntants gile
dhruvinparikh eed5483
(chore): rm label for nonevm
dhruvinparikh c3d2096
Merge branch 'master' into feat/lzconstants
dhruvinparikh dd9e1b4
(chore): fix lint
dhruvinparikh 1339745
ci: update Node.js, pnpm, and actions to latest versions
dhruvinparikh 8414c13
ci: use pnpm 10 and --no-frozen-lockfile
dhruvinparikh b0f76f4
fix: add packages field to pnpm-workspace.yaml
dhruvinparikh 2b160f8
(chore): fix checksum
dhruvinparikh a717254
feat: add LZ infra, chain IDs, hops, monad, stable constants for frax…
dhruvinparikh ed76392
feat: add OFT ABI exports for frax-lz-mesh
dhruvinparikh 77a0078
feat: add all LZ ABIs (endpoint, ULN, hops, proxy admin, ERC20)
dhruvinparikh 441c832
build: add compiled JS for scripts/constants and scripts/abis
dhruvinparikh 86d33fd
refactor: remove LZ infra constants from chain files
dhruvinparikh b87c023
Merge branch 'master' into feat/lzconstants
dhruvinparikh 9f859f0
feat: add HopV2 constants and ABI for frax-lz-mesh scanner
dhruvinparikh cdd5efa
feat: add REMOTE_ADMIN_V2_ABI
dhruvinparikh 8ba0e17
feat: add REMOTEADMINV2 to fraxtal-l2 constants
dhruvinparikh 0dadde0
feat: add REMOTEHOPV2 and REMOTEADMINV2 for polygon, linea, plumephoe…
dhruvinparikh 14d7e3d
fix: correct REMOTEADMINV2 for linea, scroll, monad
dhruvinparikh 69c5873
feat: add REMOTEHOPV2 and REMOTEADMINV2 for zksync, abstract
dhruvinparikh e8a8df8
chore: remove fraxtalMsig from REMOTE_ADMIN_V2_ABI
dhruvinparikh 175c2ba
Re-Add Audited Functionality
tom2o17 c72590f
feat: add legacy OFT constants exports
dhruvinparikh de6078a
feat: add legacy OFT constants exports
dhruvinparikh 1c61acf
build: compile legacy OFT constants to JS
dhruvinparikh 08751f2
Merge upstream/master into feat/lzconstants
dhruvinparikh 4047277
Merge origin/feat/lzconstants into local feat/lzconstants
dhruvinparikh 3a7117f
Merge master into feat/lz-mesh-constants
dhruvinparikh 11ee765
Merge branch 'feat/lz-mesh-constants' into feat/lzconstants
dhruvinparikh dc5c23f
style: prettier format Constants.sol
dhruvinparikh dfa6d82
Merge feat/tempo-somnia-constants into feat/lzconstants
dhruvinparikh 2377c3e
chore: make .husky/pre-commit executable
dhruvinparikh 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 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,9 @@ | ||
| packages: [] | ||
|
|
||
| onlyBuiltDependencies: | ||
| - "frax-standard-solidity" | ||
| - "forge-std" | ||
| - "ds-test" | ||
| - "solmate" | ||
| - "solidity-bytes-utils" | ||
| - "@fraxfinance/layerzero-v2-upgradeable" |
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.
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.
CI installs dependencies with
--no-frozen-lockfileeven though apnpm-lock.yamlis present. This can make builds non-reproducible (and can pull newer transitive deps than what was reviewed). Preferpnpm install --frozen-lockfilein CI and ensure the lockfile is kept up to date in PRs.