mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 02:11:49 +01:00
25 lines
545 B
Bash
Executable File
25 lines
545 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
cd "${HOME}/electrs"
|
|
#source "${HOME}/.cargo/env"
|
|
#export PATH="${HOME}/.cargo/bin:${PATH}"
|
|
|
|
until false
|
|
do
|
|
cargo run \
|
|
--release \
|
|
--features liquid \
|
|
--bin electrs \
|
|
-- \
|
|
-vvv \
|
|
--asset-db-path "${HOME}/asset_registry_db" \
|
|
--address-search \
|
|
--cors '*' \
|
|
--db-dir __ELECTRS_DATA_ROOT__ \
|
|
--network liquid \
|
|
--daemon-dir "${HOME}" \
|
|
--http-addr '[::]:3001' \
|
|
--cookie '__ELEMENTS_RPC_USER__:__ELEMENTS_RPC_PASS__' \
|
|
--precache-scripts "${HOME}/electrs/contrib/popular-scripts.txt"
|
|
sleep 1
|
|
done
|