leo/examples/vote/run.sh
2023-02-16 09:13:51 -08:00

67 lines
3.3 KiB
Bash
Executable File

echo "
###############################################################################
######## ########
######## STEP 0: Compile the vote program ########
######## ########
###############################################################################
"
# Build the Leo vote program.
(
leo build || exit
)
echo "
###############################################################################
######## ########
######## STEP 1: Propose a new ballot ########
######## ########
######## --------------------------- ########
######## | | Yes | No | ########
######## --------------------------- ########
######## | Votes | | | ########
######## --------------------------- ########
######## ########
###############################################################################
"
# Run the `propose` program function
(
leo run propose || exit
)
echo "
###############################################################################
######## ########
######## STEP 2: Issue a new ballot ticket ########
######## ########
######## --------------------------- ########
######## | | Yes | No | ########
######## --------------------------- ########
######## | Votes | 0 | 0 | ########
######## --------------------------- ########
######## ########
###############################################################################
"
# Run the `new_ticket` program function
(
leo run new_ticket || exit
)
echo "
###############################################################################
######## ########
######## STEP 3: Vote 'Yes' on the ballot ticket ########
######## ########
######## --------------------------- ########
######## | | Yes | No | ########
######## --------------------------- ########
######## | Votes | 1 | 0 | ########
######## --------------------------- ########
######## ########
###############################################################################
"
# Run the `agree` or `disagree` program function
(
leo run agree || exit
# leo run disagree || exit
)