@stacks/blockchain-api-client 7.0.0-stacks-2.1.1 → 7.0.0
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/apis/AccountsApi.d.ts +4 -4
- package/lib/generated/apis/AccountsApi.js +2 -2
- package/lib/generated/apis/InfoApi.d.ts +12 -12
- package/lib/generated/apis/InfoApi.js +6 -6
- package/lib/generated/apis/NonFungibleTokensApi.d.ts +4 -4
- package/lib/generated/apis/NonFungibleTokensApi.js +2 -2
- package/lib/generated/apis/RosettaApi.d.ts +16 -16
- package/lib/generated/apis/RosettaApi.js +8 -8
- package/lib/index.umd.js +18 -18
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/apis/AccountsApi.ts +4 -4
- package/src/generated/apis/InfoApi.ts +12 -12
- package/src/generated/apis/NonFungibleTokensApi.ts +4 -4
- package/src/generated/apis/RosettaApi.ts +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacks/blockchain-api-client",
|
|
3
|
-
"version": "7.0.0
|
|
3
|
+
"version": "7.0.0",
|
|
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",
|
|
@@ -299,7 +299,7 @@ export interface AccountsApiInterface {
|
|
|
299
299
|
getAccountTransactionsWithTransfers(requestParameters: GetAccountTransactionsWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionsWithTransfersListResponse>;
|
|
300
300
|
|
|
301
301
|
/**
|
|
302
|
-
* Retrieves transaction details for a given
|
|
302
|
+
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
303
303
|
* @summary Get account transaction information for specific transaction
|
|
304
304
|
* @param {string} principal Stacks address or a contract identifier
|
|
305
305
|
* @param {string} txId Transaction id
|
|
@@ -310,7 +310,7 @@ export interface AccountsApiInterface {
|
|
|
310
310
|
getSingleTransactionWithTransfersRaw(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionWithTransfers>>;
|
|
311
311
|
|
|
312
312
|
/**
|
|
313
|
-
* Retrieves transaction details for a given
|
|
313
|
+
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
314
314
|
* Get account transaction information for specific transaction
|
|
315
315
|
*/
|
|
316
316
|
getSingleTransactionWithTransfers(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionWithTransfers>;
|
|
@@ -735,7 +735,7 @@ export class AccountsApi extends runtime.BaseAPI implements AccountsApiInterface
|
|
|
735
735
|
}
|
|
736
736
|
|
|
737
737
|
/**
|
|
738
|
-
* Retrieves transaction details for a given
|
|
738
|
+
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
739
739
|
* Get account transaction information for specific transaction
|
|
740
740
|
*/
|
|
741
741
|
async getSingleTransactionWithTransfersRaw(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<AddressTransactionWithTransfers>> {
|
|
@@ -762,7 +762,7 @@ export class AccountsApi extends runtime.BaseAPI implements AccountsApiInterface
|
|
|
762
762
|
}
|
|
763
763
|
|
|
764
764
|
/**
|
|
765
|
-
* Retrieves transaction details for a given
|
|
765
|
+
* Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
|
|
766
766
|
* Get account transaction information for specific transaction
|
|
767
767
|
*/
|
|
768
768
|
async getSingleTransactionWithTransfers(requestParameters: GetSingleTransactionWithTransfersRequest, initOverrides?: RequestInit): Promise<AddressTransactionWithTransfers> {
|
|
@@ -134,7 +134,7 @@ export interface InfoApiInterface {
|
|
|
134
134
|
getStatus(initOverrides?: RequestInit): Promise<ServerStatusResponse>;
|
|
135
135
|
|
|
136
136
|
/**
|
|
137
|
-
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking).
|
|
137
|
+
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking). **Note:** this uses the estimated future total supply for the year 2050.
|
|
138
138
|
* @summary Get total and unlocked STX supply
|
|
139
139
|
* @param {number} [height] Supply details are queried from specified block height. If the block height is not specified, the latest block height is taken as default value.
|
|
140
140
|
* @param {*} [options] Override http request option.
|
|
@@ -144,7 +144,7 @@ export interface InfoApiInterface {
|
|
|
144
144
|
getStxSupplyRaw(requestParameters: GetStxSupplyRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GetStxSupplyResponse>>;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking).
|
|
147
|
+
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking). **Note:** this uses the estimated future total supply for the year 2050.
|
|
148
148
|
* Get total and unlocked STX supply
|
|
149
149
|
*/
|
|
150
150
|
getStxSupply(requestParameters: GetStxSupplyRequest, initOverrides?: RequestInit): Promise<GetStxSupplyResponse>;
|
|
@@ -165,7 +165,7 @@ export interface InfoApiInterface {
|
|
|
165
165
|
getStxSupplyCirculatingPlain(initOverrides?: RequestInit): Promise<string>;
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
|
-
* Retrieves the total supply for STX tokens as plain text.
|
|
168
|
+
* Retrieves the total supply for STX tokens as plain text. **Note:** this uses the estimated future total supply for the year 2050.
|
|
169
169
|
* @summary Get total STX supply in plain text format
|
|
170
170
|
* @param {*} [options] Override http request option.
|
|
171
171
|
* @throws {RequiredError}
|
|
@@ -174,13 +174,13 @@ export interface InfoApiInterface {
|
|
|
174
174
|
getStxSupplyTotalSupplyPlainRaw(initOverrides?: RequestInit): Promise<runtime.ApiResponse<string>>;
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
* Retrieves the total supply for STX tokens as plain text.
|
|
177
|
+
* Retrieves the total supply for STX tokens as plain text. **Note:** this uses the estimated future total supply for the year 2050.
|
|
178
178
|
* Get total STX supply in plain text format
|
|
179
179
|
*/
|
|
180
180
|
getStxSupplyTotalSupplyPlain(initOverrides?: RequestInit): Promise<string>;
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
|
-
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.
|
|
183
|
+
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked. **Note:** this uses the estimated future total supply for the year 2050.
|
|
184
184
|
* @summary Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)
|
|
185
185
|
* @param {number} [height] Supply details are queried from specified block height. If the block height is not specified, the latest block height is taken as default value.
|
|
186
186
|
* @param {*} [options] Override http request option.
|
|
@@ -190,7 +190,7 @@ export interface InfoApiInterface {
|
|
|
190
190
|
getTotalStxSupplyLegacyFormatRaw(requestParameters: GetTotalStxSupplyLegacyFormatRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GetStxSupplyLegacyFormatResponse>>;
|
|
191
191
|
|
|
192
192
|
/**
|
|
193
|
-
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.
|
|
193
|
+
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked. **Note:** this uses the estimated future total supply for the year 2050.
|
|
194
194
|
* Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)
|
|
195
195
|
*/
|
|
196
196
|
getTotalStxSupplyLegacyFormat(requestParameters: GetTotalStxSupplyLegacyFormatRequest, initOverrides?: RequestInit): Promise<GetStxSupplyLegacyFormatResponse>;
|
|
@@ -347,7 +347,7 @@ export class InfoApi extends runtime.BaseAPI implements InfoApiInterface {
|
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
|
-
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking).
|
|
350
|
+
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking). **Note:** this uses the estimated future total supply for the year 2050.
|
|
351
351
|
* Get total and unlocked STX supply
|
|
352
352
|
*/
|
|
353
353
|
async getStxSupplyRaw(requestParameters: GetStxSupplyRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GetStxSupplyResponse>> {
|
|
@@ -370,7 +370,7 @@ export class InfoApi extends runtime.BaseAPI implements InfoApiInterface {
|
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
/**
|
|
373
|
-
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking).
|
|
373
|
+
* Retrieves the total and unlocked STX supply. More information on Stacking can be found [here] (https://docs.stacks.co/understand-stacks/stacking). **Note:** this uses the estimated future total supply for the year 2050.
|
|
374
374
|
* Get total and unlocked STX supply
|
|
375
375
|
*/
|
|
376
376
|
async getStxSupply(requestParameters: GetStxSupplyRequest, initOverrides?: RequestInit): Promise<GetStxSupplyResponse> {
|
|
@@ -407,7 +407,7 @@ export class InfoApi extends runtime.BaseAPI implements InfoApiInterface {
|
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
/**
|
|
410
|
-
* Retrieves the total supply for STX tokens as plain text.
|
|
410
|
+
* Retrieves the total supply for STX tokens as plain text. **Note:** this uses the estimated future total supply for the year 2050.
|
|
411
411
|
* Get total STX supply in plain text format
|
|
412
412
|
*/
|
|
413
413
|
async getStxSupplyTotalSupplyPlainRaw(initOverrides?: RequestInit): Promise<runtime.ApiResponse<string>> {
|
|
@@ -426,7 +426,7 @@ export class InfoApi extends runtime.BaseAPI implements InfoApiInterface {
|
|
|
426
426
|
}
|
|
427
427
|
|
|
428
428
|
/**
|
|
429
|
-
* Retrieves the total supply for STX tokens as plain text.
|
|
429
|
+
* Retrieves the total supply for STX tokens as plain text. **Note:** this uses the estimated future total supply for the year 2050.
|
|
430
430
|
* Get total STX supply in plain text format
|
|
431
431
|
*/
|
|
432
432
|
async getStxSupplyTotalSupplyPlain(initOverrides?: RequestInit): Promise<string> {
|
|
@@ -435,7 +435,7 @@ export class InfoApi extends runtime.BaseAPI implements InfoApiInterface {
|
|
|
435
435
|
}
|
|
436
436
|
|
|
437
437
|
/**
|
|
438
|
-
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.
|
|
438
|
+
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked. **Note:** this uses the estimated future total supply for the year 2050.
|
|
439
439
|
* Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)
|
|
440
440
|
*/
|
|
441
441
|
async getTotalStxSupplyLegacyFormatRaw(requestParameters: GetTotalStxSupplyLegacyFormatRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<GetStxSupplyLegacyFormatResponse>> {
|
|
@@ -458,7 +458,7 @@ export class InfoApi extends runtime.BaseAPI implements InfoApiInterface {
|
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked.
|
|
461
|
+
* Retrieves total supply of STX tokens including those currently in circulation that have been unlocked. **Note:** this uses the estimated future total supply for the year 2050.
|
|
462
462
|
* Get total and unlocked STX supply (results formatted the same as the legacy 1.0 API)
|
|
463
463
|
*/
|
|
464
464
|
async getTotalStxSupplyLegacyFormat(requestParameters: GetTotalStxSupplyLegacyFormatRequest, initOverrides?: RequestInit): Promise<GetStxSupplyLegacyFormatResponse> {
|
|
@@ -76,7 +76,7 @@ export interface GetNftMintsRequest {
|
|
|
76
76
|
export interface NonFungibleTokensApiInterface {
|
|
77
77
|
/**
|
|
78
78
|
* Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
|
|
79
|
-
* @summary Non fungible tokens metadata for contract
|
|
79
|
+
* @summary Non fungible tokens metadata for contract ID
|
|
80
80
|
* @param {string} contractId token\'s contract id
|
|
81
81
|
* @param {*} [options] Override http request option.
|
|
82
82
|
* @throws {RequiredError}
|
|
@@ -86,7 +86,7 @@ export interface NonFungibleTokensApiInterface {
|
|
|
86
86
|
|
|
87
87
|
/**
|
|
88
88
|
* Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
|
|
89
|
-
* Non fungible tokens metadata for contract
|
|
89
|
+
* Non fungible tokens metadata for contract ID
|
|
90
90
|
*/
|
|
91
91
|
getContractNftMetadata(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenMetadata>;
|
|
92
92
|
|
|
@@ -178,7 +178,7 @@ export class NonFungibleTokensApi extends runtime.BaseAPI implements NonFungible
|
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
180
|
* Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
|
|
181
|
-
* Non fungible tokens metadata for contract
|
|
181
|
+
* Non fungible tokens metadata for contract ID
|
|
182
182
|
*/
|
|
183
183
|
async getContractNftMetadataRaw(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<NonFungibleTokenMetadata>> {
|
|
184
184
|
if (requestParameters.contractId === null || requestParameters.contractId === undefined) {
|
|
@@ -201,7 +201,7 @@ export class NonFungibleTokensApi extends runtime.BaseAPI implements NonFungible
|
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
203
|
* Retrieves metadata for non fungible tokens for a given contract id. More information on Non-Fungible Tokens on the Stacks blockchain can be found [here](https://docs.stacks.co/write-smart-contracts/tokens#non-fungible-tokens-nfts).
|
|
204
|
-
* Non fungible tokens metadata for contract
|
|
204
|
+
* Non fungible tokens metadata for contract ID
|
|
205
205
|
*/
|
|
206
206
|
async getContractNftMetadata(requestParameters: GetContractNftMetadataRequest, initOverrides?: RequestInit): Promise<NonFungibleTokenMetadata> {
|
|
207
207
|
const response = await this.getContractNftMetadataRaw(requestParameters, initOverrides);
|
|
@@ -229,7 +229,7 @@ export interface RosettaApiInterface {
|
|
|
229
229
|
rosettaBlockTransaction(requestParameters: RosettaBlockTransactionOperationRequest, initOverrides?: RequestInit): Promise<RosettaBlockTransactionResponse>;
|
|
230
230
|
|
|
231
231
|
/**
|
|
232
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
232
|
+
* Take unsigned transaction and signature, combine both and return signed transaction. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
233
233
|
* @summary Create Network Transaction from Signatures
|
|
234
234
|
* @param {RosettaConstructionCombineRequest} rosettaConstructionCombineRequest
|
|
235
235
|
* @param {*} [options] Override http request option.
|
|
@@ -239,7 +239,7 @@ export interface RosettaApiInterface {
|
|
|
239
239
|
rosettaConstructionCombineRaw(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionCombineResponse>>;
|
|
240
240
|
|
|
241
241
|
/**
|
|
242
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
242
|
+
* Take unsigned transaction and signature, combine both and return signed transaction. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
243
243
|
* Create Network Transaction from Signatures
|
|
244
244
|
*/
|
|
245
245
|
rosettaConstructionCombine(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionCombineResponse>;
|
|
@@ -309,7 +309,7 @@ export interface RosettaApiInterface {
|
|
|
309
309
|
rosettaConstructionParse(requestParameters: RosettaConstructionParseOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionParseResponse>;
|
|
310
310
|
|
|
311
311
|
/**
|
|
312
|
-
* Generate
|
|
312
|
+
* Generate an unsigned transaction from operations and metadata. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
313
313
|
* @summary Generate an Unsigned Transaction and Signing Payloads
|
|
314
314
|
* @param {RosettaConstructionPayloadsRequest} rosettaConstructionPayloadsRequest
|
|
315
315
|
* @param {*} [options] Override http request option.
|
|
@@ -319,7 +319,7 @@ export interface RosettaApiInterface {
|
|
|
319
319
|
rosettaConstructionPayloadsRaw(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionPayloadResponse>>;
|
|
320
320
|
|
|
321
321
|
/**
|
|
322
|
-
* Generate
|
|
322
|
+
* Generate an unsigned transaction from operations and metadata. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
323
323
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
324
324
|
*/
|
|
325
325
|
rosettaConstructionPayloads(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPayloadResponse>;
|
|
@@ -341,7 +341,7 @@ export interface RosettaApiInterface {
|
|
|
341
341
|
rosettaConstructionPreprocess(requestParameters: RosettaConstructionPreprocessOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPreprocessResponse>;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
* Submit a pre-signed transaction to the node.
|
|
344
|
+
* Submit a pre-signed transaction to the node. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
345
345
|
* @summary Submit a Signed Transaction
|
|
346
346
|
* @param {RosettaConstructionSubmitRequest} rosettaConstructionSubmitRequest
|
|
347
347
|
* @param {*} [options] Override http request option.
|
|
@@ -351,13 +351,13 @@ export interface RosettaApiInterface {
|
|
|
351
351
|
rosettaConstructionSubmitRaw(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionSubmitResponse>>;
|
|
352
352
|
|
|
353
353
|
/**
|
|
354
|
-
* Submit a pre-signed transaction to the node.
|
|
354
|
+
* Submit a pre-signed transaction to the node. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
355
355
|
* Submit a Signed Transaction
|
|
356
356
|
*/
|
|
357
357
|
rosettaConstructionSubmit(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionSubmitResponse>;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
|
-
* Retrieves a list of
|
|
360
|
+
* Retrieves a list of transactions currently in the mempool for a given network.
|
|
361
361
|
* @summary Get All Mempool Transactions
|
|
362
362
|
* @param {RosettaMempoolRequest} rosettaMempoolRequest
|
|
363
363
|
* @param {*} [options] Override http request option.
|
|
@@ -367,7 +367,7 @@ export interface RosettaApiInterface {
|
|
|
367
367
|
rosettaMempoolRaw(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaMempoolResponse>>;
|
|
368
368
|
|
|
369
369
|
/**
|
|
370
|
-
* Retrieves a list of
|
|
370
|
+
* Retrieves a list of transactions currently in the mempool for a given network.
|
|
371
371
|
* Get All Mempool Transactions
|
|
372
372
|
*/
|
|
373
373
|
rosettaMempool(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<RosettaMempoolResponse>;
|
|
@@ -548,7 +548,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
548
548
|
}
|
|
549
549
|
|
|
550
550
|
/**
|
|
551
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
551
|
+
* Take unsigned transaction and signature, combine both and return signed transaction. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
552
552
|
* Create Network Transaction from Signatures
|
|
553
553
|
*/
|
|
554
554
|
async rosettaConstructionCombineRaw(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionCombineResponse>> {
|
|
@@ -574,7 +574,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
574
574
|
}
|
|
575
575
|
|
|
576
576
|
/**
|
|
577
|
-
* Take unsigned transaction and signature, combine both and return signed transaction
|
|
577
|
+
* Take unsigned transaction and signature, combine both and return signed transaction. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
578
578
|
* Create Network Transaction from Signatures
|
|
579
579
|
*/
|
|
580
580
|
async rosettaConstructionCombine(requestParameters: RosettaConstructionCombineOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionCombineResponse> {
|
|
@@ -723,7 +723,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
723
723
|
}
|
|
724
724
|
|
|
725
725
|
/**
|
|
726
|
-
* Generate
|
|
726
|
+
* Generate an unsigned transaction from operations and metadata. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
727
727
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
728
728
|
*/
|
|
729
729
|
async rosettaConstructionPayloadsRaw(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionPayloadResponse>> {
|
|
@@ -749,7 +749,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
749
749
|
}
|
|
750
750
|
|
|
751
751
|
/**
|
|
752
|
-
* Generate
|
|
752
|
+
* Generate an unsigned transaction from operations and metadata. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
753
753
|
* Generate an Unsigned Transaction and Signing Payloads
|
|
754
754
|
*/
|
|
755
755
|
async rosettaConstructionPayloads(requestParameters: RosettaConstructionPayloadsOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionPayloadResponse> {
|
|
@@ -793,7 +793,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
793
793
|
}
|
|
794
794
|
|
|
795
795
|
/**
|
|
796
|
-
* Submit a pre-signed transaction to the node.
|
|
796
|
+
* Submit a pre-signed transaction to the node. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
797
797
|
* Submit a Signed Transaction
|
|
798
798
|
*/
|
|
799
799
|
async rosettaConstructionSubmitRaw(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaConstructionSubmitResponse>> {
|
|
@@ -819,7 +819,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
819
819
|
}
|
|
820
820
|
|
|
821
821
|
/**
|
|
822
|
-
* Submit a pre-signed transaction to the node.
|
|
822
|
+
* Submit a pre-signed transaction to the node. The examples below are illustrative only. You\'ll need to use your wallet to generate actual values to use them in the request payload.
|
|
823
823
|
* Submit a Signed Transaction
|
|
824
824
|
*/
|
|
825
825
|
async rosettaConstructionSubmit(requestParameters: RosettaConstructionSubmitOperationRequest, initOverrides?: RequestInit): Promise<RosettaConstructionSubmitResponse> {
|
|
@@ -828,7 +828,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
828
828
|
}
|
|
829
829
|
|
|
830
830
|
/**
|
|
831
|
-
* Retrieves a list of
|
|
831
|
+
* Retrieves a list of transactions currently in the mempool for a given network.
|
|
832
832
|
* Get All Mempool Transactions
|
|
833
833
|
*/
|
|
834
834
|
async rosettaMempoolRaw(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<RosettaMempoolResponse>> {
|
|
@@ -854,7 +854,7 @@ export class RosettaApi extends runtime.BaseAPI implements RosettaApiInterface {
|
|
|
854
854
|
}
|
|
855
855
|
|
|
856
856
|
/**
|
|
857
|
-
* Retrieves a list of
|
|
857
|
+
* Retrieves a list of transactions currently in the mempool for a given network.
|
|
858
858
|
* Get All Mempool Transactions
|
|
859
859
|
*/
|
|
860
860
|
async rosettaMempool(requestParameters: RosettaMempoolOperationRequest, initOverrides?: RequestInit): Promise<RosettaMempoolResponse> {
|