Socket
Socket
Sign inDemoInstall

@nftx/queue

Package Overview
Dependencies
Maintainers
2
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nftx/queue - npm Package Compare versions

Comparing version 1.11.2 to 1.12.0

11

CHANGELOG.md

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

# [1.12.0](https://github.com/NFTX-project/nftxjs/compare/v1.11.2...v1.12.0) (2024-01-25)
### Features
* new queue signals ([0698950](https://github.com/NFTX-project/nftxjs/commit/0698950191e9edb6a37e0e6f07a60a146246ffe6))
## [1.11.2](https://github.com/NFTX-project/nftxjs/compare/v1.11.1...v1.11.2) (2024-01-24)

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

8

dist/ts/types.d.ts

@@ -14,2 +14,8 @@ import { Address } from '@nftx/types';

};
'index-new-vaults': {
network: number;
};
'index-twap-vaults': {
network: number;
};
};

@@ -20,3 +26,3 @@ type ListenerFn<T, S extends keyof T> = (signal: {

}) => any;
export type SignalCallback = ListenerFn<Signals, 'index-vault'> & ListenerFn<Signals, 'index-collection'> & ListenerFn<Signals, 'index-inactive-vaults'>;
export type SignalCallback = ListenerFn<Signals, 'index-vault'> & ListenerFn<Signals, 'index-collection'> & ListenerFn<Signals, 'index-inactive-vaults'> & ListenerFn<Signals, 'index-new-vaults'> & ListenerFn<Signals, 'index-twap-vaults'>;
export type Messages = {

@@ -23,0 +29,0 @@ 'collection-indexed': {

2

package.json
{
"name": "@nftx/queue",
"version": "1.11.2",
"version": "1.12.0",
"description": "",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/NFTX-project/nftxjs",

@@ -7,2 +7,4 @@ import { Address } from '@nftx/types';

'index-inactive-vaults': { network: number };
'index-new-vaults': { network: number };
'index-twap-vaults': { network: number };
};

@@ -14,5 +16,8 @@

}) => any;
export type SignalCallback = ListenerFn<Signals, 'index-vault'> &
ListenerFn<Signals, 'index-collection'> &
ListenerFn<Signals, 'index-inactive-vaults'>;
ListenerFn<Signals, 'index-inactive-vaults'> &
ListenerFn<Signals, 'index-new-vaults'> &
ListenerFn<Signals, 'index-twap-vaults'>;

@@ -19,0 +24,0 @@ export type Messages = {

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