forked from input-output-hk/mithril
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevnet-mkfiles.sh
More file actions
executable file
·45 lines (30 loc) · 1009 Bytes
/
devnet-mkfiles.sh
File metadata and controls
executable file
·45 lines (30 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
set -e
# Debug mode
if [[ -n $DEBUG ]]; then
set -x
fi
# Script directory variable
SCRIPT_DIRECTORY=$(dirname $0)
# Init script
. $SCRIPT_DIRECTORY/mkfiles/mkfiles-init.sh
# Generate the topology
. ${SCRIPT_DIRECTORY}/mkfiles/mkfiles-topology.sh
# Generate Cardano devnet artifacts
. $SCRIPT_DIRECTORY/mkfiles/mkfiles-cardano.sh
# Generate the start scripts
. $SCRIPT_DIRECTORY/mkfiles/mkfiles-start.sh
# Generate the pools scripts
. ${SCRIPT_DIRECTORY}/mkfiles/mkfiles-pools.sh
# Generate the Mithril delegation scripts
. ${SCRIPT_DIRECTORY}/mkfiles/mkfiles-mithril-delegation.sh
# Generate the Mithril era scripts
. ${SCRIPT_DIRECTORY}/mkfiles/mkfiles-mithril-era.sh
# Generate the Mithril payment scripts
. ${SCRIPT_DIRECTORY}/mkfiles/mkfiles-mithril-payment.sh
# Generate the query scripts
. $SCRIPT_DIRECTORY/mkfiles/mkfiles-query.sh
# Generate the docker files
. $SCRIPT_DIRECTORY/mkfiles/mkfiles-docker.sh
# Cleanup
. $SCRIPT_DIRECTORY/mkfiles/mkfiles-cleanup.sh