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

@hirosystems/chainhook-types

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hirosystems/chainhook-types - npm Package Compare versions

Comparing version 1.1.1-rc.2 to 1.1.2

32

dist/index.d.ts

@@ -252,6 +252,6 @@ /**

/**
* @type {boolean}
* @type {string}
* @memberof StacksTransactionMetadata
*/
raw_tx: boolean;
raw_tx: string;
/**

@@ -293,12 +293,29 @@ * @type {string}

/**
* @type {number|any}
* @type {AnchorBlockPosition | MicroBlockPosition}
* @memberof StacksTransactionMetadata
*/
position: number | any;
position: AnchorBlockPosition | MicroBlockPosition;
/**
* @type {string}
* @memberof StacksTransactionMetadata
*/
* @type {string}
* @memberof StacksTransactionMetadata
*/
proof?: string;
}
/**
* MicroBlockPosition
* @export
* @interface MicroBlockPosition
*/
export interface MicroBlockPosition {
micro_block_identifier: BlockIdentifier;
index: number;
}
/**
* AnchorBlockPosition
* @export
* @interface AnchorBlockPosition
*/
export interface AnchorBlockPosition {
index: number;
}
export interface StacksTransactionReceipt {

@@ -392,2 +409,3 @@ /**

amount: string;
memo?: string;
}

@@ -394,0 +412,0 @@ export interface StacksSTXMintEventData {

{
"name": "@hirosystems/chainhook-types",
"version": "1.1.1-rc.2",
"version": "1.1.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -282,6 +282,6 @@ /**

/**
* @type {boolean}
* @type {string}
* @memberof StacksTransactionMetadata
*/
raw_tx: boolean;
raw_tx: string;
/**

@@ -323,7 +323,7 @@ * @type {string}

/**
* @type {number|any}
* @type {AnchorBlockPosition | MicroBlockPosition}
* @memberof StacksTransactionMetadata
*/
position: number | any;
/**
position: AnchorBlockPosition | MicroBlockPosition;
/**
* @type {string}

@@ -335,2 +335,21 @@ * @memberof StacksTransactionMetadata

/**
* MicroBlockPosition
* @export
* @interface MicroBlockPosition
*/
export interface MicroBlockPosition {
micro_block_identifier: BlockIdentifier,
index: number
}
/**
* AnchorBlockPosition
* @export
* @interface AnchorBlockPosition
*/
export interface AnchorBlockPosition {
index: number
}
export interface StacksTransactionReceipt {

@@ -445,2 +464,3 @@ /**

amount: string;
memo?: string;
}

@@ -447,0 +467,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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