make gatekeeper part of the deployment strategy

Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
This commit is contained in:
Uncle Fatso 2025-07-23 22:28:44 +03:00
parent 6e6b64a61b
commit 439fe17371
Signed by: f4ts0
GPG Key ID: 565F4F2860226EBB
2 changed files with 12 additions and 6 deletions

View File

@ -84,6 +84,9 @@ STINKY_TOKEN_SYMBOL=
GHOST_TOKEN_NAME=
GHOST_TOKEN_SYMBOL=
## Initial ghosted supply on gatekeeper
INITIAL_GHOSTED_SUPPLY=
SEPOLIA_TEST_RPC_URL=
SEPOLIA_TEST_API_KEY=
SEPOLIA_TEST_ENDPOINT=

View File

@ -3,7 +3,7 @@ set -e
AVAILIABLE_NETWORKS=(anvil-localnet sepolia-testnet hoodi-testnet)
NETWORK="${AVAILIABLE_NETWORKS[0]}"
START=1
END=12
END=13
VERIFY_NEEDED="--verify"
usage() {
@ -24,9 +24,10 @@ usage() {
echo "7) BondDepository"
echo "8) StakingDistributor"
echo "9) BondingCalculator"
echo "10) AfterPartyFirst"
echo "11) AfterPartySecond"
echo "12) AfterPartyThird"
echo "10) Gatekeeper"
echo "11) AfterPartyFirst"
echo "12) AfterPartySecond"
echo "13) AfterPartyThird"
exit 1
}
@ -105,10 +106,12 @@ for i in $(seq $START $END); do
elif [ "9" == "$i" ]; then
CONTRACT="BondingCalculator"
elif [ "10" == "$i" ]; then
CONTRACT="AfterPartyFirst"
CONTRACT="Gatekeeper"
elif [ "11" == "$i" ]; then
CONTRACT="AfterPartySecond"
CONTRACT="AfterPartyFirst"
elif [ "12" == "$i" ]; then
CONTRACT="AfterPartySecond"
elif [ "13" == "$i" ]; then
CONTRACT="AfterPartyThird"
else
echo "No contract found for index $i"