From 71e805b1fde74c46645a59b9fae72a3f3ef1c030 Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 15 Dec 2025 09:06:51 -0800 Subject: [PATCH] =?UTF-8?q?feat(deploy):=20=E6=B7=BB=E5=8A=A0=20HOT=5FWALL?= =?UTF-8?q?ET=20=E9=85=8D=E7=BD=AE=E5=88=B0=20install=20=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在 deploy.sh 的 install() 函数中添加热钱包配置, 新部署时会自动包含这些环境变量。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- backend/services/deploy.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/services/deploy.sh b/backend/services/deploy.sh index 54d2a5a7..62f7c58c 100755 --- a/backend/services/deploy.sh +++ b/backend/services/deploy.sh @@ -123,6 +123,10 @@ SHARE_MASTER_KEY=${SHARE_MASTER_KEY} # MPC System Address (on 192.168.1.111) MPC_COORDINATOR_URL=http://192.168.1.111:8081 MPC_MESSAGE_ROUTER_URL=ws://192.168.1.111:8082 + +# MPC Hot Wallet (用于提现转账) +HOT_WALLET_USERNAME=rwadurian-system-hot-wallet-01 +HOT_WALLET_ADDRESS=0x895aaf83C57f807416E3BbBd093d7aB74a6FDd33 EOF chmod 600 "$ENV_FILE"