Skip to content

Commit 00430e5

Browse files
committed
Add placeholders for SPO maintenance/retiring tools infra
1 parent e7ef10a commit 00430e5

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
3+
# Script for retiring a cardano pool (SPO)
4+
5+
NETWORK=$1
6+
NETWORK_MAGIC=$2
7+
SIGNER_NODE=$3
8+
POOL_ARTIFACTS_DIR=data/$NETWORK/$SIGNER_NODE/cardano/pool
9+
mkdir -p $POOL_ARTIFACTS_DIR
10+
cd $POOL_ARTIFACTS_DIR
11+
## TODO: return funds to faucet
12+
## TODO: Create deregisration certificate as in https://github.com/input-output-hk/cardano-node/blob/master/doc/stake-pool-operations/12_retire_stakepool.md
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
3+
# Script for retiring a cardano pool (SPO)
4+
5+
NETWORK=$1
6+
NETWORK_MAGIC=$2
7+
SIGNER_NODE=$3
8+
POOL_ARTIFACTS_DIR=data/$NETWORK/$SIGNER_NODE/cardano/pool
9+
mkdir -p $POOL_ARTIFACTS_DIR
10+
cd $POOL_ARTIFACTS_DIR
11+
## TODO: return funds to faucet
12+
## TODO: Create deregisration certificate as in https://github.com/input-output-hk/cardano-node/blob/master/doc/stake-pool-operations/12_retire_stakepool.md

0 commit comments

Comments
 (0)