Skip to content
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

feat: merge release/v1.0.3-base to main #237

Merged
merged 23 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8535324
feat(node): implement engine P2P sync mode
jyc228 Jul 26, 2023
eaf5d59
chore: add config file for semantic-prs
seolaoh Oct 23, 2023
5f40f0e
Merge pull request #204 from kroma-network/feat/enable-engine-p2p-sync
seolaoh Oct 24, 2023
4df034c
Merge pull request #222 from kroma-network/chore/add-semantic-prs-config
seolaoh Oct 24, 2023
e4b4478
refac!: renaming code (about Proposer)
kangsorang Oct 20, 2023
e5834cd
refac: update specs & assets (about Proposer)
kangsorang Oct 20, 2023
55cf9ba
Merge pull request #221 from kroma-network/refactor/renaming-proposer…
Pangssu Oct 25, 2023
b2bec1f
feat(validator): add gas limit margin when submitting output
seolaoh Oct 26, 2023
325b9b5
chore: update deployment config on sepolia
kangsorang Oct 31, 2023
3119e1e
chore: update deployments on sepolia
kangsorang Oct 31, 2023
e0f7db1
Merge pull request #224 from kroma-network/chore/update-output-submis…
seolaoh Nov 1, 2023
42032dd
Merge pull request #223 from kroma-network/feat/add-gas-limit-margin
kangsorang Nov 1, 2023
7dfe64c
feat: withdraw validator rewards directly to l2
Pangssu Nov 7, 2023
b2047b1
Merge pull request #225 from kroma-network/feat/withdraw-rewards-l2
Pangssu Nov 10, 2023
d094ac6
feat(contracts): remove withdrawal threshold and add withdrawToL2 (#232)
0xHansLee Dec 11, 2023
a706aff
chore(contracts): make `_processWithdrawal()` be virtual for overriding
Dec 11, 2023
541990e
Merge pull request #234 from kroma-network/chore/fix-contracts-build
0xHansLee Dec 11, 2023
ad13d34
chore: update v1.0.2 deployments on KromaSepolia
Dec 11, 2023
6ec3626
fix(contracts): change so that only recipient can withdraw from vault
Dec 12, 2023
cbf99e0
Merge pull request #235 from kroma-network/fix/set-recipient-withdrawal
0xHansLee Dec 12, 2023
c47401a
chore: update deployments for v1.0.3 on KromaSepolia
Dec 12, 2023
50a6acf
chore: update deployments for v1.0.3 on Kroma mainnet
Dec 12, 2023
906c51c
Merge pull request #236 from kroma-network/chore/update-deployments-v…
0xHansLee Dec 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading