Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b6a2895
feat: integrate treasury management features and refactor hackathon o…
0xdevcollins Jun 11, 2026
a0d21b2
chore: update package-lock.json dependencies
0xdevcollins Jun 11, 2026
8f3a14b
chore: update pre-push husky hook to perform full type-checks and pro…
0xdevcollins Jun 11, 2026
49fe90a
refactor: remove DevelopmentStatusModal from global layout
0xdevcollins Jun 11, 2026
3deb64c
feat: task-first Winners page, judging UX, private access, treasury r…
0xdevcollins Jun 16, 2026
0edc1aa
feat(bounty): ModeTab + SubmissionModelTab for the Configure wizard (…
Benjtalkshow Jun 16, 2026
77b2fd1
feat(bounty): features/bounties data layer (types, keys, draft + escr…
Benjtalkshow Jun 16, 2026
fb527ff
feat(bounty): features/bounties data layer (types, keys, draft + escr…
Benjtalkshow Jun 16, 2026
5c0d24e
feat(bounty): wizard shell + step/draft machinery (#598)
Benjtalkshow Jun 16, 2026
4c31f6b
feat(bounty): wizard shell + step/draft machinery (#598) (#613)
Benjtalkshow Jun 17, 2026
a3a81a2
feat(bounty): Scope + Reward + Review tabs and Zod schemas (#600) (#614)
Benjtalkshow Jun 17, 2026
3b45ea9
feat(bounty): use-bounty-publish (escrow publish via shared runner) (…
Benjtalkshow Jun 17, 2026
8e71a49
feat(bounty): routes + organization bounty list page (#597) (#616)
Benjtalkshow Jun 17, 2026
40fd942
feat(bounty): sidebar nav entry + Post Bounty quick action (#602) (#617)
Benjtalkshow Jun 17, 2026
df74eb0
feat: implement multi-step crowdfunding campaign wizard with mileston…
0xdevcollins Jun 18, 2026
9865cdf
feat(crowdfunding): v2 public pages, builder dashboard, milestone tra…
0xdevcollins Jun 24, 2026
17402a7
chore: update lockfile dependencies for package-lock.json
0xdevcollins Jun 24, 2026
cad5635
feat(bounty): wizard enhancements + hackathon-style org bounty list (…
Benjtalkshow Jun 24, 2026
6241d60
merge: feat/t-replace — bounty wizard completion (scope/reward/resour…
0xdevcollins Jun 24, 2026
b4e5cc5
refactor: standardize API error extraction to support array-based mes…
0xdevcollins Jun 24, 2026
0718279
refactor: restructure StoryStep inputs, enable sidebar navigation, an…
0xdevcollins Jun 24, 2026
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: 11 additions & 0 deletions .claude/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "boundless-v1",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"port": 3000
}
]
}
10 changes: 4 additions & 6 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ 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: 6 additions & 15 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@

#!/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

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

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

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