Socket
Socket
Sign inDemoInstall

@deso-core/data

Package Overview
Dependencies
1
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

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.


Version published
Maintainers
4
Created

Readme

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

Last updated on 14 Apr 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc