AeMdw is a middleware that acts as a caching and reporting layer for the æternity blockchain. It responds to queries more efficiently than the node and supports additional queries.
The middleware runs an Aeternity Node alongside it in the same Docker container and BEAM VM instance. This node can be configured using the aeternity.yaml file or by passing environment variables, just like configuring the node directly.
git clone https://github.com/aeternity/ae_mdw && cd ae_mdw
-
Download a full backup from Aeternity Downloads.
-
Create a
datadirectory under the root repository directory and extract the backup using the following command:tar -xvzf path-to-backup.tar.gz -C dataThis will extract the
mnesiaandmdw.dbfolders to thedatadirectory.
Run the following command to start the application on the mainnet:
docker compose up
To check if the application is running properly, visit the /status endpoint and ensure that node_height is higher than 600000.
Create the necessary directories for data storage and logs:
mkdir -p data/mnesia data/mdw.db log
Ensure the directories have the correct permissions to allow the middleware to write to them:
chown -R 1000 data log
If you want to use a database snapshot:
-
Download a full backup from Aeternity Downloads.
-
Extract the backup to the
datadirectory:tar -xvzf path-to-backup.tar.gz -C dataThis will place the
mnesiaandmdw.dbfolders under thedatadirectory.
Start the container with the following command:
docker run -it --name ae_mdw \
-p 4000:4000 \
-p 4001:4001 \
-p 3113:3113 \
-p 3013:3013 \
-p 3014:3014 \
-v ${PWD}/data/mnesia:/home/aeternity/node/data/mnesia \
-v ${PWD}/data/mdw.db:/home/aeternity/node/data/mdw.db \
-v ${PWD}/log:/home/aeternity/ae_mdw/log \
-v ${PWD}/docker/aeternity.yaml:/home/aeternity/.aeternity/aeternity/aeternity.yaml \
aeternity/ae_mdw:latest
This command starts the middleware in a docker container. The middleware will be available at http://localhost:4000. Note that you can pass the -d flag to run the container in detached mode.
To check if the middleware is running properly, visit the /status endpoint and ensure that node_height is higher than 0.
To check the logs, run the following command:
docker logs ae_mdw
To check the status of the container, run the following command:
docker ps -a
To stop the container, run the following command:
docker stop ae_mdw
To restart the container, run the following command:
docker start ae_mdw
Edit the configuration file docker/aeternity.yaml to specify network settings:
-
ae_mainnetfor mainnet -
ae_uatfor testnet -
A custom network name if running your own network or a hyperchain
You can also pass environment variables to configure the node, similar to standard Aeternity Node configuration.
Refer to Aeternity Configuration Docs for more details.