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

@nftx/core

Package Overview
Dependencies
Maintainers
2
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nftx/core - npm Package Compare versions

Comparing version 0.4.2 to 0.4.4

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [0.4.4](https://github.com/NFTX-project/nftxjs/compare/v0.4.3...v0.4.4) (2023-01-30)
### Bug Fixes
* add totalFees and shutdownDate properties to vaults ([e1ae349](https://github.com/NFTX-project/nftxjs/commit/e1ae3493a146ff7e54bc307029d037e302e74244))
## [0.4.2](https://github.com/NFTX-project/nftxjs/compare/v0.4.1...v0.4.2) (2023-01-16)

@@ -8,0 +19,0 @@

2

dist/ts/vaults/fetchSubgraphVaults.d.ts

@@ -19,2 +19,3 @@ export declare type Response = {

totalRedeems: string;
totalFees: string;
createdAt: string;

@@ -85,2 +86,3 @@ holdings: Array<{

};
shutdownDate: string;
}>;

@@ -87,0 +89,0 @@ };

6

package.json
{
"name": "@nftx/core",
"version": "0.4.2",
"version": "0.4.4",
"description": "",

@@ -37,4 +37,4 @@ "homepage": "https://github.com/NFTX-project/nftxjs",

"@nftx/subgraph": "^0.4.2",
"@nftx/types": "^0.4.0",
"@nftx/utils": "^0.4.2"
"@nftx/types": "^0.4.4",
"@nftx/utils": "^0.4.4"
},

@@ -41,0 +41,0 @@ "devDependencies": {

@@ -23,2 +23,3 @@ import config from '@nftx/config';

totalRedeems: string;
totalFees: string;
createdAt: string;

@@ -89,2 +90,3 @@ holdings: Array<{

};
shutdownDate: string;
}>;

@@ -150,3 +152,5 @@ };

totalRedeems
totalFees
createdAt
shutdownDate
holdings(

@@ -153,0 +157,0 @@ first: 1000,

@@ -41,2 +41,4 @@ import { BigNumber } from '@ethersproject/bignumber';

totalRedeems: Number(x.totalRedeems),
totalFees: BigNumber.from(x.totalFees),
shutdownDate: Number(x.shutdownDate || '0'),
holdings,

@@ -43,0 +45,0 @@ fees,

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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