-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update env vars * fix address assertion casing * made sncast point to juno * rm debug echos * revert to sepolia sncast * merge conflict fixes * changed round durations to vault constructor args * scarb fmt * Update .env.example * update ABIs * fix script for sepolia * Update constants.cairo * update foundry for sepolia * comment updates * update sncast script * added new constructor args to docker/launcer setup * env example updates * Move image args to runtime env vars + deployment scripts cleanup * Update .env.example --------- Co-authored-by: Eugen Patru <[email protected]>
- Loading branch information
1 parent
9a4dfe3
commit 81bbd8a
Showing
23 changed files
with
339 additions
and
210 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,13 +1,17 @@ | ||
FOSSIL_PROCESSOR_ADDRESS=0x0768D44B56fD0F6f660A449697c906391b1aE682B30086F4d521c4c414d399d9 | ||
VAULT_ROUND_DURATION=5555 | ||
VAULT_ALPHA=2500 | ||
VAULT_STRIKE=0 | ||
ROUND_TRANSITION_DURATION=180 # 3 min | ||
AUCTION_DURATION=180 # 3 min | ||
ROUND_DURATION=720 # 12 min | ||
|
||
SIGNER_PRIVATE_KEY=0x2bff1b26236b72d8a930be1dfbee09f79a536a49482a4c8b8f1030e2ab3bf1b | ||
SIGNER_ADDRESS=0x101 | ||
STRK_TOKEN=0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7 | ||
DEVNET_RPC=http://host.docker.internal:6060 | ||
DEVNET_RPC=http://localhost:6060 | ||
|
||
# Copy this from the Argent extension | ||
ARGENT_WALLET_ADDRESS=0x0768d44b56fd0f6f660a449697c906391b1ae682b30086f4d521c4c414d399d9 | ||
# Copy this from the Argent extension | ||
ARGENT_WALLET_ADDRESS= | ||
# These 2 can be found in the Argent extenstion: Settings -> Developer Settings -> Deployment Data | ||
ARGENT_WALLET_SALT=0x15337fc442ab75a3589746a426987f9dfb49b3abd8d447dab3550c3ead971b | ||
ARGENT_WALLET_CONSTRUCTOR_ARG1=37459222005894634870375857944293937532221532474070351093573957772534191899 | ||
ARGENT_WALLET_SALT= | ||
ARGENT_WALLET_CONSTRUCTOR_ARG1= |
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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
version: '3.8' | ||
version: "3.8" | ||
|
||
services: | ||
pitchlake_starknet: | ||
platform: linux/amd64 | ||
build: | ||
context: . | ||
args: | ||
- SIGNER_PRIVATE_KEY=${SIGNER_PRIVATE_KEY} | ||
- DEVNET_RPC=${DEVNET_RPC} | ||
- SIGNER_ADDRESS=${SIGNER_ADDRESS} | ||
- FOSSIL_PROCESSOR_ADDRESS=${FOSSIL_PROCESSOR_ADDRESS} | ||
- VAULT_ROUND_DURATION=${VAULT_ROUND_DURATION} | ||
- ARGENT_ADDRESS=${ARGENT_WALLET_ADDRESS} | ||
- ARGENT_SALT=${ARGENT_WALLET_SALT} | ||
- ARGENT_CONSTRUCTOR_ARG1=${ARGENT_WALLET_CONSTRUCTOR_ARG1} | ||
environment: | ||
STARKNET_PRIVATE_KEY: ${PITCHLAKE_DEPLOYER_PRIVATE_KEY} | ||
STARKNET_RPC: ${DEVNET_RPC} | ||
SIGNER_ADDRESS: ${PITCHLAKE_DEPLOYER_ADDRESS} | ||
FOSSIL_PROCESSOR_ADDRESS: ${FOSSIL_ADDRESS} | ||
VAULT_ALPHA: ${VAULT_ALPHA} | ||
VAULT_STRIKE: ${VAULT_STRIKE} | ||
ROUND_TRANSITION_DURATION: ${ROUND_TRANSITION_DURATION} | ||
AUCTION_DURATION: ${AUCTION_DURATION} | ||
ROUND_DURATION: ${ROUND_DURATION} | ||
ARGENT_ADDRESS: ${ARGENT_WALLET_ADDRESS} | ||
ARGENT_SALT: ${ARGENT_WALLET_SALT} | ||
ARGENT_CONSTRUCTOR_ARG1: ${ARGENT_WALLET_CONSTRUCTOR_ARG1} |
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
Oops, something went wrong.