mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 15:38:06 -05:00
Feat/integrate linea besu package (#900)
* initial commit * feat: merge changes from linea-besu-package latest main * feat: change locationn of linea-devnet workflow * feat: add job outputs for build-and-upload-artifact * fix: assemble-devnet path * fix: linea-devnet.env path * fix: linea-devnet.env path for versions.txt copy * fix: linea-besu path for placing the package together to build the docker images * feat: add tree command install * feat: add tree command install * feat: add tree command install * feat: add tree command install * feat: revise linea-besu-package pattern for docker image artifacts download * fix: sed command * fix: tracer-plugin-version job output variable name * feat: revise echo for expected-traces-api-version-v2 * feat: build and push to dockerhub whenever e2e tests succeeded even for pull requests * fix: right path for linea-besu-package in build-and-push-dockerhub * feat: remove redundant build and just push image to dockerhub after e2e tests passed * feat: add parameters for build the combined manifest * Revert "feat: add parameters for build the combined manifest" This reverts commit 83d315f4fec0ebb5f658a3c0a2f903b43991061c. * Revert "feat: remove redundant build and just push image to dockerhub after e2e tests passed" This reverts commit 7b0dcd7b75f1c86e142aca048b0616ecf71b6553. * feat: revert to build and push after e2e tests passed * feat: updated linea-devnet.env for latest versions * feat: removed the use of filter commit changes * Revert "feat: updated linea-devnet.env for latest versions" This reverts commit 8bfeb979b9ddef92e7a7bebfacbe639adee95ef3. * feat: revised output values * feat: reuse besu package build test push * fix: linea_env inputs name * feat: refactoring out assemble actions with linea_env input * fix: assemble name * feat: refactoring and added mainnet and sepolia workflow * feat: removed unnecessary files * Revert "feat: removed unnecessary files" This reverts commit a60d1df7df3a1b6d3f74b3b0735f8070320bc4b5. * feat: removed unnecessary files * feat: add besu run test in reuse-linea-besu-package-build-test-push workflow * fix: step typo * fix: step outputs files typo * fix: run-test outcome check * fix: use result instead of outcome * feat: add mainnet linea-besu-package workflow * feat: add filter commit changes to determine running e2e and push image * feat: force e2e test run and push to dockerhub when triggered manually * feat: skip filter changes if triggered manually * fix: missing quote * feat: add if always in build-test-push * feat: revise release to manual workflow * fix: move up checkout * fix: remove cd release * fix: cd into the correct folder linea-besu-package/linea-besu * fix: added release_tag_prefix and correct path for plugin tar files * fix: release permission and besu tar.gz location * feat: temp disable sepolia and devnet, and add changelog * feat: set git-push as false in Changelog Action * feat: re-enable sepolia and devnet, cleanup commented lines, removed unnecessary files * fix: latest tag condition * feat: use env for linea_env for tags * feat: use env for linea_env for tags * fix: syntax error of echo append * feat: revise release note * feat: clean up commented codes and remove output workflow id * feat: move besu container check script * feat: add timestamp in the release tag * fix: check against github event name for compile release note * feat: publish release log for every dockerhub image push and update README * fix: release tag issue and change log only for manual release * feat: revise release to tag on commit * feat: temp change on versions and add prerelease * fix: mainnet staterecovery version * feat: update README and detect config changes to push image * feat: update env version file * feat: revise README * feat: update devnet version * feat: update devnet version * feat: update path matching * feat: update to use same format of release tag across all releases * feat: added ref name and event name in release note * feat: added markdown highlight * feat: fixed in-line code block * fix: in-line code block * fix: in-line code block * feat: add workflow link in release note * feat: fix workflow link in release note * feat: fix workflow link in release note * feat: fix workflow link in release note * fix: markdown highlight * feat: update commit tag for PR as last commit on branch instead of merge commit * feat: remove env files and env workflows to achieve environment-agnostic * feat: update versions env file for beta v2 * feat: move linea.env to versions.env and update workflow accordingly * feat: update README.md * feat: remove commented out if check workflow_dispatch * feat: update README.md * staterecovery: update version * feat: updated input description and removed unnecessary files * feat: make assemble action to release notes based on inputs --------- Co-authored-by: Fluent Crafter <205769460+fluentcrafter@users.noreply.github.com>
This commit is contained in:
100
linea-besu-package/linea-besu/profiles/advanced-sepolia.toml
Normal file
100
linea-besu-package/linea-besu/profiles/advanced-sepolia.toml
Normal file
@@ -0,0 +1,100 @@
|
||||
### Data and Storage ###
|
||||
data-path="/data"
|
||||
data-storage-format="BONSAI"
|
||||
|
||||
### Node and Network configuration ###
|
||||
bootnodes=["enode://6f20afbe4397e51b717a7c1ad3095e79aee48c835eebd9237a3e8a16951ade1fe0e66e981e30ea269849fcb6ba03d838da37f524fabd2a557474194a2e2604fa@18.221.100.27:31002","enode://ce1e0d8e0500cb5c0ac56bdcdafb2d6320c3a2c5125b5ccf12f5dfc9b47ee74acbcafc32559017613136c9c36a0ce74ba4f83b7fb8244f099f3b15708d9d3129@3.23.75.47:31000","enode://1b026a5eb0ae74300f58987d235ef0e3a550df963345cb3574be3b0b54378bd11f14dfd515a8976f2c2d2826090e9507b8ccc24f896a9ffffffcabcfd996a733@3.129.120.128:31001"]
|
||||
static-nodes-file="config/static-nodes.sepolia.json"
|
||||
|
||||
host-allowlist=["*"]
|
||||
discovery-enabled=true
|
||||
p2p-host="0.0.0.0"
|
||||
p2p-port=30303
|
||||
fast-sync-min-peers=3
|
||||
max-peers=50
|
||||
|
||||
# For node to be a sequencer, this key has to match the key used in genesis file
|
||||
node-private-key-file="/data/key"
|
||||
genesis-file="genesis/genesis.testnet-sepolia.json" # Path to the custom genesis file
|
||||
sync-mode="SNAP"
|
||||
Xbonsai-full-flat-db-enabled=true
|
||||
|
||||
### Transaction pool ###
|
||||
tx-pool-enable-save-restore=true
|
||||
tx-pool-price-bump=1
|
||||
tx-pool-max-future-by-sender=1000
|
||||
tx-pool-min-gas-price="10000000"
|
||||
tx-pool-layer-max-capacity="100000000"
|
||||
tx-pool-no-local-priority=true
|
||||
|
||||
### RPC and API configuration ###
|
||||
rpc-http-enabled=true
|
||||
rpc-http-host="0.0.0.0"
|
||||
rpc-http-port=8545
|
||||
rpc-http-api=["ETH","NET","WEB3","DEBUG","TRACE","TXPOOL","LINEA","MINER"]
|
||||
rpc-http-cors-origins=["all"]
|
||||
|
||||
rpc-ws-enabled=true
|
||||
rpc-ws-api=["ETH","NET","WEB3"]
|
||||
rpc-ws-host="0.0.0.0"
|
||||
rpc-ws-port=8546
|
||||
|
||||
rpc-gas-cap="50000000"
|
||||
|
||||
graphql-http-enabled=true
|
||||
graphql-http-host="0.0.0.0"
|
||||
graphql-http-port=8547
|
||||
graphql-http-cors-origins=["all"]
|
||||
|
||||
api-gas-price-blocks=20
|
||||
api-gas-price-percentile=60
|
||||
api-gas-and-priority-fee-limiting-enabled=true
|
||||
api-gas-and-priority-fee-lower-bound-coefficient="120"
|
||||
|
||||
Xplugin-rocksdb-high-spec-enabled=true
|
||||
|
||||
### Metrics ###
|
||||
metrics-enabled=true
|
||||
metrics-host="0.0.0.0"
|
||||
metrics-port=9545
|
||||
|
||||
### JWT and Engine Configuration ###
|
||||
engine-jwt-disabled=false
|
||||
engine-jwt-secret="/etc/jwt-secret.hex"
|
||||
engine-rpc-enabled=false
|
||||
engine-rpc-port=8551
|
||||
engine-host-allowlist=["*"]
|
||||
|
||||
### Gas and Block Limit Configuration ###
|
||||
min-gas-price="10000000"
|
||||
target-gas-limit="2000000000"
|
||||
|
||||
### Plugin Configuration ###
|
||||
plugins=["LineaEstimateGasEndpointPlugin","LineaL1FinalizationTagUpdaterPlugin","LineaExtraDataPlugin","LineaTransactionPoolValidatorPlugin"]
|
||||
plugin-linea-module-limit-file-path="config/trace-limits.sepolia.toml"
|
||||
plugin-linea-max-tx-calldata-size=60000
|
||||
plugin-linea-max-block-calldata-size=70000
|
||||
plugin-linea-max-tx-gas-limit=24000000
|
||||
plugin-linea-estimate-gas-min-margin="1.2"
|
||||
Xin-process-rpc-enabled=true
|
||||
Xin-process-rpc-apis=["MINER", "ETH"]
|
||||
plugin-linea-tx-pool-profitability-check-api-enabled=true
|
||||
plugin-linea-tx-pool-profitability-check-p2p-enabled=true
|
||||
plugin-linea-tx-pool-simulation-check-api-enabled=true
|
||||
plugin-linea-tx-pool-simulation-check-p2p-enabled=true
|
||||
plugin-linea-min-margin="1.0"
|
||||
plugin-linea-tx-pool-min-margin="0.8"
|
||||
plugin-linea-fixed-gas-cost-wei=0
|
||||
plugin-linea-variable-gas-cost-wei=10000000
|
||||
plugin-linea-estimate-gas-compatibility-mode-enabled=false
|
||||
plugin-linea-extra-data-pricing-enabled=true
|
||||
plugin-linea-extra-data-set-min-gas-price-enabled=true
|
||||
plugin-linea-max-block-gas=55000000
|
||||
plugin-linea-l1l2-bridge-contract="0x33bf916373159A8c1b54b025202517BfDbB7863D"
|
||||
plugin-linea-l1l2-bridge-topic="e856c2b8bd4eb0027ce32eeaf595c21b0b6b4644b326e5b7bd80a1cf8db72e6c"
|
||||
plugin-linea-deny-list-path="config/denylist.sepolia.txt"
|
||||
|
||||
# LineaL1FinalizationTagUpdaterPlugin
|
||||
plugin-linea-l1-polling-interval="PT12S"
|
||||
plugin-linea-l1-smart-contract-address="0xB218f8A4Bc926cF1cA7b3423c154a0D627Bdb7E5"
|
||||
plugin-linea-l1-rpc-endpoint="http://localhost:8545"
|
||||
Reference in New Issue
Block a user