-
Notifications
You must be signed in to change notification settings - Fork 15
feat: same slot composability and real time proving #804
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
Draft
AnshuJalan
wants to merge
28
commits into
master
Choose a base branch
from
surge-real-time-poc
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.
Draft
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
c574668
feat: add a POC for proposing with real time proofs
AnshuJalan 686bac2
chore: add debug
AnshuJalan 9e03c71
chore: add debug
AnshuJalan 450eb1f
Jc/refac catalyst docker build (#806)
nmjustinchan 1978daf
feat: nits
AnshuJalan 8fbd4a9
feat: nits
AnshuJalan 43f86c4
fix: recovery
AnshuJalan 71a4d79
feat: add same slot composability
AnshuJalan 4f8671d
fix: rpc channel blocked
AnshuJalan d7a6c19
refac: only publish latest tag for master branch
nmjustinchan 85434f3
refac: only publish latest tag for master branch
nmjustinchan 1b36fb0
feat: first working demo
AnshuJalan 11223ea
feat: add new rpc endpoint
AnshuJalan cc9f35c
docs: poc explainer
AnshuJalan 7315f40
feat: surge actual real time proving (#891)
AnshuJalan 5c661ce
Merge branch 'master' into surge-real-time-poc
smartprogrammer93 7fd8608
fix: restore fork selection, gate realtime mode behind FORK=realtime …
smartprogrammer93 fe1b29a
fix: address code review findings from PR #804
smartprogrammer93 bf2323a
fix: resolve CI lint and security audit failures
smartprogrammer93 9cf65ca
fix: resolve all clippy warnings and security audit failures
smartprogrammer93 8edd2a6
fix: correct typo 'intitiated' -> 'initiated'
smartprogrammer93 0765f7a
fix: gh action to promote tag on prod (#924)
gehlotanish ab9f6b0
feat: auto-reorg on L1 failure, surge_txStatus RPC, and recovery fixe…
smartprogrammer93 d6085c7
Merge branch 'master' into surge-real-time-poc
smartprogrammer93 703feca
refac: add Skip Reorg + Canonical Chain Verification for `lastFinaliz…
nmjustinchan ed88362
More logs on errors
mskrzypkows 735219b
dependencies sort
mskrzypkows 51f0922
Returning transaction result handlers instead of propagating them to …
mskrzypkows 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| # ============================================================================= | ||
| # SHARED WITH SHASTA (existing env variables) | ||
| # ============================================================================= | ||
|
|
||
| CATALYST_NODE_ECDSA_PRIVATE_KEY= | ||
| # PRECONFER_ADDRESS= | ||
| # WEB3SIGNER_L1_URL= | ||
| # WEB3SIGNER_L2_URL= | ||
|
|
||
| L1_RPC_URLS= | ||
| L1_BEACON_URL= | ||
| BLOB_INDEXER_URL= | ||
|
|
||
| TAIKO_GETH_RPC_URL=ws://127.0.0.1:1234 | ||
| TAIKO_GETH_AUTH_RPC_URL=http://127.0.0.1:1235 | ||
| TAIKO_DRIVER_URL=http://127.0.0.1:1236 | ||
| JWT_SECRET_FILE_PATH=/tmp/jwtsecret | ||
|
|
||
| L1_SLOT_DURATION_SEC=12 | ||
| L1_SLOTS_PER_EPOCH=32 | ||
| PRECONF_HEARTBEAT_MS=2000 | ||
|
|
||
| TAIKO_ANCHOR_ADDRESS=0x1670010000000000000000000000000000010001 | ||
| TAIKO_BRIDGE_L2_ADDRESS=0x0000000000000000000000000000000000000000 | ||
|
|
||
| BLOBS_PER_BATCH=3 | ||
| MAX_BLOCKS_PER_BATCH=1 | ||
| MAX_TIME_SHIFT_BETWEEN_BLOCKS_SEC=255 | ||
| MAX_ANCHOR_HEIGHT_OFFSET_REDUCTION_VALUE=10 | ||
|
|
||
| MAX_BYTES_PER_TX_LIST=126976 | ||
| MIN_BYTES_PER_TX_LIST=8192 | ||
| THROTTLING_FACTOR=2 | ||
| PRECONF_MIN_TXS=3 | ||
| PRECONF_MAX_SKIPPED_L2_SLOTS=2 | ||
|
|
||
| MIN_PRIORITY_FEE_PER_GAS_WEI=1000000000 | ||
| TX_FEES_INCREASE_PERCENTAGE=0 | ||
| MAX_ATTEMPTS_TO_SEND_TX=4 | ||
| MAX_ATTEMPTS_TO_WAIT_TX=5 | ||
| DELAY_BETWEEN_TX_ATTEMPTS_SEC=63 | ||
| EXTRA_GAS_PERCENTAGE=100 | ||
|
|
||
| RPC_L2_EXECUTION_LAYER_TIMEOUT_MS=1000 | ||
| RPC_DRIVER_PRECONF_TIMEOUT_MS=60000 | ||
| RPC_DRIVER_STATUS_TIMEOUT_MS=1000 | ||
|
|
||
| FUNDS_MONITOR_INTERVAL_SEC=60 | ||
| THRESHOLD_ETH=500000000000000000 | ||
| THRESHOLD_TAIKO=0 | ||
|
|
||
| DISABLE_BRIDGING=true | ||
| AMOUNT_TO_BRIDGE_FROM_L2_TO_L1=1000000000000000000 | ||
| BRIDGE_RELAYER_FEE=3047459064000000 | ||
| BRIDGE_TRANSACTION_FEE=1000000000000000 | ||
|
|
||
| FORK_SWITCH_TRANSITION_PERIOD_SEC=60 | ||
| PACAYA_TIMESTAMP_SEC=0 | ||
| SHASTA_TIMESTAMP_SEC=99999999999 | ||
| WHITELIST_MONITOR_INTERVAL_SEC=60 | ||
|
|
||
| # ============================================================================= | ||
| # NEW FOR REALTIME FORK | ||
| # ============================================================================= | ||
|
|
||
| REALTIME_INBOX_ADDRESS= | ||
| PROPOSER_MULTICALL_ADDRESS= | ||
| L1_BRIDGE_ADDRESS= | ||
|
|
||
| RAIKO_URL=http://localhost:8080 | ||
| RAIKO_API_KEY= | ||
| RAIKO_PROOF_TYPE=sgx | ||
| RAIKO_L2_NETWORK=taiko_mainnet | ||
| RAIKO_L1_NETWORK=ethereum |
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 |
|---|---|---|
|
|
@@ -5,4 +5,5 @@ venv | |
| .DS_Store | ||
| .sum | ||
| .devcontainer | ||
| .idea | ||
| .idea | ||
| data/ | ||
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.
@nmjustinchan Could you review changes in this file? I guess these are changed taken from surge, do we want them in Catalyst master?