Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@deso-core/data

Package Overview
Dependencies
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deso-core/data

Simple, zero dependency api wrapper for deso backend api endpoints. Provides param and response types to provide editor assistance when making deso backend requests.

  • 0.1.0
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
4
Weekly downloads
 
Created
Source

@deso-core/data

Simple, zero dependency api wrapper for deso backend api endpoints. Provides param and response types to provide editor assistance when making deso backend requests.

NOTE: You should only use this if you need to issue read-only api requests to the deso backend and do not require an authenticated user. If you also need login/logout or other deso identity support you should use the deso-protocol@beta package.

Install

npm install @deso-core/data

Configuration

import { api } from '@deso-core/data';

api.configure({
  // Sets the hostname for the node that will be used
  // for all subsequent requests. If not passed it will
  // default to https://node.deso.org
  nodeURI: 'https://myawesomenode.com',
});

Usage

import { getPostsStateless, getSinglePost } from '@deso-core/data';

// get 20 posts
const posts = await getPostsStateless({ NumToFetch: 20 });

// get a single post
const post = await getSinglePost({ PostHashHex: posts[0] });

FAQs

Package last updated on 03 Apr 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc