Skip to content
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
160 changes: 0 additions & 160 deletions configuration/configuration-silent.yaml

This file was deleted.

189 changes: 0 additions & 189 deletions configuration/log-configuration.yaml

This file was deleted.

15 changes: 11 additions & 4 deletions scripts/SCRIPTS.md → scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ Connect with all the core nodes and store the forks from a common prefix. If an

#### Usage:

1) Run `./scripts/shelley-testnet2.sh`.
1) Run `./scripts/shelley-testnet-live.sh`.

2) Run `./scripts/chairman.sh` in a separate terminal.
2) Run `./scripts/chairman.sh ./socket/0 ./socket/1 ./socket/2` in a separate terminal.


## Connect to mainnet
Expand All @@ -109,12 +109,19 @@ This script connects to several IOHK nodes on mainnet.
Following the instructions above, the window of the terminal will be split into four panes.
Three of the panes showing the nodes running and a shell to enter commands for transaction submission, e.g.

Create a tx:

```
./scripts/issue-genesis-utxo-expenditure.sh transaction-file
```
Submit the tx:

```
./scripts/submit-tx.sh generated-tx-file
./scripts/submit-tx.sh transaction-file
```
The `submit-tx.sh` script by default sends the transaction to node with node id 0.

See cardano-cli's Transactions section for instructions on how to generate a tx.
See cardano-cli's [Transactions](../cardano-node/README.md#transactions) section for instructions on how to generate a tx.

## Startup testnet with dns

Expand Down
2 changes: 1 addition & 1 deletion scripts/generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CLI="$(executable_quiet_runner cardano-cli)"

NOW=`date "+%Y-%m-%d 00:00:00"`
NETARGS=(
--config "configuration/log-configuration.yaml"
--config "configuration/log-config-0.yaml"
--genesis-file "${genesis_file}"
--socket-path "./socket/0"

Expand Down