@hirosystems/chainhook-types
Advanced tools
Comparing version 1.1.1-rc.2 to 1.1.2
@@ -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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
83646
2129
2