Skip to content

Commit

Permalink
feat: new chains
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptistG committed Mar 20, 2024
1 parent 6dd713a commit eb9b23b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -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= ""
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
25 changes: 25 additions & 0 deletions scripts/templates/cloudrun.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit eb9b23b

Please sign in to comment.