forked from boundlessfi/boundless-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.deploy.example
More file actions
21 lines (17 loc) · 889 Bytes
/
Copy path.env.deploy.example
File metadata and controls
21 lines (17 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Deployment configuration for the Boundless contracts.
# Copy to .env.deploy before running scripts/deploy/deploy.sh.
#
# .env.deploy is gitignored (see .gitignore). NEVER commit a populated file.
# Stellar CLI identity that owns the admin authority on both contracts.
# Create with: stellar keys generate <name> --network testnet --fund
ADMIN_IDENTITY=boundless-admin
# G-address that receives the platform fee on every deposit.
# In production this should be a multi-sig account with the platform's
# operational threshold; testnet can be a single-key account.
FEE_ACCOUNT=
# Platform fee in basis points (100 = 1%, 250 = 2.5%, etc.). Range 0..1000.
# Contract caps at 1000 (10%) per audit L4 (2026-06 Stellar-skill audit).
FEE_BPS=250
# Initial credit balance for newly-bootstrapped profiles (u32).
# Per boundless-credits-reputation-prd.md the default is 10.
BOOTSTRAP_CREDITS=10