diff --git a/.env.example b/.env.example index 9534218..574d843 100644 --- a/.env.example +++ b/.env.example @@ -18,6 +18,16 @@ PROVIDER_42161= "" PROVIDER_1101= "" #Base PROVIDER_8453= "" +#Mantle +PROVIDER_5000= "" +#Immutable zkEVM +PROVIDER_13371= "" +#Manta +PROVIDER_169= "" +#Blast +PROVIDER_81457= "" +#Mode +PROVIDER_34443= "" #Github auth token (used to generate a gist for diff tables) KEEPER_GITHUB_AUTH_TOKEN= "" diff --git a/scripts/deploy.sh b/scripts/deploy.sh index dc84833..b03b08f 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -2,8 +2,8 @@ account=$1 version=$2 -chainKeys=("polygon" "ethereum" "optimism" "arbitrum" "zkevm" "base" "gnosis" "thundercore" "core") -chainValues=(137 1 10 42161 1101 8453 100 108 1116) +chainKeys=("polygon" "ethereum" "optimism" "arbitrum" "zkevm" "base" "gnosis" "thundercore" "core" "manta" "immutable-zkevm" "mantle" "blast" "mode") +chainValues=(137 1 10 42161 1101 8453 100 108 1116 169 13371 5000 81457 34443) for ((i=0; i<${#chainKeys[@]}; i++)) do diff --git a/scripts/templates/cloudrun.yaml b/scripts/templates/cloudrun.yaml index ac2b059..50c9d92 100644 --- a/scripts/templates/cloudrun.yaml +++ b/scripts/templates/cloudrun.yaml @@ -73,6 +73,31 @@ spec: secretKeyRef: key: latest name: KEEPER_GITHUB_AUTH_TOKEN + - name: PROVIDER_169 + valueFrom: + secretKeyRef: + key: latest + name: PROVIDER_169 + - name: PROVIDER_5000 + valueFrom: + secretKeyRef: + key: latest + name: PROVIDER_5000 + - name: PROVIDER_13371 + valueFrom: + secretKeyRef: + key: latest + name: PROVIDER_13371 + - name: PROVIDER_8147 + valueFrom: + secretKeyRef: + key: latest + name: PROVIDER_81457 + - name: PROVIDER_34443 + valueFrom: + secretKeyRef: + key: latest + name: PROVIDER_34443 image: CHANGE_ME # spec.template.spec.containers.image ports: - containerPort: '5002'