Commit 001bbb1 1 parent 835e6fd commit 001bbb1 Copy full SHA for 001bbb1
File tree 5 files changed +19
-12
lines changed
l1-contracts/src/core/libraries
noir-projects/noir-protocol-circuits/crates/types/src
yarn-project/circuits.js/src
5 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ library Constants {
92
92
uint256 internal constant INITIAL_L2_BLOCK_NUM = 1 ;
93
93
uint256 internal constant PRIVATE_LOG_SIZE_IN_FIELDS = 18 ;
94
94
uint256 internal constant BLOB_SIZE_IN_BYTES = 126976 ;
95
- uint256 internal constant AZTEC_MAX_EPOCH_DURATION = 32 ;
95
+ uint256 internal constant AZTEC_MAX_EPOCH_DURATION = 48 ;
96
96
uint256 internal constant GENESIS_ARCHIVE_ROOT =
97
97
1002640778211850180189505934749257244705296832326768971348723156503780793518 ;
98
98
uint256 internal constant FEE_JUICE_INITIAL_MINT = 200000000000000000000 ;
@@ -200,8 +200,8 @@ library Constants {
200
200
uint256 internal constant KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 958 ;
201
201
uint256 internal constant CONSTANT_ROLLUP_DATA_LENGTH = 13 ;
202
202
uint256 internal constant BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH = 31 ;
203
- uint256 internal constant BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 90 ;
204
- uint256 internal constant ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 76 ;
203
+ uint256 internal constant BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 122 ;
204
+ uint256 internal constant ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 108 ;
205
205
uint256 internal constant GET_NOTES_ORACLE_RETURN_LENGTH = 674 ;
206
206
uint256 internal constant NOTE_HASHES_NUM_BYTES_PER_BASE_ROLLUP = 2048 ;
207
207
uint256 internal constant NULLIFIERS_NUM_BYTES_PER_BASE_ROLLUP = 2048 ;
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ pub global INITIALIZATION_SLOT_SEPARATOR: Field = 1000_000_000;
129
129
pub global INITIAL_L2_BLOCK_NUM : Field = 1 ;
130
130
pub global PRIVATE_LOG_SIZE_IN_FIELDS : u32 = 18 ; // This is currently affected by the size of the log overhead defined in aztec-nr/aztec/src/encrypted_logs/payload.nr.
131
131
pub global BLOB_SIZE_IN_BYTES : Field = 31 * 4096 ;
132
- pub global AZTEC_MAX_EPOCH_DURATION : u32 = 32 ;
132
+ pub global AZTEC_MAX_EPOCH_DURATION : u32 = 48 ;
133
133
// The following is taken from building a block and looking at the `lastArchive` value in it.
134
134
// You can run the `integration_l1_publisher.test.ts` and look at the first blocks in the fixtures.
135
135
pub global GENESIS_ARCHIVE_ROOT : Field =
Original file line number Diff line number Diff line change @@ -224,7 +224,6 @@ data:
224
224
export STAKING_ASSET_CONTRACT_ADDRESS={{ .Values.bootNode.contracts.stakingAssetAddress }}
225
225
export FEE_JUICE_PORTAL_CONTRACT_ADDRESS={{ .Values.bootNode.contracts.feeJuicePortalAddress }}
226
226
{{- end }}
227
- {{if not .Values.network.public }}
228
227
---
229
228
# Headless service for StatefulSet DNS entries
230
229
apiVersion : v1
@@ -234,16 +233,24 @@ metadata:
234
233
labels :
235
234
{{- include "aztec-network.labels" . | nindent 4 }}
236
235
spec :
236
+ # If this is a public network, we want to expose the boot node as a LoadBalancer
237
+ {{- if .Values.network.public }}
238
+ type : LoadBalancer
239
+ {{- else }}
240
+ type : ClusterIP
237
241
clusterIP : None
242
+ {{- end }}
238
243
selector :
239
244
{{- include "aztec-network.selectorLabels" . | nindent 4 }}
240
245
app : boot-node
241
246
ports :
247
+ # External load balancers cannot handle mixed TCP/UDP ports, so we only expose the node port
248
+ {{- if not .Values.network.public }}
242
249
- port : {{ .Values.bootNode.service.p2pTcpPort }}
243
250
name : p2p-tpc
244
251
- port : {{ .Values.bootNode.service.p2pUdpPort }}
245
252
name : p2p-udp
246
253
protocol : UDP
254
+ {{- end }}
247
255
- port : {{ .Values.bootNode.service.nodePort }}
248
256
name : node
249
- {{ end }}
Original file line number Diff line number Diff line change 3
3
4
4
aztec :
5
5
slotDuration : 36
6
- epochDuration : 32
6
+ epochDuration : 48
7
7
realProofs : true
8
8
9
9
images :
@@ -129,7 +129,7 @@ bootNode:
129
129
storageSize : " 100Gi"
130
130
131
131
proverAgent :
132
- replicas : 16
132
+ replicas : 24
133
133
bb :
134
134
hardwareConcurrency : 31
135
135
gke :
@@ -142,7 +142,7 @@ proverAgent:
142
142
bot :
143
143
followChain : " PENDING"
144
144
enabled : true
145
- txIntervalSeconds : 200
145
+ txIntervalSeconds : 300
146
146
147
147
jobs :
148
148
deployL1Verifier :
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export const INITIALIZATION_SLOT_SEPARATOR = 1000000000;
79
79
export const INITIAL_L2_BLOCK_NUM = 1 ;
80
80
export const PRIVATE_LOG_SIZE_IN_FIELDS = 18 ;
81
81
export const BLOB_SIZE_IN_BYTES = 126976 ;
82
- export const AZTEC_MAX_EPOCH_DURATION = 32 ;
82
+ export const AZTEC_MAX_EPOCH_DURATION = 48 ;
83
83
export const GENESIS_ARCHIVE_ROOT = 1002640778211850180189505934749257244705296832326768971348723156503780793518n ;
84
84
export const FEE_JUICE_INITIAL_MINT = 200000000000000000000n ;
85
85
export const PUBLIC_DISPATCH_SELECTOR = 3578010381 ;
@@ -180,8 +180,8 @@ export const KERNEL_CIRCUIT_PUBLIC_INPUTS_LENGTH = 958;
180
180
export const AVM_CIRCUIT_PUBLIC_INPUTS_LENGTH = 1009 ;
181
181
export const CONSTANT_ROLLUP_DATA_LENGTH = 13 ;
182
182
export const BASE_OR_MERGE_PUBLIC_INPUTS_LENGTH = 31 ;
183
- export const BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 90 ;
184
- export const ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 76 ;
183
+ export const BLOCK_ROOT_OR_BLOCK_MERGE_PUBLIC_INPUTS_LENGTH = 122 ;
184
+ export const ROOT_ROLLUP_PUBLIC_INPUTS_LENGTH = 108 ;
185
185
export const GET_NOTES_ORACLE_RETURN_LENGTH = 674 ;
186
186
export const NOTE_HASHES_NUM_BYTES_PER_BASE_ROLLUP = 2048 ;
187
187
export const NULLIFIERS_NUM_BYTES_PER_BASE_ROLLUP = 2048 ;
You can’t perform that action at this time.
0 commit comments