generated from PaulRBerg/hardhat-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
87 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export TAG=20241210-44aac5b0 | ||
export AGG_ADDRESS="0x8626a6940E2eb28930eFb4CeF49B2d1F2C9C1199" | ||
export CN1_ADDRESS="0xbDA5747bFD65F08deb54cb465eB87D40e51B197E" | ||
export CN2_ADDRESS="0xdD2FD4581271e230360230F9337D5c0430Bf44C0" | ||
export CN3_ADDRESS="0x2546BcD3c84621e976D8185a91A922aE77ECEc30" | ||
TAG=20241210-44aac5b0 | ||
AGG_ADDRESS=0x8626a6940E2eb28930eFb4CeF49B2d1F2C9C1199 | ||
CN1_ADDRESS=0xbDA5747bFD65F08deb54cb465eB87D40e51B197E | ||
CN2_ADDRESS=0xdD2FD4581271e230360230F9337D5c0430Bf44C0 | ||
CN3_ADDRESS=0x2546BcD3c84621e976D8185a91A922aE77ECEc30 | ||
|
||
export CN1_QUIC_PORT=9091 | ||
export CN2_QUIC_PORT=9092 | ||
export CN3_QUIC_PORT=9093 | ||
export AGG_QUIC_PORT=9094 | ||
export RPC_URL=wss://eth-sepolia.g.alchemy.com/v2/API_KEY | ||
RPC_URL=wss://eth-sepolia.g.alchemy.com/v2/API_KEY | ||
|
||
SEPOLIA_ENCLAVE_ADDRESS=0xCe087F31e20E2F76b6544A2E4A74D4557C8fDf77 | ||
SEPOLIA_CIPHERNODE_REGISTRY_ADDRESS=0x0952388f6028a9Eda93a5041a3B216Ea331d97Ab | ||
SEPOLIA_FILTER_REGISTRY=0xcBaCE7C360b606bb554345b20884A28e41436934 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ ! -f ".env" ]; then | ||
echo "Environment file .env not found!" | ||
exit 1 | ||
fi | ||
|
||
# Source the environment file | ||
set -a # automatically export all variables | ||
source .deploy/.env | ||
set +a # turn off auto-export | ||
|
||
docker stack deploy -c .deploy/docker-compose.yml enclave-stack --detach=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters