Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Goerli deployment #168

Merged
merged 2 commits into from
Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions deployments/goerli.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"Network": "goerli",
"Deployer address": "0x341a08926dCa7fa7D135F96E4d76b696e5f6d38d",
"Reserve": "0x933FA52942fEe0B085bF7c1cd2a6B35e69095CFD",
"DripsHub": "0xe42A8Eb9B4432a64900488B77306E307aff144Bb",
"DripsHub logic": "0x185686C95599d037f67BD11F478CD35f340CB99F",
"DripsHub cycle seconds": "604800",
"AddressApp": "0x60CfC3a7006e4bB6998042bdefa30607C36C9Ac1",
"Commit hash": "682ea8a0c21891622e2a952721ab4fc748306788"
}
18 changes: 8 additions & 10 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@ addValuesToFile() {
deploy() {
echo -e "Deploying $1\n"
DEPLOYED_ADDR=$(dapp create "$2" "${@:3}")
verify "$2" "$DEPLOYED_ADDR" "${@:3}"
echo -e "\nDeployed $1 to $DEPLOYED_ADDR\n"
}

verify() {
if [ -n "$ETHERSCAN_API_KEY" ]
then
sleep 5 # give etherscan some time to process the block
dapp verify-contract --async "$@"
else
echo "ETHERSCAN_API_KEY not provided, skipping verification"
fi
if [ -n "$ETHERSCAN_API_KEY" ]
then
echo -e "Verifying $1 on Etherscan\n"
sleep 10 # give etherscan some time to process the block
dapp verify-contract --async "$2" "$DEPLOYED_ADDR" "${@:3}"
else
echo -e "ETHERSCAN_API_KEY not provided, skipping Etherscan verification\n"
fi
}

# Set up the defaults
Expand Down