npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@arcisprotocol/eliza-plugin-arcis

v1.0.0

Published

ElizaOS plugin — give any agent a treasury. Idle USDC auto-earns yield in the Arcis vault on Base.

Readme

@arcisprotocol/eliza-plugin-arcis

Compatibility: targets @elizaos/core 1.x (declared as a peer dependency).

Give any ElizaOS agent a treasury. Idle USDC auto-earns a variable APY in the Arcis vault on Base, and is auto-withdrawn when the agent needs to spend.

Your agent earns yield between jobs without you writing a line of DeFi code.

What it does

  • Always-on idle capital management — a background service watches the agent's USDC balance, deposits the excess above a reserve floor, and pulls funds back when the balance runs low. Zero prompting required.
  • Three conversational actions the agent can also trigger on demand:
    • DEPOSIT_IDLE — "put my idle USDC to work"
    • WITHDRAW_FUNDS — "I need $50 for a payment"
    • CHECK_TREASURY — "how much yield am I earning?"

Under the hood it uses @arcisprotocol/sdk. Every deposit and withdrawal is an on-chain transaction verifiable on Basescan.

Install

npm install @arcisprotocol/eliza-plugin-arcis @arcisprotocol/sdk

Configure

Add the plugin to your character and set these agent settings:

{
  "name": "MyAgent",
  "plugins": ["@arcisprotocol/eliza-plugin-arcis"],
  "settings": {
    "ARCIS_AGENT_PRIVATE_KEY": "0x...",
    "BASE_RPC_URL": "https://base-mainnet.g.alchemy.com/v2/YOUR_KEY",
    "ARCIS_DEPOSIT_THRESHOLD": "100",
    "ARCIS_RESERVE_MIN": "20",
    "ARCIS_WITHDRAW_TRIGGER": "5",
    "ARCIS_WITHDRAW_AMOUNT": "25"
  }
}

| Setting | Meaning | Default | |---|---|---| | ARCIS_AGENT_PRIVATE_KEY | Agent wallet key (funded with USDC + a little ETH for gas) | required | | BASE_RPC_URL | Base RPC endpoint | public RPC | | ARCIS_DEPOSIT_THRESHOLD | Deposit idle USDC above this ($) | 100 | | ARCIS_RESERVE_MIN | Keep this much liquid for spending ($) | 20 | | ARCIS_WITHDRAW_TRIGGER | Withdraw when wallet drops below this ($) | 5 | | ARCIS_WITHDRAW_AMOUNT | Amount to pull per withdrawal ($) | 25 |

Use it in code

import { arcisPlugin } from "@arcisprotocol/eliza-plugin-arcis";

const runtime = new AgentRuntime({
  character,
  plugins: [arcisPlugin],
  // ...
});

Once running, the treasury service starts automatically. The agent's idle USDC begins compounding, and the three actions are available in conversation.

Try it without ElizaOS

A standalone demo shows the exact loop the plugin runs:

AGENT_KEY=0xYourKey BASE_RPC_URL=https://... npx tsx demo.ts

It prints your wallet + vault position and starts the idle-capital manager.

How the treasury works

Agent earns USDC (jobs, x402 payments, tips)
   ↓  balance climbs past ARCIS_DEPOSIT_THRESHOLD
Plugin deposits the excess → receives raUSDC shares → earns a variable APY (Aave V3)
   ↓  agent needs to spend, balance drops below ARCIS_WITHDRAW_TRIGGER
Plugin withdraws ARCIS_WITHDRAW_AMOUNT → USDC back in wallet, ready to pay

The vault keeps 30% liquid reserve for instant withdrawals and deploys 70% to Aave V3. A 0.1% fee applies only to withdrawals within 24h of deposit (flash-loan guard).

Contracts (Base mainnet)

  • Vault: 0x00325d9da832b38179ed2f0dabd4062d93e325a7
  • USDC: 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

Links

  • Website: https://arcis.money
  • Dashboard: https://arcis.money/dashboard
  • SDK: https://www.npmjs.com/package/@arcisprotocol/sdk
  • Docs: https://github.com/Arcis-Protocol/docs

MIT · Built on the Agent Treasury Interface — deposit(), withdraw(), balance().