@defichain/jellyfish-api-core
Advanced tools
Comparing version 0.0.20 to 0.0.21
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; |
@@ -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); |
{ | ||
"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" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
83835
20
2122
+ Added@defichain/jellyfish-json@0.0.21(transitive)
- Removed@defichain/jellyfish-json@0.0.20(transitive)