You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add build tooling, sanitize sensitive literals, and fix docs
- Add unified build script (build.js) with CI workflow (.github/workflows/validate.yml)
- Add sensitive literal scanner and sanitizer scripts
- Add markdown link checker script
- Improve generator: typed placeholders for all field types, skip empty query params in curl examples
- Sanitize all rule and reference files to use placeholder addresses/hashes
- Move ApiResponseCodes.md and SpamDetection.md from rules/ to references/
- Fix test-installation.sh missing exit 1 on failures
- Fix streams docs using addressToAdd instead of address
- Align CONTRIBUTING.md frontmatter example with actual schema
- Update CLAUDE.md architecture tree with new reference files
- Bump versions: moralis-data-api 1.4.0, moralis-streams-api 1.3.0, learn-moralis 1.2.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,11 @@ Unified skill for all blockchain data queries. Auto-detects EVM vs Solana from a
74
74
-**Solana** (34) — native Solana endpoints + EVM endpoints with Solana support
75
75
76
76
```
77
-
/moralis-data-api Get the balance of 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
77
+
/moralis-data-api Get the balance of YOUR_EVM_ADDRESS
78
78
79
-
/moralis-data-api Get the balance of 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Polygon
79
+
/moralis-data-api Get the balance of YOUR_EVM_ADDRESS on Polygon
80
80
81
-
/moralis-data-api Get the balance of Solana wallet 742d35Cc6634C0532925a3b844Bc9e7595f0bEb
81
+
/moralis-data-api Get the balance of Solana wallet YOUR_SOLANA_ADDRESS
82
82
```
83
83
84
84
> **Tip:** Prefix your prompt with the skill name (e.g. `/moralis-data-api`) to load it directly. Some agents auto-detect skills, but tagging ensures it works across all agents.
@@ -92,7 +92,7 @@ Real-time blockchain event monitoring with webhooks. **20 endpoints** for creati
92
92
```
93
93
/moralis-streams-api Create a stream to monitor all ERC20 transfers on Ethereum
94
94
95
-
/moralis-streams-api Pause the stream with ID a1b2c3d4-e5f6-7890-abcd-ef1234567890
95
+
/moralis-streams-api Pause the stream with ID YOUR_STREAM_ID
96
96
```
97
97
98
98
## learn-moralis
@@ -116,6 +116,7 @@ Knowledge-only skill for answering general questions about Moralis. Routes users
116
116
-**Zero dependencies** — all API calls use curl
117
117
-**Works with 18+ agents** — any agent supporting the [Agent Skills](https://skills.sh/) standard
0 commit comments