Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .claude/launch.json

This file was deleted.

10 changes: 6 additions & 4 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ NEXT_PUBLIC_GOOGLE_CLIENT_ID=""
NEXT_PUBLIC_HORIZON_PUBLIC_URL="https://horizon.stellar.org"
NEXT_PUBLIC_HORIZON_TESTNET_URL="https://horizon-testnet.stellar.org"
NEXT_PUBLIC_STELLAR_NETWORK="testnet"
# Whitelisted USDC SAC (Soroban contract C-address) used as the escrow tokenAddress.
# Must match the boundless-events contract's whitelisted token (see backend admin runbook).
NEXT_PUBLIC_USDC_TOKEN_CONTRACT_TESTNET="CBIELTK6YBZJU5UP2WWQEUCYKLPU6AUNZ2BQ4WWFEIE3USCIHMXQDAMA"
NEXT_PUBLIC_USDC_TOKEN_CONTRACT_PUBLIC=""
NEXT_PUBLIC_TRUSTLESS_WORK_API_KEY=""
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID="your_wallet_connect_project_id"
# Error reporting (optional). When set, errors are sent to Sentry.
NEXT_PUBLIC_SENTRY_DSN=""
SENTRY_DSN=""
SENTRY_ORG=""
SENTRY_PROJECT="boundless-next"
SENTRY_AUTH_TOKEN="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"
NODE_ENV="dev"
21 changes: 15 additions & 6 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
#!/usr/bin/env sh
set -e


echo "🚀 Running pre-push checks..."

# Run all tests (if you have them)
# echo "🧪 Running tests..."
# npm test

# Run security audit
echo "🔒 Running security audit..."
npm audit --omit=dev --audit-level=high

echo "🔒 Auditing dependencies (non-blocking)..."
npm audit --omit=dev --audit-level=high || true
# Run build check one more time
# echo "🏗️ Final build check..."
# npm run build

# Check for any uncommitted changes
if ! git diff-index --quiet HEAD --; then
echo "⚠️ You have uncommitted changes — they won't be included in this push."
echo "⚠️ Warning: You have uncommitted changes."
echo " Consider committing them before pushing."
fi

echo "✅ Pre-push checks passed!"
echo "✅ Pre-push checks completed!"
Loading
Loading