Skip to content

Commit db2b0e5

Browse files
committed
cleanup: rm sanchonet, private, shelley-qa
1 parent d5ac6c9 commit db2b0e5

File tree

12 files changed

+57
-145
lines changed

12 files changed

+57
-145
lines changed

Justfile

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ checkEnv := '''
3535
checkEnvWithoutOverride := '''
3636
ENV="${1:-}"
3737
38-
if ! [[ "$ENV" =~ ^mainnet$|^preprod$|^preview$|^private$|^sanchonet$|^shelley-qa$|^demo$ ]]; then
39-
echo "Error: only node environments for demo, mainnet, preprod, preview, private, sanchonet and shelley-qa are supported"
38+
if ! [[ "$ENV" =~ ^mainnet$|^preprod$|^preview$|^demo$ ]]; then
39+
echo "Error: only node environments for demo, mainnet, preprod and preview are supported"
4040
exit 1
4141
fi
4242
@@ -46,12 +46,6 @@ checkEnvWithoutOverride := '''
4646
MAGIC="1"
4747
elif [ "$ENV" = "preview" ]; then
4848
MAGIC="2"
49-
elif [ "$ENV" = "shelley-qa" ]; then
50-
MAGIC="3"
51-
elif [ "$ENV" = "sanchonet" ]; then
52-
MAGIC="4"
53-
elif [ "$ENV" = "private" ]; then
54-
MAGIC="5"
5549
elif [ "$ENV" = "demo" ]; then
5650
MAGIC="42"
5751
fi
@@ -387,8 +381,8 @@ dedelegate-pools ENV *IDXS=null:
387381
set -euo pipefail
388382
{{checkEnvWithoutOverride}}
389383

390-
if ! [[ "$ENV" =~ ^preprod$|^preview$|^private$|^sanchonet$|^shelley-qa$ ]]; then
391-
echo "Error: only node environments for preprod, preview, private, sanchonet and shelley-qa are supported"
384+
if ! [[ "$ENV" =~ ^preprod$|^preview$ ]]; then
385+
echo "Error: only node environments for preprod and preview are supported"
392386
exit 1
393387
fi
394388

@@ -409,10 +403,8 @@ dedelegate-pools ENV *IDXS=null:
409403
CARDANO_CLI="cardano-cli"
410404
elif [ "${UNSTABLE:-}" = "true" ]; then
411405
CARDANO_CLI="cardano-cli-ng"
412-
elif [[ "$ENV" =~ ^preprod$|^preview$|^shelley-qa$ ]]; then
406+
elif [[ "$ENV" =~ ^preprod$|^preview$ ]]; then
413407
CARDANO_CLI="cardano-cli"
414-
elif [[ "$ENV" =~ ^private$|^sanchonet$ ]]; then
415-
CARDANO_CLI="cardano-cli-ng"
416408
fi
417409

418410
echo
@@ -591,7 +583,7 @@ query-tip-all:
591583
#!/usr/bin/env bash
592584
set -euo pipefail
593585
QUERIED=0
594-
for i in mainnet preprod preview private shelley-qa sanchonet demo; do
586+
for i in mainnet preprod preview demo; do
595587
TIP=$(just query-tip $i 2>&1) && {
596588
echo "Environment: $i"
597589
echo "$TIP"
@@ -614,9 +606,9 @@ query-tip ENV TESTNET_MAGIC=null:
614606
CARDANO_CLI="cardano-cli"
615607
elif [ "${UNSTABLE:-}" = "true" ]; then
616608
CARDANO_CLI="cardano-cli-ng"
617-
elif [[ "$ENV" =~ ^mainnet$|^preprod$|^preview$|^shelley-qa$ ]]; then
609+
elif [[ "$ENV" =~ ^mainnet$|^preprod$|^preview$ ]]; then
618610
CARDANO_CLI="cardano-cli"
619-
elif [[ "$ENV" =~ ^private$|^sanchonet$|^demo$ ]]; then
611+
elif [[ "$ENV" =~ ^demo$ ]]; then
620612
CARDANO_CLI="cardano-cli-ng"
621613
fi
622614

@@ -1141,8 +1133,8 @@ start-node ENV:
11411133
set -euo pipefail
11421134
{{stateDir}}
11431135

1144-
if ! [[ "{{ENV}}" =~ ^mainnet$|^preprod$|^preview$|^private$|^sanchonet$|^shelley-qa$ ]]; then
1145-
echo "Error: only node environments for mainnet, preprod, preview, private, sanchonet and shelley-qa are supported for start-node recipe"
1136+
if ! [[ "{{ENV}}" =~ ^mainnet$|^preprod$|^preview$ ]]; then
1137+
echo "Error: only node environments for mainnet, preprod, and preview are supported for start-node recipe"
11461138
exit 1
11471139
fi
11481140

@@ -1178,7 +1170,7 @@ start-node ENV:
11781170
stop-all:
11791171
#!/usr/bin/env bash
11801172
set -euo pipefail
1181-
for i in mainnet preprod preview private shelley-qa sanchonet demo; do
1173+
for i in mainnet preprod preview demo; do
11821174
just stop-node $i
11831175
done
11841176

@@ -1318,8 +1310,8 @@ truncate-chain ENV SLOT:
13181310
[ -n "${DEBUG:-}" ] && set -x
13191311
{{stateDir}}
13201312

1321-
if ! [[ "{{ENV}}" =~ ^mainnet$|^preprod$|^preview$|^private$|^sanchonet$|^shelley-qa$ ]]; then
1322-
echo "Error: only node environments for mainnet, preprod, preview, private, sanchonet and shelley-qa are supported for truncate-chain recipe"
1313+
if ! [[ "{{ENV}}" =~ ^mainnet$|^preprod$|^preview$ ]]; then
1314+
echo "Error: only node environments for mainnet, preprod, and preview are supported for truncate-chain recipe"
13231315
exit 1
13241316
fi
13251317

docs/explain/faucet-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ As general guidance, faucet pool delegation sizes, UTxO sizes, UTxO quantity
8181
and `max_stake_key_index` values generally fall into one of the following
8282
categories:
8383
```
84-
# Preview, Preprod, Shelley-qa:
84+
# Preview, Preprod:
8585
Faucet UTxO: 10000200000 # Funded via distribute.py, ~50,000 UTxO, below
8686
Faucet Pool Delegation: 1000000000000 # Funded via setup-delegation-accounts.py, below
8787
Faucet delegation_utxo_size: 10 # Via faucet config file
8888
max_stake_key_index: 500 # Via faucet config file
8989
90-
# Sanchonet
90+
# Historical Sanchonet
9191
Faucet UTxO: 100000200000 # Funded via distribute.py, ~10,000 UTxO, below
9292
Faucet Pool Delegation: 10000000000000 # Funded via setup-delegation-accounts.py, below
9393
Faucet delegation_utxo_size: 10 # Via faucet config file

docs/explain/new-network.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ First, set parameters for nix helper jobs:
1111
# USE_ENCRYPTION and USE_DECRYPTION are false as we'll apply encryption
1212
# as a secondary step before committing to the repo so that we don't
1313
# make the initial spin up more complicated than necessary.
14+
#
15+
# This example uses the historical "private" network which is occasionally
16+
# spun up for short term testing.
1417
export ENV=private
1518
export DEBUG=true
1619
export UNSTABLE=true

docs/explain/vote-with-pools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ finally transaction submission.
88
For a detailed look a manually voting with a pool, the following procedure may
99
be used.
1010

11-
Set env vars for voting. In this example, we'll use sanchonet and a given
11+
Set env vars for voting. In this example, we'll use preview and a given
1212
action id and index. Adjust accordingly for your use case.
1313
```bash
14-
export ENV=sanchonet
15-
export CARDANO_NODE_NETWORK_ID=4
16-
export TESTNET_MAGIC=4
14+
export ENV=preview
15+
export CARDANO_NODE_NETWORK_ID=2
16+
export TESTNET_MAGIC=2
1717
export ACTION_ID=9ac7d4f3bb9367a35c3b204e96bbee979f7e7a5aeb004429bccb1ba911805a2c
1818
export ACTION_IDX=0
1919
```

flake/cluster.nix

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ with flake.lib; {
8686
// (mkGroup "preview1" "preview" "preview-node.${dns}" "preview1-node.${dns}" false false)
8787
// (mkGroup "preview2" "preview" "preview-node.${dns}" "preview2-node.${dns}" false false)
8888
// (mkGroup "preview3" "preview" "preview-node.${dns}" "preview3-node.${dns}" false false)
89-
// (mkGroup "sanchonet1" "sanchonet" "sanchonet-node.${dns}" "sanchonet1-node.${dns}" true false)
90-
// (mkGroup "sanchonet2" "sanchonet" "sanchonet-node.${dns}" "sanchonet2-node.${dns}" true false)
91-
// (mkGroup "sanchonet3" "sanchonet" "sanchonet-node.${dns}" "sanchonet3-node.${dns}" true false)
9289
// (mkGroup "mainnet1" "mainnet" null null false false)
9390
// (mkGroup "misc1" "preprod" null null false false)
9491
// (mkGroup "buildkite1" "buildkite" null null false false);

flake/colmena.nix

Lines changed: 23 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ in
2323

2424
# Instance defs:
2525
# c5a-large.aws.instance.instance_type = "c5a.large";
26-
c5ad-large.aws.instance.instance_type = "c5ad.large";
26+
# c5ad-large.aws.instance.instance_type = "c5ad.large";
2727
# c6i-xlarge.aws.instance.instance_type = "c6i.xlarge";
2828
# c6i-12xlarge.aws.instance.instance_type = "c6i.12xlarge";
2929
# i7ie-2xlarge.aws.instance.instance_type = "i7ie.2xlarge";
@@ -89,16 +89,13 @@ in
8989
];
9090
};
9191

92-
mkCustomNode = flakeInput:
93-
node
94-
// {
95-
cardano-parts.perNode = {
96-
pkgs = {inherit (inputs.${flakeInput}.packages.x86_64-linux) cardano-cli cardano-node cardano-submit-api;};
97-
};
98-
};
99-
100-
nodeHd = mkCustomNode "cardano-node-utxo-hd";
101-
# nodeNewTracing = mkCustomNode "cardano-new-tracing";
92+
# mkCustomNode = flakeInput:
93+
# node
94+
# // {
95+
# cardano-parts.perNode = {
96+
# pkgs = {inherit (inputs.${flakeInput}.packages.x86_64-linux) cardano-cli cardano-node cardano-submit-api;};
97+
# };
98+
# };
10299

103100
# Mithril signing config
104101
mithrilRelay = {imports = [inputs.cardano-parts.nixosModules.profile-mithril-relay];};
@@ -189,19 +186,19 @@ in
189186
# ];
190187
# };
191188

192-
pparamsApi = {
193-
imports = [
194-
nixosModules.profile-cardano-node-pparams-api
195-
{
196-
services = {
197-
cardano-node.shareNodeSocket = true;
198-
cardano-node-pparams-api = {
199-
acmeEmail = "[email protected]";
200-
};
201-
};
202-
}
203-
];
204-
};
189+
# pparamsApi = {
190+
# imports = [
191+
# nixosModules.profile-cardano-node-pparams-api
192+
# {
193+
# services = {
194+
# cardano-node.shareNodeSocket = true;
195+
# cardano-node-pparams-api = {
196+
# acmeEmail = "[email protected]";
197+
# };
198+
# };
199+
# }
200+
# ];
201+
# };
205202

206203
mithrilRelease = {imports = [nixosModules.mithril-release-pin];};
207204

@@ -268,7 +265,6 @@ in
268265

269266
preprodSmash = {services.cardano-smash.serverAliases = flatten (map (e: ["${e}.${domain}" "${e}.world.dev.cardano.org"]) ["preprod-smash" "preprod-explorer"]);};
270267
previewSmash = {services.cardano-smash.serverAliases = flatten (map (e: ["${e}.${domain}" "${e}.world.dev.cardano.org"]) ["preview-smash" "preview-explorer"]);};
271-
sanchoSmash = {services.cardano-smash.serverAliases = flatten (map (e: ["${e}.${domain}" "${e}.world.dev.cardano.org"]) ["sanchonet-smash" "sanchonet-explorer"]);};
272268

273269
faucet = {
274270
imports = [
@@ -284,7 +280,6 @@ in
284280

285281
preprodFaucet = {services.cardano-faucet.serverAliases = ["faucet.preprod.${domain}" "faucet.preprod.world.dev.cardano.org"];};
286282
previewFaucet = {services.cardano-faucet.serverAliases = ["faucet.preview.${domain}" "faucet.preview.world.dev.cardano.org"];};
287-
sanchoFaucet = {services.cardano-faucet.serverAliases = ["faucet.sanchonet.${domain}" "faucet.sanchonet.world.dev.cardano.org"];};
288283

289284
metadata = {
290285
imports = [
@@ -309,7 +304,6 @@ in
309304
# Preprod to be applied once preprod pools finish their retirement forging epoch and a CNAME redirect is applied
310305
preprodRelMig = mkWorldRelayMig 30000;
311306
previewRelMig = mkWorldRelayMig 30002;
312-
sanchoRelMig = mkWorldRelayMig 30004;
313307

314308
newMetrics = {
315309
imports = [
@@ -726,52 +720,6 @@ in
726720
preview3-rel-c-1 = {imports = [us-east-2 t3a-large (ebs 80) (nodeRamPct 60) (group "preview3") node rel pre previewRelMig mithrilRelay (declMSigner "preview3-bp-c-1") tcpTxOpt];};
727721
# ---------------------------------------------------------------------------------------------------------
728722

729-
# ---------------------------------------------------------------------------------------------------------
730-
# Sanchonet, pre-release
731-
# State: STOPPED
732-
sanchonet1-bp-a-1 = {imports = [eu-central-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet1") node bp (declMRel "sanchonet1-rel-a-1") disableAlertCount];};
733-
sanchonet1-rel-a-1 = {imports = [eu-central-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet1") node rel sanchoRelMig mithrilRelay (declMSigner "sanchonet1-bp-a-1") disableAlertCount];};
734-
sanchonet1-rel-a-2 = {imports = [eu-central-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet1") node rel sanchoRelMig disableAlertCount];};
735-
sanchonet1-rel-a-3 = {imports = [eu-central-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet1") node rel sanchoRelMig tcpTxOpt disableAlertCount];};
736-
sanchonet1-dbsync-a-1 = {imports = [eu-central-1 m5a-large (ebs 80) (group "sanchonet1") dbsync smash sanchoSmash nixosModules.govtool-backend disableAlertCount];};
737-
sanchonet1-faucet-a-1 = {imports = [eu-central-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet1") node faucet sanchoFaucet disableAlertCount];};
738-
# Smallest d variant for testing
739-
sanchonet1-test-a-1 = {
740-
imports = [
741-
eu-central-1
742-
c5ad-large
743-
# i7ie-2xlarge
744-
(ebs 80)
745-
(nodeRamPct 60)
746-
(group "sanchonet1")
747-
node
748-
newMetrics
749-
pparamsApi
750-
tcpTxOpt
751-
disableAlertCount
752-
(nixos: {
753-
# environment.etc."cardano-node/peer-snapshot-0.json".source = builtins.toFile "peer-snapshot.json" "{}";
754-
# environment.etc."cardano-node/peer-snapshot-0.json".source = builtins.toFile "peer-snapshot.json" (builtins.toJSON nixos.config.cardano-parts.perNode.lib.cardanoLib.environments.sanchonet.peerSnapshot);
755-
# services.cardano-node.peerSnapshotFile = i: "/etc/cardano-node/peer-snapshot-${toString i}.json";
756-
757-
# environment.etc."cardano-node/peer-snapshot-0.json".source = builtins.toFile "peer-snapshot.json" "{}";
758-
environment.etc."cardano-node/peer-snapshot.json".source = builtins.toFile "peer-snapshot.json" (builtins.toJSON nixos.config.cardano-parts.perNode.lib.cardanoLib.environments.sanchonet.peerSnapshot);
759-
services.cardano-node.peerSnapshotFile = "/etc/cardano-node/peer-snapshot.json";
760-
})
761-
];
762-
};
763-
764-
sanchonet2-bp-b-1 = {imports = [eu-west-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet2") node bp (declMRel "sanchonet2-rel-b-1") disableAlertCount];};
765-
sanchonet2-rel-b-1 = {imports = [eu-west-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet2") node rel sanchoRelMig mithrilRelay (declMSigner "sanchonet2-bp-b-1") disableAlertCount];};
766-
sanchonet2-rel-b-2 = {imports = [eu-west-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet2") node rel sanchoRelMig disableAlertCount];};
767-
sanchonet2-rel-b-3 = {imports = [eu-west-1 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet2") node rel sanchoRelMig tcpTxOpt disableAlertCount];};
768-
769-
sanchonet3-bp-c-1 = {imports = [us-east-2 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet3") node newMetrics bp (declMRel "sanchonet3-rel-c-1") disableAlertCount];};
770-
sanchonet3-rel-c-1 = {imports = [us-east-2 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet3") node rel sanchoRelMig mithrilRelay (declMSigner "sanchonet3-bp-c-1") disableAlertCount];};
771-
sanchonet3-rel-c-2 = {imports = [us-east-2 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet3") node rel sanchoRelMig disableAlertCount];};
772-
sanchonet3-rel-c-3 = {imports = [us-east-2 t3a-medium (ebs 80) (nodeRamPct 60) (group "sanchonet3") node newMetrics rel sanchoRelMig tcpTxOpt disableAlertCount];};
773-
# ---------------------------------------------------------------------------------------------------------
774-
775723
# ---------------------------------------------------------------------------------------------------------
776724
# Mainnet
777725
# Rel-a-1 is set up as a fake block producer for gc latency testing during ledger snapshots
@@ -814,8 +762,8 @@ in
814762
};
815763

816764
# Also keep the lmdb and extra debug mainnet node in stopped state for now
817-
mainnet1-rel-a-2 = {imports = [eu-central-1 m5a-large (ebs 300) (group "mainnet1") node (openFwTcp 3001) nodeHd lmdb ram8gib disableAlertCount];};
818-
mainnet1-rel-a-3 = {imports = [eu-central-1 m5a-large (ebs 300) (group "mainnet1") node (openFwTcp 3001) nodeHd lmdb ram8gib disableAlertCount];};
765+
mainnet1-rel-a-2 = {imports = [eu-central-1 m5a-large (ebs 300) (group "mainnet1") node (openFwTcp 3001) lmdb ram8gib disableAlertCount];};
766+
mainnet1-rel-a-3 = {imports = [eu-central-1 m5a-large (ebs 300) (group "mainnet1") node (openFwTcp 3001) lmdb ram8gib disableAlertCount];};
819767
mainnet1-rel-a-4 = {imports = [eu-central-1 r5-xlarge (ebs 300) (group "mainnet1") node (openFwTcp 3001)];};
820768
# ---------------------------------------------------------------------------------------------------------
821769

flake/opentofu/cluster/route53.nix-import

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,12 @@ in {
2828
# Explorers
2929
cname_explorer_preprod = mkResource {name = "preprod-explorer.${domain}"; records = ["preprod1-dbsync-a-1.${domain}"];};
3030
cname_explorer_preview = mkResource {name = "preview-explorer.${domain}"; records = ["preview1-dbsync-a-1.${domain}"];};
31-
cname_explorer_sanchonet = mkResource {name = "sanchonet-explorer.${domain}"; records = ["sanchonet1-dbsync-a-1.${domain}"];};
3231

3332
# Faucets
3433
cname_faucet_preprod = mkResource {name = "faucet.preprod.${domain}"; records = ["preprod1-faucet-a-1.${domain}"];};
3534
cname_faucet_preview = mkResource {name = "faucet.preview.${domain}"; records = ["preview1-faucet-a-1.${domain}"];};
36-
cname_faucet_sanchonet = mkResource {name = "faucet.sanchonet.${domain}"; records = ["sanchonet1-faucet-a-1.${domain}"];};
3735

3836
# Govtool
39-
cname_govtool_sanchonet = mkResource {name = "sanchonet-govtool.${domain}"; records = ["sanchonet1-dbsync-a-1.${domain}"];};
4037

4138
# Ipfs for all testnets
4239
cname_metadata_ipfs = mkResource {name = "ipfs.${domain}"; records = ["misc1-metadata-a-1.${domain}"];};
@@ -47,5 +44,4 @@ in {
4744
# Smash
4845
cname_smash_preprod = mkResource {name = "preprod-smash.${domain}"; records = ["preprod1-dbsync-a-1.${domain}"];};
4946
cname_smash_preview = mkResource {name = "preview-smash.${domain}"; records = ["preview1-dbsync-a-1.${domain}"];};
50-
cname_smash_sanchonet = mkResource {name = "sanchonet-smash.${domain}"; records = ["sanchonet1-dbsync-a-1.${domain}"];};
5147
}

flake/opentofu/grafana/alerts/cardano-node-divergence.nix-import

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ in {
4444
(mkDivergenceAlert {env = "mainnet";})
4545
(mkDivergenceAlert {env = "preprod";})
4646
(mkDivergenceAlert {env = "preview";})
47-
(mkDivergenceAlert {env = "private";})
48-
(mkDivergenceAlert {env = "sanchonet";})
49-
(mkDivergenceAlert {env = "shelley-qa";})
5047
(mkDivergenceAlert {
5148
env = "mainnet";
5249
useLegacyTracing = false;
@@ -59,17 +56,5 @@ in {
5956
env = "preview";
6057
useLegacyTracing = false;
6158
})
62-
(mkDivergenceAlert {
63-
env = "private";
64-
useLegacyTracing = false;
65-
})
66-
(mkDivergenceAlert {
67-
env = "sanchonet";
68-
useLegacyTracing = false;
69-
})
70-
(mkDivergenceAlert {
71-
env = "shelley-qa";
72-
useLegacyTracing = false;
73-
})
7459
];
7560
}

flake/opentofu/grafana/blackbox/blackbox.nix-import

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
"https://book.world.dev.cardano.org"
66
"https://faucet.preprod.play.dev.cardano.org"
77
"https://faucet.preview.play.dev.cardano.org"
8-
# "https://faucet.private.play.dev.cardano.org"
9-
"https://faucet.sanchonet.play.dev.cardano.org"
10-
# "https://faucet.shelley-qa.play.dev.cardano.org"
118
"https://metadata.play.dev.cardano.org"
129
"https://metadata.world.dev.cardano.org"
1310
]

scripts/dbsync-pool-perf.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ with
235235
select distinct view from (
236236
select view from faucet_pool_not_perf
237237
-- No longer automatically include pools over :lovelace for dedelegation as:
238-
-- a) some network faucets now use pool deleg amounts other than 1M, ex: sanchonet/private @ 10M pool deleg
238+
-- a) some historical network faucets have used pool deleg amounts other than 1M, ex: sanchonet/private @ 10M pool deleg
239239
-- b) if large pools are performing well, de-delegating will drop chain density further which may not be desirable
240240
-- union
241241
-- select view from faucet_pool_over_lt

0 commit comments

Comments
 (0)