mirror of
https://github.com/fluencelabs/eip712-validation-node
synced 2025-05-19 11:11:22 +00:00
15 lines
287 B
Bash
15 lines
287 B
Bash
#!/usr/bin/env bash
|
|
set -o errexit -o nounset -o pipefail
|
|
|
|
# build wasms
|
|
./build.sh
|
|
|
|
(
|
|
fldist new_service \
|
|
--name "simple-consensus" \
|
|
--modules artifacts/consensus.wasm:configs/consensus_cfg.json \
|
|
--verbose \
|
|
>> \
|
|
deployed_service_data.txt
|
|
|
|
) |