Skip to content

Commit

Permalink
chore: move eigenda_deploy_config.json file under script/input
Browse files Browse the repository at this point in the history
Needed by kurtosis devnet because of path overwriting issues when in script/ folder directly
  • Loading branch information
samlaf committed Sep 9, 2024
1 parent 93bd866 commit 705c505
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ docs/
data/

script/output/*
script/eigenda_deploy_config.json
script/input/eigenda_deploy_config.json
2 changes: 1 addition & 1 deletion contracts/script/GenerateUnitTestHashes.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import "forge-std/console.sol";

contract GenerateHashes is Script {

string deployConfigPath = "script/eigenda_deploy_config.json";
string deployConfigPath = "script/input/eigenda_deploy_config.json";

// deploy all the EigenDA contracts. Relies on many EL contracts having already been deployed.
function run() external {
Expand Down
2 changes: 1 addition & 1 deletion contracts/script/SetUpEigenDA.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import "forge-std/StdJson.sol";
// forge script script/Deployer.s.sol:SetupEigenDA --rpc-url $RPC_URL --private-key $PRIVATE_KEY --broadcast -vvvv
contract SetupEigenDA is EigenDADeployer, EigenLayerUtils {

string deployConfigPath = "script/eigenda_deploy_config.json";
string deployConfigPath = "script/input/eigenda_deploy_config.json";

// deploy all the EigenDA contracts. Relies on many EL contracts having already been deployed.
function run() external {
Expand Down
2 changes: 1 addition & 1 deletion inabox/deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (env *Config) deployEigenDAContracts() {
if err != nil {
log.Panicf("Error: %s", err.Error())
}
writeFile("script/eigenda_deploy_config.json", data)
writeFile("script/input/eigenda_deploy_config.json", data)

execForgeScript("script/SetUpEigenDA.s.sol:SetupEigenDA", env.Pks.EcdsaMap[deployer.Name].PrivateKey, deployer, nil)

Expand Down

0 comments on commit 705c505

Please sign in to comment.