├── .gitattributes ├── .github ├── scripts │ ├── download-all.sh │ └── update-when-new.sh └── workflows │ └── refresh-configurations.yaml ├── README.md └── network ├── mainnet ├── cardano-db-sync │ └── config.json ├── cardano-node │ ├── config.json │ └── topology.json ├── cardano-submit-api │ └── config.json └── genesis │ ├── alonzo.json │ ├── byron.json │ ├── conway.json │ └── shelley.json ├── preprod ├── cardano-db-sync │ └── config.json ├── cardano-node │ ├── config.json │ └── topology.json ├── cardano-submit-api │ └── config.json └── genesis │ ├── alonzo.json │ ├── byron.json │ ├── conway.json │ └── shelley.json ├── preview ├── cardano-db-sync │ └── config.json ├── cardano-node │ ├── config.json │ └── topology.json ├── cardano-submit-api │ └── config.json └── genesis │ ├── alonzo.json │ ├── byron.json │ ├── conway.json │ └── shelley.json └── sanchonet ├── cardano-db-sync └── config.json ├── cardano-node ├── config.json └── topology.json ├── cardano-submit-api └── config.json └── genesis ├── alonzo.json ├── byron.json ├── conway.json └── shelley.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.github/scripts/download-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/.github/scripts/download-all.sh -------------------------------------------------------------------------------- /.github/scripts/update-when-new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/.github/scripts/update-when-new.sh -------------------------------------------------------------------------------- /.github/workflows/refresh-configurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/.github/workflows/refresh-configurations.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/README.md -------------------------------------------------------------------------------- /network/mainnet/cardano-db-sync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/cardano-db-sync/config.json -------------------------------------------------------------------------------- /network/mainnet/cardano-node/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/cardano-node/config.json -------------------------------------------------------------------------------- /network/mainnet/cardano-node/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/cardano-node/topology.json -------------------------------------------------------------------------------- /network/mainnet/cardano-submit-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/cardano-submit-api/config.json -------------------------------------------------------------------------------- /network/mainnet/genesis/alonzo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/genesis/alonzo.json -------------------------------------------------------------------------------- /network/mainnet/genesis/byron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/genesis/byron.json -------------------------------------------------------------------------------- /network/mainnet/genesis/conway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/genesis/conway.json -------------------------------------------------------------------------------- /network/mainnet/genesis/shelley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/mainnet/genesis/shelley.json -------------------------------------------------------------------------------- /network/preprod/cardano-db-sync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/cardano-db-sync/config.json -------------------------------------------------------------------------------- /network/preprod/cardano-node/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/cardano-node/config.json -------------------------------------------------------------------------------- /network/preprod/cardano-node/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/cardano-node/topology.json -------------------------------------------------------------------------------- /network/preprod/cardano-submit-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/cardano-submit-api/config.json -------------------------------------------------------------------------------- /network/preprod/genesis/alonzo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/genesis/alonzo.json -------------------------------------------------------------------------------- /network/preprod/genesis/byron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/genesis/byron.json -------------------------------------------------------------------------------- /network/preprod/genesis/conway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/genesis/conway.json -------------------------------------------------------------------------------- /network/preprod/genesis/shelley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preprod/genesis/shelley.json -------------------------------------------------------------------------------- /network/preview/cardano-db-sync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/cardano-db-sync/config.json -------------------------------------------------------------------------------- /network/preview/cardano-node/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/cardano-node/config.json -------------------------------------------------------------------------------- /network/preview/cardano-node/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/cardano-node/topology.json -------------------------------------------------------------------------------- /network/preview/cardano-submit-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/cardano-submit-api/config.json -------------------------------------------------------------------------------- /network/preview/genesis/alonzo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/genesis/alonzo.json -------------------------------------------------------------------------------- /network/preview/genesis/byron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/genesis/byron.json -------------------------------------------------------------------------------- /network/preview/genesis/conway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/genesis/conway.json -------------------------------------------------------------------------------- /network/preview/genesis/shelley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/preview/genesis/shelley.json -------------------------------------------------------------------------------- /network/sanchonet/cardano-db-sync/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/cardano-db-sync/config.json -------------------------------------------------------------------------------- /network/sanchonet/cardano-node/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/cardano-node/config.json -------------------------------------------------------------------------------- /network/sanchonet/cardano-node/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/cardano-node/topology.json -------------------------------------------------------------------------------- /network/sanchonet/cardano-submit-api/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/cardano-submit-api/config.json -------------------------------------------------------------------------------- /network/sanchonet/genesis/alonzo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/genesis/alonzo.json -------------------------------------------------------------------------------- /network/sanchonet/genesis/byron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/genesis/byron.json -------------------------------------------------------------------------------- /network/sanchonet/genesis/conway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/genesis/conway.json -------------------------------------------------------------------------------- /network/sanchonet/genesis/shelley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/input-output-hk/cardano-configurations/HEAD/network/sanchonet/genesis/shelley.json --------------------------------------------------------------------------------