Socket
Socket
Sign inDemoInstall

chia-datalayer

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chia-datalayer - npm Package Compare versions

Comparing version 2.0.10 to 2.0.11

datalayer.d.ts

3

package.json
{
"name": "chia-datalayer",
"version": "2.0.10",
"version": "2.0.11",
"description": "Wrapper for Chia DataLayer RPCs",
"main": "index.js",
"types": "datalayer.d.ts",
"scripts": {

@@ -7,0 +8,0 @@ "test": "echo \"Error: no test specified\" && exit 1"

@@ -110,6 +110,6 @@ const { callAndAwaitChiaRPC } = require("./rpc-base");

getOwnedStores(params, options = {}) {
getOwnedStores(options = {}) {
return callAndAwaitChiaRPC(
`${this.config.datalayer_host}/get_owned_stores`,
params,
{},
this.config,

@@ -135,2 +135,14 @@ {

walletLogin(params, options = {}) {
return callAndAwaitChiaRPC(
`${this.config.datalayer_host}/wallet_log_in`,
params,
this.config,
{
includeFee: false,
...options,
}
);
}
getRootHistory(params, options = {}) {

@@ -148,6 +160,6 @@ return callAndAwaitChiaRPC(

getSubscriptions(params, options = {}) {
getSubscriptions(options = {}) {
return callAndAwaitChiaRPC(
`${this.config.datalayer_host}/get_subscriptions`,
params,
{},
this.config,

@@ -185,6 +197,6 @@ {

plugins(params, options = {}) {
plugins(options = {}) {
return callAndAwaitChiaRPC(
`${this.config.datalayer_host}/plugins`,
params,
{},
this.config,

@@ -198,3 +210,3 @@ {

removeSubscription(params, options = {}) {
removeSubscriptions(params, options = {}) {
return callAndAwaitChiaRPC(

@@ -201,0 +213,0 @@ `${this.config.datalayer_host}/remove_subscription`,

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