Skip to content

Commit

Permalink
weeklynet rollup: support different account for operator and batcher
Browse files Browse the repository at this point in the history
This required a fork of tezos-k8s, currently deployed as submodule
  • Loading branch information
nicolasochem committed Feb 8, 2024
1 parent 84b9fa3 commit 1f79ddd
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "networks/weeklynet/tezos-k8s"]
path = networks/weeklynet/tezos-k8s
url = git@github.com:tacoinfra/tezos-k8s.git
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ const weeklynet_chain = new TezosChain(
],
helmValuesFile: "networks/weeklynet/values.yaml",
bakingPrivateKey: private_teztnets_baking_key,
//chartPath: "networks/dailynet/tezos-k8s", // point to a submodule, to run unreleased tezos-k8s code
chartRepoVersion: "7.0.9", // point to a release of tezos-k8s. This should be the default state.
chartPath: "networks/weeklynet/tezos-k8s", // point to a submodule, to run unreleased tezos-k8s code
//chartRepoVersion: "7.0.9", // point to a release of tezos-k8s. This should be the default state.
bootstrapPeers: [],
},
provider
Expand Down
1 change: 1 addition & 0 deletions networks/weeklynet/tezos-k8s
Submodule tezos-k8s added at 50e1d9
38 changes: 27 additions & 11 deletions networks/weeklynet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,14 @@ nodes:

smartRollupNodes:
evm:
operator_account: teztnetsbaker
operators:
operating: teztnetsbaker
cementing: teztnetsbaker
executing_outbox: teztnetsbaker
batching1: evm-rollup-batcher-1
batching2: evm-rollup-batcher-2
batching3: evm-rollup-batcher-3
batching4: evm-rollup-batcher-4
rollup_address: sr1RYurGZtN8KNSpkMcCt9CgWeUaNkzsAfXf
ingress:
# ingress details filled by pulumi
Expand Down Expand Up @@ -227,6 +234,9 @@ archive_tarball_url: null
snapshot_source: https://snapshots.tezos.marigold.dev/api/tezos-snapshots.json

images: {}
tezos_k8s_images:
utils: ghcr.io/tacoinfra/tezos-k8s-utils:nicolasochem-evm_batcher_accounts
tezos_k8s_images_pull_policy: Always

serviceMonitor:
enabled: true
Expand Down Expand Up @@ -354,19 +364,25 @@ accounts:
key: edpkvGYHoY5kwq13Ak6r4fLa1GGSHKJZVe7xJFV6ZgHwdZeaHy3WZj
bootstrap_balance: "200000000000000"
is_bootstrap_baker_account: false
# SCORU test accounts
# Contact: Yann Regis-Gianas
scoru_rollup_operator:
key: edpktnY9kXbEW1HjqDbQ4AG3hYkNunxHiRsZe72gEaHxddxNBtjG7B
bootstrap_balance: "1000000000000"
is_bootstrap_baker_account: false
scoru_enduser:
key: edpkuet91oSH1Q9i4nGJRDjdsF9W7XcAteqLQe1VqSjtMHRtDpCVFp
bootstrap_balance: "1000000000000"
is_bootstrap_baker_account: false
# DAL Rich account and baker

This comment has been minimized.

Copy link
@nicolasochem

nicolasochem Feb 8, 2024

Author Contributor

I've also deleted these ones because I think they haven't been used for a long time. @yurug can confirm

This comment has been minimized.

Copy link
@yurug

yurug Feb 9, 2024

I can confirm! Thank you, Nicolas.

# Contact: Francois Thire at Nomadic
dal_rich_account:
key: edpkuwL7MVYArfQN9jyR8pZTqmFGYFWTYhhF4F8KWjr2vB18ozTqbd
bootstrap_balance: "370000000000"
is_bootstrap_baker_account: false
evm-rollup-batcher-1:
key: edsk3ioP9xYzM1USEXsph8z2CPxxHEc85HWDRwwMeiJdMAFaMNHMWL
is_bootstrap_baker_account: false
bootstrap_balance: '2000000000'
evm-rollup-batcher-2:
key: edsk3YEZnguwHGtsDjHdHr8EenSybKyJqh9P1xnba6VWN6n5yP5hoz
is_bootstrap_baker_account: false
bootstrap_balance: '2000000000'
evm-rollup-batcher-3:
key: edsk366GyDzqJSyiZJmmexM7YubJ77rEKqcYKzRtQocKHXU2kyqcLb
is_bootstrap_baker_account: false
bootstrap_balance: '2000000000'
evm-rollup-batcher-4:
key: edsk4DKhPabyQUDfCqTRXrKucXWdkHKnYM3NYFNS2XmyCQhu9xdprZ
is_bootstrap_baker_account: false
bootstrap_balance: '2000000000'

0 comments on commit 1f79ddd

Please sign in to comment.