
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@ramaris/sdk
Advanced tools
TypeScript SDK for the [Ramaris](https://www.ramaris.app) REST API. Query on-chain wallet analytics, trading strategies, and performance data on Base.
TypeScript SDK for the Ramaris REST API. Query on-chain wallet analytics, trading strategies, and performance data on Base.
npm install @ramaris/sdk
import { RamarisClient } from '@ramaris/sdk';
const client = new RamarisClient({
apiKey: 'rms_your_api_key',
});
// List top strategies
const strategies = await client.strategies.list({ pageSize: 10 });
console.log(strategies.data);
// Get strategy details
const strategy = await client.strategies.get('abc123def');
console.log(strategy.name, strategy.roiPercent);
Free tier gets 1 API key with strategies:read scope (100 req/hr). Upgrade to PRO for wallet data and higher limits.
client.strategies.list({ page, pageSize }) // List strategies
client.strategies.get(shareId) // Strategy details
client.strategies.watchlist({ page, pageSize }) // Your followed strategies
client.wallets.list({ page, pageSize }) // List wallets
client.wallets.get(id) // Wallet details
// Filter wallets by activity, token quality, and risk level
client.wallets.list({
computed: ['activeWeek', 'hideMemeOnly'], // Active + exclude meme-only
});
| Filter | Type | Description |
|---|---|---|
activeDay | Activity (OR) | Swapped in the last 24 hours |
activeWeek | Activity (OR) | Swapped in the last 7 days |
stale | Activity (OR) | No swaps in 7+ days |
hideMemeOnly | Quality (AND) | Exclude wallets trading only risky tokens |
riskConservative | Risk (AND) | Conservative risk profile |
riskBalanced | Risk (AND) | Balanced risk profile |
riskHighRisk | Risk (AND) | High risk profile |
riskDegen | Risk (AND) | Degen risk profile |
Activity filters use OR semantics (union). Quality and risk filters use AND semantics (narrow results).
client.me.profile() // Your profile
client.me.subscription() // Your subscription
client.health() // API health check
| Tier | Requests/Hour | Scopes |
|---|---|---|
| FREE | 100 | strategies:read |
| PRO | 1,000 | strategies:read, wallets:read |
| ULTRA | 10,000 | strategies:read, wallets:read |
| ENTERPRISE | 100,000 | strategies:read, wallets:read |
Rate limit info is available after any request:
await client.strategies.list();
console.log(client.rateLimit);
// { limit: 100, remaining: 99, reset: 1707667200 }
import { RamarisError, RateLimitError } from '@ramaris/sdk';
try {
await client.wallets.list();
} catch (err) {
if (err instanceof RateLimitError) {
console.log(`Rate limited. Retry after ${err.retryAfter}s`);
} else if (err instanceof RamarisError) {
console.log(err.code, err.message); // e.g. "INSUFFICIENT_SCOPE"
}
}
const client = new RamarisClient({
apiKey: 'rms_...', // Required
baseUrl: 'https://...', // Optional, defaults to https://www.ramaris.app/api/v1
});
MIT
FAQs
TypeScript SDK for the [Ramaris](https://www.ramaris.app) REST API. Query on-chain wallet analytics, trading strategies, and performance data on Base.
The npm package @ramaris/sdk receives a total of 0 weekly downloads. As such, @ramaris/sdk popularity was classified as not popular.
We found that @ramaris/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.