You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@open-social-protocol/osp-client-core

Package Overview
Dependencies
Maintainers
4
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@open-social-protocol/osp-client-core

open social protocol sdk

1.0.14
latest
Source
npmnpm
Version published
Weekly downloads
239
319.3%
Maintainers
4
Weekly downloads
 
Created
Source

@open-social-protocol/osp-client

osp-client-js is a osp clent js sdk.

Installation

Use the package manager [pnpm] or [npm] to install osp-client-js.

pnpm add @open-social-protocol/osp-client

or

npm i @open-social-protocol/osp-client

Usage

import { OspClient, Environment } from "@open-social-protocol/osp-client";
import { ethers } from "ethers";

const env: Environment = Environment.dev;

const client = await OspClient.create({
  env,
  storage: localStorage,
  app_id: "<APP_ID>",
  guest_id_marketing: "<GUEST_ID_MARKETING>",
});

const provider = new ethers.providers.Web3Provider(window.ethereum);
await provider.send("eth_requestAccounts", []);

await client.authentication.login(provider.getSigner());

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

FAQs

Package last updated on 29 May 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