Skip to content

Commit d029354

Browse files
committed
fix: contracts verifaction
1 parent d49ac4c commit d029354

File tree

13 files changed

+38
-28
lines changed

13 files changed

+38
-28
lines changed

charts/blockscout/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ Kubernetes: `>=1.22.0-0`
4949
| blockscout-stack.blockscout.ingress.className | string | `"nginx"` | |
5050
| blockscout-stack.blockscout.ingress.enabled | bool | `true` | |
5151
| blockscout-stack.blockscout.ingress.hostname | string | `"blockscout.scrollsdk"` | |
52-
| blockscout-stack.blockscout.persistence.genesis.enabled | bool | `true` | |
53-
| blockscout-stack.blockscout.persistence.genesis.mountPath | string | `"/app/genesis/"` | |
54-
| blockscout-stack.blockscout.persistence.genesis.name | string | `"genesis-config"` | |
55-
| blockscout-stack.blockscout.persistence.genesis.type | string | `"configMap"` | |
52+
| blockscout-stack.blockscout.volumeMounts[0].mountPath | string | `"/app/genesis"` | |
53+
| blockscout-stack.blockscout.volumeMounts[0].name | string | `"genesis-config"` | |
54+
| blockscout-stack.blockscout.volumeMounts[0].readOnly | bool | `true` | |
55+
| blockscout-stack.blockscout.volumes[0].configMap.name | string | `"genesis-config"` | |
56+
| blockscout-stack.blockscout.volumes[0].name | string | `"genesis-config"` | |
5657
| blockscout-stack.frontend.env.FAVICON_MASTER_URL | string | `"https://raw.githubusercontent.com/blockscout/frontend-configs/main/configs/favicons/scroll_180x180.png"` | |
5758
| blockscout-stack.frontend.env.NEXT_PUBLIC_AD_BANNER_PROVIDER | string | `"none"` | |
5859
| blockscout-stack.frontend.env.NEXT_PUBLIC_AD_TEXT_PROVIDER | string | `"none"` | |

charts/blockscout/values.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ blockscout-stack:
2525
SCROLL_L2_CURIE_UPGRADE_BLOCK: 0
2626
ECTO_USE_SSL: false
2727
ETHEREUM_JSONRPC_HTTP_INSECURE: true
28-
CHAIN_SPEC_PATH: "/app/genesis/genesis.json"
28+
CHAIN_SPEC_PATH: /app/genesis/genesis.json
2929
# Not sure what these values are for
3030
# SCROLL_L1_SCALAR_INIT:
3131
# SCROLL_L1_OVERHEAD_INIT:
@@ -49,12 +49,15 @@ blockscout-stack:
4949
nginx.ingress.kubernetes.io/cors-max-age: "86400"
5050
hostname: blockscout.scrollsdk
5151

52-
persistence:
53-
genesis:
54-
enabled: true
55-
type: configMap
56-
mountPath: /app/genesis/
57-
name: genesis-config
52+
volumes:
53+
- name: genesis-config
54+
configMap:
55+
name: genesis-config
56+
57+
volumeMounts:
58+
- name: genesis-config
59+
mountPath: "/app/genesis"
60+
readOnly: true
5861

5962
frontend:
6063
image:

charts/contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Kubernetes: `>=1.22.0-0`
2525
| envFrom[0].configMapRef.name | string | `"contracts-deployment-env"` | |
2626
| global.isStandalone | bool | `false` | |
2727
| image.repository | string | `"scrolltech/scroll-stack-contracts"` | |
28-
| image.tag | string | `"deploy-a976769a2b07ceea7dcd10d0a7a20ad41e010528"` | |
28+
| image.tag | string | `"deploy-8ff2948aa2b9cbd24a7644b060097765a6faee10"` | |
2929
| scrollConfig | string | `"{}\n"` | |
3030
| scrollConfigContracts | string | `"{}\n"` | |
3131

charts/contracts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ global:
44

55
image:
66
repository: scrolltech/scroll-stack-contracts
7-
tag: deploy-a976769a2b07ceea7dcd10d0a7a20ad41e010528
7+
tag: deploy-8ff2948aa2b9cbd24a7644b060097765a6faee10
88

99
envFrom:
1010
- configMapRef:

charts/l1-devnet/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v2
33
description: l1-devnet helm charts
44
name: l1-devnet
5-
version: 0.1.0
5+
version: 0.1.1
66
appVersion: v0.1.0
77
kubeVersion: ">=1.22.0-0"
88
maintainers:

charts/l1-devnet/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# l1-devnet
22

3-
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
3+
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![AppVersion: v0.1.0](https://img.shields.io/badge/AppVersion-v0.1.0-informational?style=flat-square)
44

55
l1-devnet helm charts
66

@@ -25,7 +25,7 @@ Kubernetes: `>=1.22.0-0`
2525
|-----|------|---------|-------------|
2626
| command[0] | string | `"/bin/bash"` | |
2727
| command[1] | string | `"-c"` | |
28-
| command[2] | string | `"anvil --host 0.0.0.0 --port 8545 --chain-id ${CHAIN_ID} --state /data/state.json --state-interval 60 --slots-in-an-epoch 3"` | |
28+
| command[2] | string | `"mkdir -p /data && echo \"{number: 0x0}\" > /data/genesis.json && anvil --host 0.0.0.0 --port 8545 --chain-id ${CHAIN_ID} --state /data/state.json --state-interval 60 --slots-in-an-epoch 3"` | |
2929
| controller.replicas | int | `1` | |
3030
| controller.strategy | string | `"RollingUpdate"` | |
3131
| controller.type | string | `"statefulset"` | |

charts/l1-devnet/values.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ image:
1414
tag: v0.0.4
1515

1616
command:
17-
["/bin/bash", "-c", "anvil --host 0.0.0.0 --port 8545 --chain-id ${CHAIN_ID} --state /data/state.json --state-interval 60 --slots-in-an-epoch 3"]
17+
[
18+
"/bin/bash",
19+
"-c",
20+
"mkdir -p /data && \
21+
echo \"{number: 0x0}\" > /data/genesis.json && \
22+
anvil --host 0.0.0.0 --port 8545 --chain-id ${CHAIN_ID} --state /data/state.json --state-interval 60 --slots-in-an-epoch 3"]
1823

1924
envFrom:
2025
- configMapRef:

charts/l1-explorer/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ Kubernetes: `>=1.22.0-0`
2323

2424
| Key | Type | Default | Description |
2525
|-----|------|---------|-------------|
26-
| blockscout-stack.blockscout.env.BLOCK_TRANSFORMER | string | `"clique"` | |
2726
| blockscout-stack.blockscout.env.ECTO_USE_SSL | bool | `false` | |
2827
| blockscout-stack.blockscout.env.ETHEREUM_JSONRPC_HTTP_INSECURE | bool | `true` | |
2928
| blockscout-stack.blockscout.env.ETHEREUM_JSONRPC_VARIANT | string | `"geth"` | |
3029
| blockscout-stack.blockscout.env.INDEXER_DISABLE_PENDING_TRANSACTIONS_FETCHER | bool | `true` | |
3130
| blockscout-stack.blockscout.envFrom[0].configMapRef.name | string | `"l1-explorer-env"` | |
3231
| blockscout-stack.blockscout.image.pullPolicy | string | `"IfNotPresent"` | |
3332
| blockscout-stack.blockscout.image.repository | string | `"blockscout/blockscout"` | |
34-
| blockscout-stack.blockscout.image.tag | string | `"6.8.0"` | |
33+
| blockscout-stack.blockscout.image.tag | string | `"6.9.0"` | |
3534
| blockscout-stack.blockscout.ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-headers" | string | `"updated-gas-oracle, Content-Type, Authorization"` | |
3635
| blockscout-stack.blockscout.ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-methods" | string | `"GET, POST, OPTIONS"` | |
3736
| blockscout-stack.blockscout.ingress.annotations."nginx.ingress.kubernetes.io/cors-allow-origin" | string | `"http://l1-explorer.scrollsdk"` | |

charts/l1-explorer/values.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ blockscout-stack:
66
image:
77
repository: blockscout/blockscout
88
pullPolicy: IfNotPresent
9-
tag: 6.8.0
9+
tag: 6.9.0
1010

1111
env:
1212
ETHEREUM_JSONRPC_VARIANT: geth
13-
BLOCK_TRANSFORMER: clique
1413
INDEXER_DISABLE_PENDING_TRANSACTIONS_FETCHER: true
1514
ECTO_USE_SSL: false
1615
ETHEREUM_JSONRPC_HTTP_INSECURE: true

charts/scroll-sdk/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords:
1414
home: https://github.com/scroll-tech/scroll-sdk
1515
dependencies:
1616
- name: l1-devnet
17-
version: 0.1.0
17+
version: 0.1.1
1818
repository: "oci://ghcr.io/scroll-tech/scroll-sdk/helm"
1919
condition: l1-devnet.enabled
2020
- name: balance-checker

0 commit comments

Comments
 (0)