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.3.1 to 0.4.0

11

CHANGELOG.md

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

# [0.4.0](https://github.com/NFTX-project/nftxjs/compare/v0.3.3...v0.4.0) (2023-01-12)
### Features
* add subgraphs for 0x ([#8](https://github.com/NFTX-project/nftxjs/issues/8)) ([1e65a74](https://github.com/NFTX-project/nftxjs/commit/1e65a741bb6052d63a5a5296c4954ec0c67dcd16))
## [0.3.1](https://github.com/NFTX-project/nftxjs/compare/v0.3.0...v0.3.1) (2023-01-11)

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

12

package.json
{
"name": "@nftx/core",
"version": "0.3.1",
"version": "0.4.0",
"description": "",

@@ -34,7 +34,7 @@ "homepage": "https://github.com/NFTX-project/nftxjs",

"dependencies": {
"@nftx/config": "^0.3.1",
"@nftx/constants": "^0.3.0",
"@nftx/subgraph": "^0.3.1",
"@nftx/types": "^0.3.0",
"@nftx/utils": "^0.3.1"
"@nftx/config": "^0.4.0",
"@nftx/constants": "^0.4.0",
"@nftx/subgraph": "^0.4.0",
"@nftx/types": "^0.4.0",
"@nftx/utils": "^0.4.0"
},

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

@@ -121,3 +121,3 @@ import { BigNumber } from '@ethersproject/bignumber';

tokenId: nftId,
txId: mint.id,
txId: mint.id.split('-')[1] ?? mint.id,
amount: Number(mint.amounts[i]),

@@ -124,0 +124,0 @@ ethAmount: BigNumber.from(mint?.zapAction?.ethAmount ?? 0),

@@ -102,3 +102,3 @@ import { BigNumber } from '@ethersproject/bignumber';

date: Number(redeem.date),
txId: redeem.id,
txId: redeem.id.split('-')[1] ?? redeem.id,
random: !target,

@@ -105,0 +105,0 @@ type: isRedeemOrUnstake(redeem, receipt),

@@ -94,3 +94,3 @@ import { BigNumber } from '@ethersproject/bignumber';

swapTokenId: swap.mintedIds[i],
txId: swap.id,
txId: swap.id.split('-')[1] ?? swap.id,
amount: 1,

@@ -97,0 +97,0 @@ ethAmount: BigNumber.from(swap?.zapAction?.ethAmount ?? 0),

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