Skip to content

Commit b93e1e8

Browse files
committed
chore(solana): add funding step to fund MCM authorities
1 parent abf0d96 commit b93e1e8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

solana/mainnet/2025-10-27-deploy-mcm/.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@ NEW_UPGRADE_AUTHORITY=$(MCM_AUTHORITY_0)
6868

6969
# Signature of the set-upgrade-authority tx (used to generate the set-upgrade-authority artifacts)
7070
SET_UPGRADE_AUTHORITY_SIGNATURE=
71+
72+
# Variables for funding MCM authorities
73+
SOL_AMOUNT=0.5

solana/mainnet/2025-10-27-deploy-mcm/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,10 @@ step9-transfer-upgrade-authority:
147147
step10-generate-set-upgrade-authority-artifacts:
148148
@echo "==> Step 10: Generating MCM set-upgrade-authority artifacts..."
149149
make sol-confirm SIG=$(SET_UPGRADE_AUTHORITY_SIGNATURE) output=artifacts/set-upgrade-authority-artifacts.json
150+
151+
# Step 11: Fund MCM authorities (inherited from parent)
152+
.PHONY: step11-fund-mcm-authorities
153+
step11-fund-mcm-authorities:
154+
@echo "==> Step 11: Funding MCM authorities..."
155+
make sol-transfer SOL_RECIPIENT=$(MCM_AUTHORITY_0) output=artifacts/fund-mcm-authority-0.json
156+
make sol-transfer SOL_RECIPIENT=$(MCM_AUTHORITY_1) output=artifacts/fund-mcm-authority-1.json

0 commit comments

Comments
 (0)