Skip to content

Commit

Permalink
Merge pull request #237 from kroma-network/release/v1.0.3-base
Browse files Browse the repository at this point in the history
feat: merge `release/v1.0.3-base` to `main`
  • Loading branch information
0xHansLee authored Dec 15, 2023
2 parents 503ae2e + 906c51c commit 5fb28e1
Show file tree
Hide file tree
Showing 172 changed files with 8,073 additions and 3,224 deletions.
48 changes: 48 additions & 0 deletions .github/semantic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Config file for Semantic PRs
# See https://github.com/Ezard/semantic-prs

# Validate the PR title and all commit messages
titleAndCommits: true

# If commitsOnly or titleAndCommits is set to true, then only a single commit needs to pass validation instead of every commit
# If neither of those options are set to true then this option is ignored
anyCommit: true

# The values allowed for the "type" part of the PR title/commit message. e.g. for a PR title/commit message of "feat: add some stuff", the type would be "feat"
types:
- build
- chore
- ci
- docs
- feat
- fix
- perf
- refac
- test

# The values allowed for the "scope" part of the PR title/commit message. e.g. for a PR title/commit message of "feat(awesome-feature): add some stuff", the type would be "awesome-feature"
scopes:
- batcher
- chain-ops
- common-ts
- contracts
- core-utils
- e2e
- hardhat-deploy-config
- monitoring
- node
- service
- sdk
- signer
- validator

# Allow merge commits (e.g. 'Merge branch "master" into fix/delete-all-tests')
# If neither of commitsOnly or titleAndCommits is set to true then this option is ignored
allowMergeCommits: true

# Allow revert commits (e.g. 'Revert "fix: delete all tests"')
# If neither of commitsOnly or titleAndCommits is set to true then this option is ignored
allowRevertCommits: true

# Allows a custom URL for the "Details" link (which appears next to the success/failure message from the app) to be specified
targetUrl: https://github.com/kroma-network/kroma/blob/dev/.gitmessage
4 changes: 4 additions & 0 deletions FORK.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

- <https://github.com/ethereum-optimism/optimism/commit/af736c12e36e93fb30efdccd8d663f445b0bc7a8>

### Engine P2P Sync

- <https://github.com/ethereum-optimism/optimism/pull/6243>

### Others

- <https://github.com/ethereum-optimism/optimism/pull/5106>
Expand Down
10 changes: 5 additions & 5 deletions bindings/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ bindings: basefee-vault-bindings \
l2-output-oracle-bindings \
l2-standard-bridge-bindings \
l2-to-l1-message-passer-bindings \
proposer-fee-vault-bindings \
proxy-admin-bindings \
proxy-bindings \
security-council-bindings \
Expand All @@ -31,6 +30,7 @@ bindings: basefee-vault-bindings \
timelock-bindings \
upgrade-governor-bindings \
validator-pool-bindings \
validator-reward-vault-bindings \
weth9-bindings \
zk-merkle-trie-bindings \
zk-verifier-bindings
Expand Down Expand Up @@ -113,7 +113,7 @@ l1-erc721-bridge-bindings: compile
bash ./gen_bindings.sh contracts/L1/L1ERC721Bridge.sol:L1ERC721Bridge $(pkg)

l1-fee-vault-bindings: compile
bash ./gen_bindings.sh contracts/L2/ProposerRewardVault.sol:ProposerRewardVault $(pkg)
bash ./gen_bindings.sh contracts/L2/L1FeeVault.sol:L1FeeVault $(pkg)

l1-standard-bridge-bindings: compile
bash ./gen_bindings.sh contracts/L1/L1StandardBridge.sol:L1StandardBridge $(pkg)
Expand All @@ -133,9 +133,6 @@ l2-standard-bridge-bindings: compile
l2-to-l1-message-passer-bindings: compile
bash ./gen_bindings.sh contracts/L2/L2ToL1MessagePasser.sol:L2ToL1MessagePasser $(pkg)

proposer-fee-vault-bindings: compile
bash ./gen_bindings.sh contracts/L2/ValidatorRewardVault.sol:ValidatorRewardVault $(pkg)

proxy-admin-bindings: compile
bash ./gen_bindings.sh contracts/universal/ProxyAdmin.sol:ProxyAdmin $(pkg)

Expand All @@ -160,6 +157,9 @@ upgrade-governor-bindings: compile
validator-pool-bindings: compile
bash ./gen_bindings.sh contracts/L1/ValidatorPool.sol:ValidatorPool $(pkg)

validator-reward-vault-bindings: compile
bash ./gen_bindings.sh contracts/L2/ValidatorRewardVault.sol:ValidatorRewardVault $(pkg)

weth9-bindings: compile
bash ./gen_bindings.sh contracts/vendor/WETH9.sol:WETH9 $(pkg)

Expand Down
526 changes: 526 additions & 0 deletions bindings/bindings/l1feevault.go

Large diffs are not rendered by default.

505 changes: 0 additions & 505 deletions bindings/bindings/proposerrewardvault.go

This file was deleted.

25 changes: 23 additions & 2 deletions bindings/bindings/protocolvault.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5fb28e1

Please sign in to comment.