@stacks/blockchain-api-client 7.8.0 → 7.9.0-nakamoto.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacks/blockchain-api-client",
3
- "version": "7.8.0",
3
+ "version": "7.9.0-nakamoto.2",
4
4
  "access": "public",
5
5
  "description": "Client for the Stacks Blockchain API",
6
6
  "homepage": "https://github.com/hirosystems/stacks-blockchain-api/tree/master/client#readme",
@@ -139,6 +139,12 @@ export interface RosettaOptions {
139
139
  * @memberof RosettaOptions
140
140
  */
141
141
  pox_addr?: string;
142
+ /**
143
+ * The hex-encoded signer key (buff 33) for PoX.
144
+ * @type {string}
145
+ * @memberof RosettaOptions
146
+ */
147
+ signer_key?: string;
142
148
  }
143
149
 
144
150
  export function RosettaOptionsFromJSON(json: any): RosettaOptions {
@@ -171,6 +177,7 @@ export function RosettaOptionsFromJSONTyped(json: any, ignoreDiscriminator: bool
171
177
  'burn_block_height': !exists(json, 'burn_block_height') ? undefined : json['burn_block_height'],
172
178
  'delegate_to': !exists(json, 'delegate_to') ? undefined : json['delegate_to'],
173
179
  'pox_addr': !exists(json, 'pox_addr') ? undefined : json['pox_addr'],
180
+ 'signer_key': !exists(json, 'signer_key') ? undefined : json['signer_key'],
174
181
  };
175
182
  }
176
183
 
@@ -203,6 +210,7 @@ export function RosettaOptionsToJSON(value?: RosettaOptions | null): any {
203
210
  'burn_block_height': value.burn_block_height,
204
211
  'delegate_to': value.delegate_to,
205
212
  'pox_addr': value.pox_addr,
213
+ 'signer_key': value.signer_key,
206
214
  };
207
215
  }
208
216