@stacks/blockchain-api-client 9.0.0-pox5.5 → 9.0.0-pox5.7
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/lib/generated/schema.d.ts +64 -15
- package/package.json +1 -1
- package/src/generated/schema.d.ts +64 -15
|
@@ -33213,15 +33213,23 @@ export interface operations {
|
|
|
33213
33213
|
current: string | null;
|
|
33214
33214
|
};
|
|
33215
33215
|
results: {
|
|
33216
|
-
bond_index: number;
|
|
33217
|
-
signer: string;
|
|
33218
33216
|
staker: string;
|
|
33219
|
-
|
|
33220
|
-
|
|
33221
|
-
|
|
33222
|
-
|
|
33223
|
-
|
|
33224
|
-
|
|
33217
|
+
signer: string;
|
|
33218
|
+
type: "l1" | "l2";
|
|
33219
|
+
balances: {
|
|
33220
|
+
/**
|
|
33221
|
+
* Amount
|
|
33222
|
+
* @description Amount
|
|
33223
|
+
* @example 1000000
|
|
33224
|
+
*/
|
|
33225
|
+
btc: string;
|
|
33226
|
+
/**
|
|
33227
|
+
* Amount
|
|
33228
|
+
* @description Amount
|
|
33229
|
+
* @example 1000000
|
|
33230
|
+
*/
|
|
33231
|
+
stx: string;
|
|
33232
|
+
};
|
|
33225
33233
|
}[];
|
|
33226
33234
|
};
|
|
33227
33235
|
};
|
|
@@ -33262,15 +33270,56 @@ export interface operations {
|
|
|
33262
33270
|
};
|
|
33263
33271
|
content: {
|
|
33264
33272
|
"application/json": {
|
|
33265
|
-
|
|
33273
|
+
staker: string;
|
|
33266
33274
|
signer: string;
|
|
33275
|
+
type: "l1" | "l2";
|
|
33276
|
+
balances: {
|
|
33277
|
+
/**
|
|
33278
|
+
* Amount
|
|
33279
|
+
* @description Amount
|
|
33280
|
+
*/
|
|
33281
|
+
btc: string;
|
|
33282
|
+
/**
|
|
33283
|
+
* Amount
|
|
33284
|
+
* @description Amount
|
|
33285
|
+
*/
|
|
33286
|
+
stx: string;
|
|
33287
|
+
};
|
|
33288
|
+
l1_lockup: {
|
|
33289
|
+
/** @description The proven L1 lockup transactions */
|
|
33290
|
+
transactions: {
|
|
33291
|
+
/**
|
|
33292
|
+
* Transaction ID
|
|
33293
|
+
* @description Transaction ID
|
|
33294
|
+
*/
|
|
33295
|
+
tx_id: string;
|
|
33296
|
+
/** @description The output index of the proven L1 lockup */
|
|
33297
|
+
output_index: number;
|
|
33298
|
+
}[];
|
|
33299
|
+
};
|
|
33300
|
+
} | {
|
|
33267
33301
|
staker: string;
|
|
33268
|
-
|
|
33269
|
-
|
|
33270
|
-
|
|
33271
|
-
|
|
33272
|
-
|
|
33273
|
-
|
|
33302
|
+
signer: string;
|
|
33303
|
+
type: "l1" | "l2";
|
|
33304
|
+
balances: {
|
|
33305
|
+
/**
|
|
33306
|
+
* Amount
|
|
33307
|
+
* @description Amount
|
|
33308
|
+
*/
|
|
33309
|
+
btc: string;
|
|
33310
|
+
/**
|
|
33311
|
+
* Amount
|
|
33312
|
+
* @description Amount
|
|
33313
|
+
*/
|
|
33314
|
+
stx: string;
|
|
33315
|
+
};
|
|
33316
|
+
l2_lockup: {
|
|
33317
|
+
/**
|
|
33318
|
+
* Transaction ID
|
|
33319
|
+
* @description Transaction ID
|
|
33320
|
+
*/
|
|
33321
|
+
tx_id: string;
|
|
33322
|
+
};
|
|
33274
33323
|
};
|
|
33275
33324
|
};
|
|
33276
33325
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/blockchain-api-client",
|
|
3
|
-
"version": "9.0.0-pox5.
|
|
3
|
+
"version": "9.0.0-pox5.7",
|
|
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",
|
|
@@ -33213,15 +33213,23 @@ export interface operations {
|
|
|
33213
33213
|
current: string | null;
|
|
33214
33214
|
};
|
|
33215
33215
|
results: {
|
|
33216
|
-
bond_index: number;
|
|
33217
|
-
signer: string;
|
|
33218
33216
|
staker: string;
|
|
33219
|
-
|
|
33220
|
-
|
|
33221
|
-
|
|
33222
|
-
|
|
33223
|
-
|
|
33224
|
-
|
|
33217
|
+
signer: string;
|
|
33218
|
+
type: "l1" | "l2";
|
|
33219
|
+
balances: {
|
|
33220
|
+
/**
|
|
33221
|
+
* Amount
|
|
33222
|
+
* @description Amount
|
|
33223
|
+
* @example 1000000
|
|
33224
|
+
*/
|
|
33225
|
+
btc: string;
|
|
33226
|
+
/**
|
|
33227
|
+
* Amount
|
|
33228
|
+
* @description Amount
|
|
33229
|
+
* @example 1000000
|
|
33230
|
+
*/
|
|
33231
|
+
stx: string;
|
|
33232
|
+
};
|
|
33225
33233
|
}[];
|
|
33226
33234
|
};
|
|
33227
33235
|
};
|
|
@@ -33262,15 +33270,56 @@ export interface operations {
|
|
|
33262
33270
|
};
|
|
33263
33271
|
content: {
|
|
33264
33272
|
"application/json": {
|
|
33265
|
-
|
|
33273
|
+
staker: string;
|
|
33266
33274
|
signer: string;
|
|
33275
|
+
type: "l1" | "l2";
|
|
33276
|
+
balances: {
|
|
33277
|
+
/**
|
|
33278
|
+
* Amount
|
|
33279
|
+
* @description Amount
|
|
33280
|
+
*/
|
|
33281
|
+
btc: string;
|
|
33282
|
+
/**
|
|
33283
|
+
* Amount
|
|
33284
|
+
* @description Amount
|
|
33285
|
+
*/
|
|
33286
|
+
stx: string;
|
|
33287
|
+
};
|
|
33288
|
+
l1_lockup: {
|
|
33289
|
+
/** @description The proven L1 lockup transactions */
|
|
33290
|
+
transactions: {
|
|
33291
|
+
/**
|
|
33292
|
+
* Transaction ID
|
|
33293
|
+
* @description Transaction ID
|
|
33294
|
+
*/
|
|
33295
|
+
tx_id: string;
|
|
33296
|
+
/** @description The output index of the proven L1 lockup */
|
|
33297
|
+
output_index: number;
|
|
33298
|
+
}[];
|
|
33299
|
+
};
|
|
33300
|
+
} | {
|
|
33267
33301
|
staker: string;
|
|
33268
|
-
|
|
33269
|
-
|
|
33270
|
-
|
|
33271
|
-
|
|
33272
|
-
|
|
33273
|
-
|
|
33302
|
+
signer: string;
|
|
33303
|
+
type: "l1" | "l2";
|
|
33304
|
+
balances: {
|
|
33305
|
+
/**
|
|
33306
|
+
* Amount
|
|
33307
|
+
* @description Amount
|
|
33308
|
+
*/
|
|
33309
|
+
btc: string;
|
|
33310
|
+
/**
|
|
33311
|
+
* Amount
|
|
33312
|
+
* @description Amount
|
|
33313
|
+
*/
|
|
33314
|
+
stx: string;
|
|
33315
|
+
};
|
|
33316
|
+
l2_lockup: {
|
|
33317
|
+
/**
|
|
33318
|
+
* Transaction ID
|
|
33319
|
+
* @description Transaction ID
|
|
33320
|
+
*/
|
|
33321
|
+
tx_id: string;
|
|
33322
|
+
};
|
|
33274
33323
|
};
|
|
33275
33324
|
};
|
|
33276
33325
|
};
|