Skip to content

Commit 0a9a3d6

Browse files
authored
feat: update aggkit for v0.8 (#231)
1 parent b4b1aca commit 0a9a3d6

3 files changed

Lines changed: 7 additions & 8 deletions

File tree

charts/aggkit/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 5.1.0
18+
version: 6.0.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.7.0"
24+
appVersion: "0.8.0-beta1"

charts/aggkit/templates/configmap.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ metadata:
77
namespace: {{ .Release.Namespace }}
88
data:
99
config.toml: |
10-
NetworkID = {{ .Values.config.l2.rollupId | int }}
1110
PathRWData = {{ .Values.storage.path | quote }}
1211
{{- if .Values.config.l1.rpcUrl }}
1312
L1URL = {{ .Values.config.l1.rpcUrl | quote }}
@@ -19,20 +18,20 @@ data:
1918
SequencerPrivateKeyPath = ""
2019
SequencerPrivateKeyPassword = ""
2120
22-
polygonBridgeAddr = {{ .Values.config.bridgeAddress | quote }}
23-
2421
rollupCreationBlockNumber = {{ .Values.config.l1.rollupBlockNumber | int }}
2522
rollupManagerCreationBlockNumber = {{ .Values.config.l1.rollupManagerBlockNumber | int }}
2623
genesisBlockNumber = {{ .Values.config.l1.rollupManagerBlockNumber | int }}
2724
2825
[L1Config]
26+
BridgeAddr = {{ .Values.config.l1.bridgeAddress | quote }}
2927
chainId = {{ .Values.config.l1.chainId | int }}
3028
polygonZkEVMGlobalExitRootAddress = {{ .Values.config.l1.globalExitRootAddress | quote }}
3129
polygonRollupManagerAddress = {{ .Values.config.l1.rollupManagerAddress | quote }}
3230
polTokenAddress = {{ .Values.config.l1.polTokenAddress | quote }}
3331
polygonZkEVMAddress = {{ .Values.config.l1.rollupAddress | quote }}
3432
3533
[L2Config]
34+
BridgeAddr = {{ .Values.config.l2.bridgeAddress | quote }}
3635
GlobalExitRootAddr = {{ .Values.config.l2.globalExitRootAddress | quote }}
3736
3837
[Log]

charts/aggkit/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ podSecurityContext: {}
7171
securityContext: {}
7272

7373
config:
74-
bridgeAddress: "0x123"
7574
# list of components: aggsender, aggsender-validator, aggoracle, bridge
7675
components:
7776
- aggsender
@@ -127,7 +126,7 @@ config:
127126
keystoreFilePasswordSecretFieldName: "aggoracleKeystorePassword"
128127

129128
l1InfoTreeSync:
130-
blockFinality: "FinalizedBlock" # IMPORTANT! Should be SafeBlock for aggkit >= v0.7.3
129+
blockFinality: "FinalizedBlock"
131130

132131
reorgDetectorL1:
133132
blockFinality: "FinalizedBlock"
@@ -136,6 +135,7 @@ config:
136135
blockFinality: "LatestBlock"
137136

138137
l1:
138+
bridgeAddress: "0x123"
139139
chainId: 123
140140
globalExitRootAddress: "0x123"
141141
polTokenAddress: "0x123"
@@ -147,9 +147,9 @@ config:
147147

148148
l2:
149149
agglayerAddress: "0x123"
150+
bridgeAddress: "0x123"
150151
chainId: 123
151152
globalExitRootAddress: "0x123"
152-
rollupId: 123
153153
rpcURL: http://localhost:8545
154154

155155
log:

0 commit comments

Comments
 (0)