Merge pull request #1162 from input-output-hk/tmcgilchrist/smash_json
Docs for running SMASH against docker.
Docs for running SMASH against docker.
# Run this as
$ docker run inputoutput/cardano-db-sync:066b747a8bfd3791b06ea46c2e793f83ed64967f
```
## Running SMASH with docker-compose
Edit the docker-compose.yml to add a listening port for the postgres container
e.g.
``` yaml
services:
postgres:
...
restart: on-failure
ports:
- "5432:5432"
logging:
...
```
Follow the instructions from `Restore from Snapshot` and wait until the snapshot has restored.
Create a `pgpass-local` file with the credentials of (taken from config/secrets/postgres_* files):
``` shell
echo "localhost:5432:cexplorer:postgres:v8hlDV0yMAHHlIurYupj" > config/pgpass-local
chmod 0600 config/pgpass-local
```
Run SMASH-server
``` shell
PGPASSFILE=config/pgpass-test cabal exec -- cardano-smash-server \
--config config/mainnet-config.yaml \
--port 3100
```
See [smash documentation](doc/smash.sh) for querying the SMASH-server
...moved some test specs into "TxConstraints directory.
Looks like a copy-paste error from the shell config above.
feat!: replace `NetworkInfoProvider.timeSettings` with `eraSummaries`
Monomorphise return type of toPureEpochInfo
3428: Bump cardano-node to 1.35.3-rc1 r=sevanspowell a=sevanspowell - Bump dependencies: - cardano-node to 1.35.3-rc1 - hw-aeson to match cardano-node - hedgehog-extras to match cardano-node - Update compatibility matrix. ### Comments Changelogs: - [API](https://github.com/input-output-hk/cardano-node/blob/release/1.35/cardano-api/ChangeLog.md) - [CLI](https://github.com/input-output-hk/cardano-node/blob/release/1.35/cardano-cli/ChangeLog.md) - [Node](https://github.com/input-output-hk/cardano-node/blob/release/1.35/cardano-node/ChangeLog.md) - [Compare v1.35.3-testnetonly and v1.35.3-rc1](https://github.com/input-output-hk/cardano-node/compare/1.35.3-testnetonly...1.35.3-rc1) ### Issue Number ADP-2123 Co-authored-by: Samuel Evans-Powell <[email protected]>
Signed-off-by: refi93 <[email protected]>
[Docs] [Builtins] Add a comment about 'mkMachineParameters' failing to inline