|
2 | 2 | /* eslint-disable */
|
3 | 3 | /**
|
4 | 4 | * Stacks Blockchain API
|
5 |
| - * Welcome to the API reference overview for the <a href=\"https://docs.hiro.so/get-started/stacks-blockchain-api\">Stacks Blockchain API</a>. <a href=\"https://hirosystems.github.io/stacks-blockchain-api/collection.json\" download=\"stacks-api-collection.json\">Download Postman collection</a> |
| 5 | + * Welcome to the API reference overview for the [Stacks Blockchain API](https://docs.hiro.so/get-started/stacks-blockchain-api). [Download Postman collection](https://hirosystems.github.io/stacks-blockchain-api/collection.json) |
6 | 6 | *
|
7 | 7 | * The version of the OpenAPI document: STACKS_API_VERSION
|
8 | 8 | *
|
@@ -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 |
|
0 commit comments