mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-20 14:18:16 +01:00
32 lines
642 B
Bash
Executable File
32 lines
642 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
SRC='./submodules/trezor-common/tools'
|
|
DIST='./packages/connect-common/files'
|
|
|
|
# todo:
|
|
# if [ $# -ge 1 ] && [ "$1" == "local" ]
|
|
# then
|
|
# SRC='../trezor-firmware/common/tools'
|
|
# fi
|
|
|
|
# BUID coins.json using tezor-common cointool
|
|
# exlude unused fields
|
|
$SRC/cointool.py dump -p -d connect -o $DIST/coins.json \
|
|
-e blockbook \
|
|
-e icon \
|
|
-e cooldown \
|
|
-e github \
|
|
-e key \
|
|
-e maintainer \
|
|
-e uri_prefix \
|
|
-e version_group_id \
|
|
-e website \
|
|
-e links \
|
|
-e duplicate \
|
|
-e wallet \
|
|
-e bitcore \
|
|
-e confidential_assets \
|
|
-e negative_fee \
|