-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from Phoenix-Protocol-Group/deployment-script
deployment-script
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Ensure the script exits on any errors | ||
set -e | ||
|
||
# Check if the arguments are provided | ||
if [ $# -ne 1 ]; then | ||
echo "Usage: $0 <identity_string>" | ||
exit 1 | ||
fi | ||
|
||
IDENTITY_STRING=$1 | ||
NETWORK="testnet" | ||
|
||
echo "Build and optimize the contracts..."; | ||
echo "Building the contracts..."; | ||
|
||
make build > /dev/null | ||
cd target/wasm32-unknown-unknown/release | ||
|
||
echo "Contracts compiled." | ||
echo "Optimizing contracts..." | ||
|
||
soroban contract optimize --wasm phoenix_nft_collections.wasm | ||
soroban contract optimize --wasm phoenix_nft_deployer.wasm | ||
|
||
echo "Contracts optimized." | ||
|
||
echo "Deploy and install the deployer contract and capture its contract ID and hash..." | ||
|
||
DEPLOYER_ADDR=$( | ||
soroban contract deploy \ | ||
--wasm phoenix_nft_deployer.optimized.wasm \ | ||
--source $IDENTITY_STRING \ | ||
--network $NETWORK | ||
) | ||
|
||
DEPLOYER_WASM_HASH=$( | ||
soroban contract install \ | ||
--wasm phoenix_nft_deployer.optimized.wasm \ | ||
--source $IDENTITY_STRING \ | ||
--network $NETWORK | ||
) | ||
|
||
echo "Deployer contract deployed and installed." | ||
|
||
echo "Deploy and install the collections contract and capture its contract ID and hash..." | ||
|
||
COLLECTIONS_ADDR=$( | ||
soroban contract deploy \ | ||
--wasm phoenix_nft_collections.optimized.wasm \ | ||
--source $IDENTITY_STRING \ | ||
--network $NETWORK | ||
) | ||
|
||
COLLECTIONS_WASM_HASH=$( | ||
soroban contract install \ | ||
--wasm phoenix_nft_collections.optimized.wasm \ | ||
--source $IDENTITY_STRING \ | ||
--network $NETWORK | ||
) | ||
|
||
echo "Collections contract deployed and installed." | ||
|
||
echo "Initialize deployer with the collections hash..." | ||
|
||
soroban contract invoke \ | ||
--id $DEPLOYER_ADDR \ | ||
--source $IDENTITY_STRING \ | ||
--network $NETWORK \ | ||
-- \ | ||
initialize \ | ||
--collections_wasm_hash $COLLECTIONS_WASM_HASH | ||
|
||
echo "Deployer initialized." | ||
|
||
echo "#############################" | ||
|
||
echo "Setup complete!" | ||
echo "Deployer address: $DEPLOYER_ADDR" | ||
echo "Deployer wasm hash: $DEPLOYER_WASM_HASH" | ||
echo "Collections address: $COLLECTIONS_ADDR" | ||
echo "Collections wasm hash: $COLLECTIONS_WASM_HASH" |