Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@utsam/agentbridge

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@utsam/agentbridge

AgentBridge plugin for ElizaOS - ICP blockchain integration

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@agentbridge/eliza-plugin

ElizaOS plugin for ICP blockchain integration via AgentBridge.

Installation

npm install @agentbridge/eliza-plugin

Usage

import { AgentBridgePlugin } from "@agentbridge/eliza-plugin";

const plugin = new AgentBridgePlugin({
  canisterId: "your-canister-id",
  host: "http://127.0.0.1:4943", // for local dev
});

await plugin.init();

// Get random number
const randomNum = await plugin.getRandomNumber(100);

// Sign Ethereum message
const signature = await plugin.signEthereumMessage(
  new TextEncoder().encode("Hello")
);

// Fetch external URL
const data = await plugin.fetchUrl("https://api.example.com/data");

Available Actions

ActionDescription
SIGN_ETHEREUMSign message with ECDSA
SIGN_BITCOINSign message with Schnorr
GET_RANDOMGet provably fair random number
FETCH_URLFetch external data via HTTPS outcalls
SEND_CHATSend message to OpenChat

License

MIT

Keywords

elizaos

FAQs

Package last updated on 19 Dec 2025

Did you know?

Socket

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.

Install

Related posts