Skip to content

Commit

Permalink
build(docker-compose): client/prover (#25)
Browse files Browse the repository at this point in the history
* fix(client/prover/tdx): l1 network id

* build(docker-compose): client/prover
  • Loading branch information
failfmi authored and vikinatora committed Jan 21, 2025
1 parent 9c64815 commit 2601d53
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,39 @@ services:
- "4"
extra_hosts:
- "host.docker.internal:host-gateway"
prover:
image: unifi-client-prover
container_name: unifi-client-prover
build:
context: .
dockerfile: ./packages/taiko-client/Dockerfile
restart: unless-stopped
pull_policy: always
command:
- prover
- --l1.ws
- "${L1_WS}"
- --l2.ws
- "${L2_WS}"
- --l2.http
- "${L2_HTTP}"
- --taikoL1
- "${TAIKO_L1}"
- --taikoL2
- "${TAIKO_L2}"
- --taikoToken
- "${TAIKO_TOKEN}"
- --proverSet
- "${PROVER_SET}"
- --l1.proverPrivKey
- "${L1_PROVER_PRIVKEY}"
- --prover.capacity
- "${PROVER_CAPACITY}"
- --raiko.host
- "${RAIKO_HOST}"
- --prover.l1NodeVersion
- "${L1_NODE_VERSION}"
- --prover.l2NodeVersion
- "${L2_NODE_VERSION}"
- --verbosity
- "4"
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (t *TDXProofProducer) requestProof(
Block: opts.BlockID,
L1InclusionBlockNumber: meta.GetProposedIn(),
Network: "unifi_testnet",
L1Network: "localnet",
L1Network: "holesky",
Graffiti: opts.Graffiti,
Prover: opts.ProverAddress.Hex()[2:],
ProofType: "Native",
Expand Down

0 comments on commit 2601d53

Please sign in to comment.