Skip to content

Commit

Permalink
chore(ci): fix folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
leventdem committed Oct 11, 2024
1 parent 469b399 commit 6b0fcaf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .env.example.deployment
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export PRIVATE_KEY_FHEVM_DEPLOYER="0c66d8cde71d2faa29d0cb6e3a567d31279b6eace67b0a9d9ba869c119843a5e"
export PRIVATE_KEY_GATEWAY_DEPLOYER="717fd99986df414889fd8b51069d4f90a50af72e542c58ee065f5883779099c6"
export ADDRESS_GATEWAY_RELAYER="0x97F272ccfef4026A1F3f0e0E879d514627B84E69"
export NUM_KMS_SIGNERS="4"
export NUM_KMS_SIGNERS="1"
export ADDRESS_KMS_SIGNER_0="0x0971C80fF03B428fD2094dd5354600ab103201C5"
export ADDRESS_KMS_SIGNER_1="0xB68deCb047B5e6Cc82280502A7E2318c6b3E5eC6"
export ADDRESS_KMS_SIGNER_2="0xfe0fB0BCceb872ee7a6ef6c455e6E127Aef55DD7"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,12 @@ COPY tsconfig.json ./

RUN cp .env.example.deployment .env
RUN precompute-addresses.sh

RUN npx hardhat clean

RUN PRIVATE_KEY_FHEVM_DEPLOYER=$(grep PRIVATE_KEY_FHEVM_DEPLOYER .env | cut -d '"' -f 2)
RUN NUM_KMS_SIGNERS=$(grep NUM_KMS_SIGNERS .env | cut -d '"' -f 2)

RUN npx hardhat compile:specific --contract lib
RUN npx hardhat compile:specific --contract gateway

0 comments on commit 6b0fcaf

Please sign in to comment.