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

@defichain/jellyfish-api-core

Package Overview
Dependencies
Maintainers
2
Versions
294
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@defichain/jellyfish-api-core - npm Package Compare versions

Comparing version 0.0.20 to 0.0.21

dist/category/account.d.ts

6

dist/index.d.ts
import { Precision, PrecisionPath } from '@defichain/jellyfish-json';
import { Blockchain } from './category/blockchain';
import { Mining } from './category/mining';
import { Net } from './category/net';
import { RawTx } from './category/rawtx';
import { Wallet } from './category/wallet';
import { Account } from './category/account';
import { PoolPair } from './category/poolpair';

@@ -11,2 +13,3 @@ import { Token } from './category/token';

export * as mining from './category/mining';
export * as net from './category/net';
export * as rawtx from './category/rawtx';

@@ -16,2 +19,3 @@ export * as wallet from './category/wallet';

export * as token from './category/token';
export * as account from './category/account';
/**

@@ -23,4 +27,6 @@ * A protocol agnostic DeFiChain node client, RPC calls are separated into their category.

readonly mining: Mining;
readonly net: Net;
readonly rawtx: RawTx;
readonly wallet: Wallet;
readonly account: Account;
readonly poolpair: PoolPair;

@@ -27,0 +33,0 @@ readonly token: Token;

8

dist/index.js

@@ -25,7 +25,9 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.RpcApiError = exports.ClientApiError = exports.ApiError = exports.ApiClient = exports.token = exports.poolpair = exports.wallet = exports.rawtx = exports.mining = exports.blockchain = void 0;
exports.RpcApiError = exports.ClientApiError = exports.ApiError = exports.ApiClient = exports.account = exports.token = exports.poolpair = exports.wallet = exports.rawtx = exports.net = exports.mining = exports.blockchain = void 0;
const blockchain_1 = require("./category/blockchain");
const mining_1 = require("./category/mining");
const net_1 = require("./category/net");
const rawtx_1 = require("./category/rawtx");
const wallet_1 = require("./category/wallet");
const account_1 = require("./category/account");
const poolpair_1 = require("./category/poolpair");

@@ -36,2 +38,3 @@ const token_1 = require("./category/token");

exports.mining = __importStar(require("./category/mining"));
exports.net = __importStar(require("./category/net"));
exports.rawtx = __importStar(require("./category/rawtx"));

@@ -41,2 +44,3 @@ exports.wallet = __importStar(require("./category/wallet"));

exports.token = __importStar(require("./category/token"));
exports.account = __importStar(require("./category/account"));
/**

@@ -49,4 +53,6 @@ * A protocol agnostic DeFiChain node client, RPC calls are separated into their category.

this.mining = new mining_1.Mining(this);
this.net = new net_1.Net(this);
this.rawtx = new rawtx_1.RawTx(this);
this.wallet = new wallet_1.Wallet(this);
this.account = new account_1.Account(this);
this.poolpair = new poolpair_1.PoolPair(this);

@@ -53,0 +59,0 @@ this.token = new token_1.Token(this);

6

package.json
{
"private": false,
"name": "@defichain/jellyfish-api-core",
"version": "0.0.20",
"version": "0.0.21",
"description": "A collection of TypeScript + JavaScript tools and libraries for DeFi Blockchain developers to build decentralized finance on Bitcoin",

@@ -38,7 +38,7 @@ "keywords": [

"dependencies": {
"@defichain/jellyfish-json": "^0.0.20"
"@defichain/jellyfish-json": "^0.0.21"
},
"devDependencies": {
"@defichain/testcontainers": "^0.0.20"
"@defichain/testcontainers": "^0.0.21"
}
}
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