Skip to content

Commit d7f7af2

Browse files
Merge branch 'develop' into docs/nuxt-integration-guide
2 parents 96af662 + 8f2e1ab commit d7f7af2

37 files changed

Lines changed: 8178 additions & 7 deletions
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Retarget PRs against main
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, reopened]
6+
branches: [main]
7+
8+
permissions:
9+
pull-requests: write
10+
issues: write
11+
contents: read
12+
13+
jobs:
14+
retarget:
15+
# Skip release PRs (develop -> main); catch everything else that targets main.
16+
if: github.event.pull_request.head.ref != 'develop'
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Retarget to develop and comment
20+
env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
run: |
23+
PR=${{ github.event.pull_request.number }}
24+
REPO=${{ github.repository }}
25+
gh pr edit "$PR" --repo "$REPO" --base develop
26+
gh pr comment "$PR" --repo "$REPO" --body "Auto-retargeted this PR from \`main\` to \`develop\`. Wave PRs merge into \`develop\`; \`main\` is only for release cuts. If you meant to target main deliberately (rare), reply here and we can revert this."

SECURITY.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Security
2+
3+
Wraith Protocol handles stealth-address key material and private payments across multiple blockchains. We take security seriously and welcome responsible disclosure from the security community.
4+
5+
## Reporting a Vulnerability
6+
7+
**Email:** security@usewraith.xyz
8+
9+
Please do **not** open a public GitHub issue, post on social media, or discuss the finding publicly until a fix has shipped and coordinated disclosure has been agreed with us.
10+
11+
If your report contains sensitive proof-of-concept material, use PGP. Our public key is at https://usewraith.xyz/.well-known/security.txt.
12+
13+
## Response
14+
15+
| Milestone | Target |
16+
|---|---|
17+
| Acknowledgment | 1 business day |
18+
| Initial triage | 3 business days |
19+
| Fix timeline communicated | 7 business days |
20+
| Patch for critical / high | 14 days |
21+
| Patch for medium | 45 days |
22+
| Patch for low | 90 days |
23+
24+
## Safe Harbor
25+
26+
We will not pursue legal action against researchers who discover and report vulnerabilities in good faith under this policy. We consider good-faith security research under this policy to be authorized and will not treat it as a violation of our terms of service.
27+
28+
## Rewards
29+
30+
We operate a discretionary USDC bug bounty:
31+
32+
| Severity | Range |
33+
|---|---|
34+
| Critical | $5,000 – $20,000 |
35+
| High | $1,000 – $5,000 |
36+
| Medium | $250 – $1,000 |
37+
| Low | $0 – $250 |
38+
39+
## Full Policy
40+
41+
Complete details — scope, severity definitions, coordinated disclosure terms, safe-harbor language, reward criteria, and what to include in a report — are in our security disclosure policy:
42+
43+
**https://docs.usewraith.xyz/reference/security-disclosure**

0 commit comments

Comments
 (0)