@stacks/blockchain-api-client 4.0.0-beta.3 → 4.0.0-beta.6
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/NamesApi.d.ts +0 -29
- package/lib/generated/apis/NamesApi.js +0 -32
- package/lib/generated/apis/NamesApi.js.map +1 -1
- package/lib/generated/apis/RosettaApi.d.ts +5 -13
- package/lib/generated/apis/RosettaApi.js +1 -1
- package/lib/generated/apis/RosettaApi.js.map +1 -1
- package/lib/generated/models/AddressBalanceResponse.d.ts +11 -7
- package/lib/generated/models/AddressBalanceResponse.js +2 -2
- package/lib/generated/models/AddressBalanceResponse.js.map +1 -1
- package/lib/generated/models/BnsNamesOwnByAddressResponse.d.ts +1 -1
- package/lib/generated/models/BnsNamesOwnByAddressResponse.js +1 -2
- package/lib/generated/models/BnsNamesOwnByAddressResponse.js.map +1 -1
- package/lib/generated/models/NetworkBlockTimesResponse.d.ts +5 -5
- package/lib/generated/models/NetworkBlockTimesResponse.js +4 -4
- package/lib/generated/models/NetworkBlockTimesResponse.js.map +1 -1
- package/lib/generated/models/RosettaGenesisBlockIdentifier.d.ts +33 -0
- package/lib/generated/models/RosettaGenesisBlockIdentifier.js +44 -0
- package/lib/generated/models/RosettaGenesisBlockIdentifier.js.map +1 -0
- package/lib/generated/models/RosettaNetworkStatusResponse.d.ts +58 -0
- package/lib/generated/models/RosettaNetworkStatusResponse.js +54 -0
- package/lib/generated/models/RosettaNetworkStatusResponse.js.map +1 -0
- package/lib/generated/models/RosettaOldestBlockIdentifier.d.ts +33 -0
- package/lib/generated/models/RosettaOldestBlockIdentifier.js +44 -0
- package/lib/generated/models/RosettaOldestBlockIdentifier.js.map +1 -0
- package/lib/generated/models/RosettaOptions.d.ts +2 -2
- package/lib/generated/models/RosettaPeers.d.ts +33 -0
- package/lib/generated/models/RosettaPeers.js +45 -0
- package/lib/generated/models/RosettaPeers.js.map +1 -0
- package/lib/generated/models/RosettaSyncStatus.d.ts +45 -0
- package/lib/generated/models/RosettaSyncStatus.js +49 -0
- package/lib/generated/models/RosettaSyncStatus.js.map +1 -0
- package/lib/generated/models/{AddressBalanceResponseStx.d.ts → StxBalance.d.ts} +16 -16
- package/lib/generated/models/{AddressBalanceResponseStx.js → StxBalance.js} +9 -9
- package/lib/generated/models/StxBalance.js.map +1 -0
- package/lib/generated/models/{NetworkBlockTimesResponseMainnet.d.ts → TargetBlockTime.d.ts} +7 -7
- package/lib/generated/models/{NetworkBlockTimesResponseMainnet.js → TargetBlockTime.js} +9 -9
- package/lib/generated/models/TargetBlockTime.js.map +1 -0
- package/lib/generated/models/index.d.ts +7 -2
- package/lib/generated/models/index.js +7 -2
- package/lib/generated/models/index.js.map +1 -1
- package/lib/index.umd.js +350 -188
- package/lib/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/.openapi-generator/FILES +7 -2
- package/src/generated/apis/NamesApi.ts +0 -62
- package/src/generated/apis/RosettaApi.ts +8 -5
- package/src/generated/models/AddressBalanceResponse.ts +12 -12
- package/src/generated/models/BnsNamesOwnByAddressResponse.ts +2 -2
- package/src/generated/models/NetworkBlockTimesResponse.ts +12 -12
- package/src/generated/models/RosettaGenesisBlockIdentifier.ts +64 -0
- package/src/generated/models/RosettaNetworkStatusResponse.ts +115 -0
- package/src/generated/models/RosettaOldestBlockIdentifier.ts +64 -0
- package/src/generated/models/RosettaOptions.ts +2 -2
- package/src/generated/models/RosettaPeers.ts +64 -0
- package/src/generated/models/RosettaSyncStatus.ts +80 -0
- package/src/generated/models/{AddressBalanceResponseStx.ts → StxBalance.ts} +17 -17
- package/src/generated/models/{NetworkBlockTimesResponseMainnet.ts → TargetBlockTime.ts} +8 -8
- package/src/generated/models/index.ts +7 -2
- package/lib/generated/models/AddressBalanceResponseStx.js.map +0 -1
- package/lib/generated/models/NetworkBlockTimesResponseMainnet.js.map +0 -1
package/lib/index.umd.js
CHANGED
|
@@ -878,7 +878,7 @@
|
|
|
878
878
|
}
|
|
879
879
|
|
|
880
880
|
return {
|
|
881
|
-
'stx':
|
|
881
|
+
'stx': StxBalanceFromJSON(json['stx']),
|
|
882
882
|
'fungible_tokens': json['fungible_tokens'],
|
|
883
883
|
'non_fungible_tokens': json['non_fungible_tokens'],
|
|
884
884
|
'token_offering_locked': !exists(json, 'token_offering_locked') ? undefined : AddressTokenOfferingLockedFromJSON(json['token_offering_locked'])
|
|
@@ -894,72 +894,13 @@
|
|
|
894
894
|
}
|
|
895
895
|
|
|
896
896
|
return {
|
|
897
|
-
'stx':
|
|
897
|
+
'stx': StxBalanceToJSON(value.stx),
|
|
898
898
|
'fungible_tokens': value.fungible_tokens,
|
|
899
899
|
'non_fungible_tokens': value.non_fungible_tokens,
|
|
900
900
|
'token_offering_locked': AddressTokenOfferingLockedToJSON(value.token_offering_locked)
|
|
901
901
|
};
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
-
/* tslint:disable */
|
|
905
|
-
|
|
906
|
-
/* eslint-disable */
|
|
907
|
-
|
|
908
|
-
/**
|
|
909
|
-
* Stacks Blockchain API
|
|
910
|
-
* 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>
|
|
911
|
-
*
|
|
912
|
-
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
913
|
-
*
|
|
914
|
-
*
|
|
915
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
916
|
-
* https://openapi-generator.tech
|
|
917
|
-
* Do not edit the class manually.
|
|
918
|
-
*/
|
|
919
|
-
function AddressBalanceResponseStxFromJSON(json) {
|
|
920
|
-
return AddressBalanceResponseStxFromJSONTyped(json);
|
|
921
|
-
}
|
|
922
|
-
function AddressBalanceResponseStxFromJSONTyped(json, ignoreDiscriminator) {
|
|
923
|
-
if (json === undefined || json === null) {
|
|
924
|
-
return json;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
return {
|
|
928
|
-
'balance': json['balance'],
|
|
929
|
-
'total_sent': json['total_sent'],
|
|
930
|
-
'total_received': json['total_received'],
|
|
931
|
-
'total_fees_sent': json['total_fees_sent'],
|
|
932
|
-
'total_miner_rewards_received': json['total_miner_rewards_received'],
|
|
933
|
-
'lock_tx_id': json['lock_tx_id'],
|
|
934
|
-
'locked': json['locked'],
|
|
935
|
-
'lock_height': json['lock_height'],
|
|
936
|
-
'burnchain_lock_height': json['burnchain_lock_height'],
|
|
937
|
-
'burnchain_unlock_height': json['burnchain_unlock_height']
|
|
938
|
-
};
|
|
939
|
-
}
|
|
940
|
-
function AddressBalanceResponseStxToJSON(value) {
|
|
941
|
-
if (value === undefined) {
|
|
942
|
-
return undefined;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
if (value === null) {
|
|
946
|
-
return null;
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
return {
|
|
950
|
-
'balance': value.balance,
|
|
951
|
-
'total_sent': value.total_sent,
|
|
952
|
-
'total_received': value.total_received,
|
|
953
|
-
'total_fees_sent': value.total_fees_sent,
|
|
954
|
-
'total_miner_rewards_received': value.total_miner_rewards_received,
|
|
955
|
-
'lock_tx_id': value.lock_tx_id,
|
|
956
|
-
'locked': value.locked,
|
|
957
|
-
'lock_height': value.lock_height,
|
|
958
|
-
'burnchain_lock_height': value.burnchain_lock_height,
|
|
959
|
-
'burnchain_unlock_height': value.burnchain_unlock_height
|
|
960
|
-
};
|
|
961
|
-
}
|
|
962
|
-
|
|
963
904
|
/* tslint:disable */
|
|
964
905
|
function AddressNftListResponseFromJSON(json) {
|
|
965
906
|
return AddressNftListResponseFromJSONTyped(json);
|
|
@@ -1755,6 +1696,20 @@
|
|
|
1755
1696
|
}
|
|
1756
1697
|
|
|
1757
1698
|
/* tslint:disable */
|
|
1699
|
+
|
|
1700
|
+
/* eslint-disable */
|
|
1701
|
+
|
|
1702
|
+
/**
|
|
1703
|
+
* Stacks Blockchain API
|
|
1704
|
+
* 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>
|
|
1705
|
+
*
|
|
1706
|
+
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
1707
|
+
*
|
|
1708
|
+
*
|
|
1709
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1710
|
+
* https://openapi-generator.tech
|
|
1711
|
+
* Do not edit the class manually.
|
|
1712
|
+
*/
|
|
1758
1713
|
function BnsNamesOwnByAddressResponseFromJSON(json) {
|
|
1759
1714
|
return BnsNamesOwnByAddressResponseFromJSONTyped(json);
|
|
1760
1715
|
}
|
|
@@ -1764,7 +1719,7 @@
|
|
|
1764
1719
|
}
|
|
1765
1720
|
|
|
1766
1721
|
return {
|
|
1767
|
-
'names':
|
|
1722
|
+
'names': json['names']
|
|
1768
1723
|
};
|
|
1769
1724
|
}
|
|
1770
1725
|
function BnsNamesOwnByAddressResponseToJSON(value) {
|
|
@@ -2931,8 +2886,8 @@
|
|
|
2931
2886
|
}
|
|
2932
2887
|
|
|
2933
2888
|
return {
|
|
2934
|
-
'mainnet':
|
|
2935
|
-
'testnet':
|
|
2889
|
+
'mainnet': TargetBlockTimeFromJSON(json['mainnet']),
|
|
2890
|
+
'testnet': TargetBlockTimeFromJSON(json['testnet'])
|
|
2936
2891
|
};
|
|
2937
2892
|
}
|
|
2938
2893
|
function NetworkBlockTimesResponseToJSON(value) {
|
|
@@ -2945,49 +2900,8 @@
|
|
|
2945
2900
|
}
|
|
2946
2901
|
|
|
2947
2902
|
return {
|
|
2948
|
-
'mainnet':
|
|
2949
|
-
'testnet':
|
|
2950
|
-
};
|
|
2951
|
-
}
|
|
2952
|
-
|
|
2953
|
-
/* tslint:disable */
|
|
2954
|
-
|
|
2955
|
-
/* eslint-disable */
|
|
2956
|
-
|
|
2957
|
-
/**
|
|
2958
|
-
* Stacks Blockchain API
|
|
2959
|
-
* 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>
|
|
2960
|
-
*
|
|
2961
|
-
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
2962
|
-
*
|
|
2963
|
-
*
|
|
2964
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2965
|
-
* https://openapi-generator.tech
|
|
2966
|
-
* Do not edit the class manually.
|
|
2967
|
-
*/
|
|
2968
|
-
function NetworkBlockTimesResponseMainnetFromJSON(json) {
|
|
2969
|
-
return NetworkBlockTimesResponseMainnetFromJSONTyped(json);
|
|
2970
|
-
}
|
|
2971
|
-
function NetworkBlockTimesResponseMainnetFromJSONTyped(json, ignoreDiscriminator) {
|
|
2972
|
-
if (json === undefined || json === null) {
|
|
2973
|
-
return json;
|
|
2974
|
-
}
|
|
2975
|
-
|
|
2976
|
-
return {
|
|
2977
|
-
'target_block_time': json['target_block_time']
|
|
2978
|
-
};
|
|
2979
|
-
}
|
|
2980
|
-
function NetworkBlockTimesResponseMainnetToJSON(value) {
|
|
2981
|
-
if (value === undefined) {
|
|
2982
|
-
return undefined;
|
|
2983
|
-
}
|
|
2984
|
-
|
|
2985
|
-
if (value === null) {
|
|
2986
|
-
return null;
|
|
2987
|
-
}
|
|
2988
|
-
|
|
2989
|
-
return {
|
|
2990
|
-
'target_block_time': value.target_block_time
|
|
2903
|
+
'mainnet': TargetBlockTimeToJSON(value.mainnet),
|
|
2904
|
+
'testnet': TargetBlockTimeToJSON(value.testnet)
|
|
2991
2905
|
};
|
|
2992
2906
|
}
|
|
2993
2907
|
|
|
@@ -4649,6 +4563,49 @@
|
|
|
4649
4563
|
};
|
|
4650
4564
|
}
|
|
4651
4565
|
|
|
4566
|
+
/* tslint:disable */
|
|
4567
|
+
|
|
4568
|
+
/* eslint-disable */
|
|
4569
|
+
|
|
4570
|
+
/**
|
|
4571
|
+
* Stacks Blockchain API
|
|
4572
|
+
* 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>
|
|
4573
|
+
*
|
|
4574
|
+
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
4575
|
+
*
|
|
4576
|
+
*
|
|
4577
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4578
|
+
* https://openapi-generator.tech
|
|
4579
|
+
* Do not edit the class manually.
|
|
4580
|
+
*/
|
|
4581
|
+
function RosettaGenesisBlockIdentifierFromJSON(json) {
|
|
4582
|
+
return RosettaGenesisBlockIdentifierFromJSONTyped(json);
|
|
4583
|
+
}
|
|
4584
|
+
function RosettaGenesisBlockIdentifierFromJSONTyped(json, ignoreDiscriminator) {
|
|
4585
|
+
if (json === undefined || json === null) {
|
|
4586
|
+
return json;
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
return {
|
|
4590
|
+
'index': json['index'],
|
|
4591
|
+
'hash': json['hash']
|
|
4592
|
+
};
|
|
4593
|
+
}
|
|
4594
|
+
function RosettaGenesisBlockIdentifierToJSON(value) {
|
|
4595
|
+
if (value === undefined) {
|
|
4596
|
+
return undefined;
|
|
4597
|
+
}
|
|
4598
|
+
|
|
4599
|
+
if (value === null) {
|
|
4600
|
+
return null;
|
|
4601
|
+
}
|
|
4602
|
+
|
|
4603
|
+
return {
|
|
4604
|
+
'index': value.index,
|
|
4605
|
+
'hash': value.hash
|
|
4606
|
+
};
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4652
4609
|
/* tslint:disable */
|
|
4653
4610
|
function RosettaMaxFeeAmountFromJSON(json) {
|
|
4654
4611
|
return RosettaMaxFeeAmountFromJSONTyped(json);
|
|
@@ -4988,6 +4945,86 @@
|
|
|
4988
4945
|
};
|
|
4989
4946
|
}
|
|
4990
4947
|
|
|
4948
|
+
/* tslint:disable */
|
|
4949
|
+
function RosettaNetworkStatusResponseFromJSON(json) {
|
|
4950
|
+
return RosettaNetworkStatusResponseFromJSONTyped(json);
|
|
4951
|
+
}
|
|
4952
|
+
function RosettaNetworkStatusResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
4953
|
+
if (json === undefined || json === null) {
|
|
4954
|
+
return json;
|
|
4955
|
+
}
|
|
4956
|
+
|
|
4957
|
+
return {
|
|
4958
|
+
'current_block_identifier': json['current_block_identifier'],
|
|
4959
|
+
'current_block_timestamp': json['current_block_timestamp'],
|
|
4960
|
+
'genesis_block_identifier': RosettaGenesisBlockIdentifierFromJSON(json['genesis_block_identifier']),
|
|
4961
|
+
'oldest_block_identifier': !exists(json, 'oldest_block_identifier') ? undefined : RosettaOldestBlockIdentifierFromJSON(json['oldest_block_identifier']),
|
|
4962
|
+
'sync_status': !exists(json, 'sync_status') ? undefined : RosettaSyncStatusFromJSON(json['sync_status']),
|
|
4963
|
+
'peers': json['peers'].map(RosettaPeersFromJSON)
|
|
4964
|
+
};
|
|
4965
|
+
}
|
|
4966
|
+
function RosettaNetworkStatusResponseToJSON(value) {
|
|
4967
|
+
if (value === undefined) {
|
|
4968
|
+
return undefined;
|
|
4969
|
+
}
|
|
4970
|
+
|
|
4971
|
+
if (value === null) {
|
|
4972
|
+
return null;
|
|
4973
|
+
}
|
|
4974
|
+
|
|
4975
|
+
return {
|
|
4976
|
+
'current_block_identifier': value.current_block_identifier,
|
|
4977
|
+
'current_block_timestamp': value.current_block_timestamp,
|
|
4978
|
+
'genesis_block_identifier': RosettaGenesisBlockIdentifierToJSON(value.genesis_block_identifier),
|
|
4979
|
+
'oldest_block_identifier': RosettaOldestBlockIdentifierToJSON(value.oldest_block_identifier),
|
|
4980
|
+
'sync_status': RosettaSyncStatusToJSON(value.sync_status),
|
|
4981
|
+
'peers': value.peers.map(RosettaPeersToJSON)
|
|
4982
|
+
};
|
|
4983
|
+
}
|
|
4984
|
+
|
|
4985
|
+
/* tslint:disable */
|
|
4986
|
+
|
|
4987
|
+
/* eslint-disable */
|
|
4988
|
+
|
|
4989
|
+
/**
|
|
4990
|
+
* Stacks Blockchain API
|
|
4991
|
+
* 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>
|
|
4992
|
+
*
|
|
4993
|
+
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
4994
|
+
*
|
|
4995
|
+
*
|
|
4996
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4997
|
+
* https://openapi-generator.tech
|
|
4998
|
+
* Do not edit the class manually.
|
|
4999
|
+
*/
|
|
5000
|
+
function RosettaOldestBlockIdentifierFromJSON(json) {
|
|
5001
|
+
return RosettaOldestBlockIdentifierFromJSONTyped(json);
|
|
5002
|
+
}
|
|
5003
|
+
function RosettaOldestBlockIdentifierFromJSONTyped(json, ignoreDiscriminator) {
|
|
5004
|
+
if (json === undefined || json === null) {
|
|
5005
|
+
return json;
|
|
5006
|
+
}
|
|
5007
|
+
|
|
5008
|
+
return {
|
|
5009
|
+
'index': json['index'],
|
|
5010
|
+
'hash': json['hash']
|
|
5011
|
+
};
|
|
5012
|
+
}
|
|
5013
|
+
function RosettaOldestBlockIdentifierToJSON(value) {
|
|
5014
|
+
if (value === undefined) {
|
|
5015
|
+
return undefined;
|
|
5016
|
+
}
|
|
5017
|
+
|
|
5018
|
+
if (value === null) {
|
|
5019
|
+
return null;
|
|
5020
|
+
}
|
|
5021
|
+
|
|
5022
|
+
return {
|
|
5023
|
+
'index': value.index,
|
|
5024
|
+
'hash': value.hash
|
|
5025
|
+
};
|
|
5026
|
+
}
|
|
5027
|
+
|
|
4991
5028
|
/* tslint:disable */
|
|
4992
5029
|
function RosettaOperationFromJSON(json) {
|
|
4993
5030
|
return RosettaOperationFromJSONTyped(json);
|
|
@@ -5238,6 +5275,35 @@
|
|
|
5238
5275
|
};
|
|
5239
5276
|
}
|
|
5240
5277
|
|
|
5278
|
+
/* tslint:disable */
|
|
5279
|
+
function RosettaPeersFromJSON(json) {
|
|
5280
|
+
return RosettaPeersFromJSONTyped(json);
|
|
5281
|
+
}
|
|
5282
|
+
function RosettaPeersFromJSONTyped(json, ignoreDiscriminator) {
|
|
5283
|
+
if (json === undefined || json === null) {
|
|
5284
|
+
return json;
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5287
|
+
return {
|
|
5288
|
+
'peer_id': json['peer_id'],
|
|
5289
|
+
'metadata': !exists(json, 'metadata') ? undefined : json['metadata']
|
|
5290
|
+
};
|
|
5291
|
+
}
|
|
5292
|
+
function RosettaPeersToJSON(value) {
|
|
5293
|
+
if (value === undefined) {
|
|
5294
|
+
return undefined;
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
if (value === null) {
|
|
5298
|
+
return null;
|
|
5299
|
+
}
|
|
5300
|
+
|
|
5301
|
+
return {
|
|
5302
|
+
'peer_id': value.peer_id,
|
|
5303
|
+
'metadata': value.metadata
|
|
5304
|
+
};
|
|
5305
|
+
}
|
|
5306
|
+
|
|
5241
5307
|
/* tslint:disable */
|
|
5242
5308
|
|
|
5243
5309
|
/* eslint-disable */
|
|
@@ -5428,6 +5494,39 @@
|
|
|
5428
5494
|
};
|
|
5429
5495
|
}
|
|
5430
5496
|
|
|
5497
|
+
/* tslint:disable */
|
|
5498
|
+
function RosettaSyncStatusFromJSON(json) {
|
|
5499
|
+
return RosettaSyncStatusFromJSONTyped(json);
|
|
5500
|
+
}
|
|
5501
|
+
function RosettaSyncStatusFromJSONTyped(json, ignoreDiscriminator) {
|
|
5502
|
+
if (json === undefined || json === null) {
|
|
5503
|
+
return json;
|
|
5504
|
+
}
|
|
5505
|
+
|
|
5506
|
+
return {
|
|
5507
|
+
'current_index': json['current_index'],
|
|
5508
|
+
'target_index': !exists(json, 'target_index') ? undefined : json['target_index'],
|
|
5509
|
+
'stage': !exists(json, 'stage') ? undefined : json['stage'],
|
|
5510
|
+
'synced': !exists(json, 'synced') ? undefined : json['synced']
|
|
5511
|
+
};
|
|
5512
|
+
}
|
|
5513
|
+
function RosettaSyncStatusToJSON(value) {
|
|
5514
|
+
if (value === undefined) {
|
|
5515
|
+
return undefined;
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
if (value === null) {
|
|
5519
|
+
return null;
|
|
5520
|
+
}
|
|
5521
|
+
|
|
5522
|
+
return {
|
|
5523
|
+
'current_index': value.current_index,
|
|
5524
|
+
'target_index': value.target_index,
|
|
5525
|
+
'stage': value.stage,
|
|
5526
|
+
'synced': value.synced
|
|
5527
|
+
};
|
|
5528
|
+
}
|
|
5529
|
+
|
|
5431
5530
|
/* tslint:disable */
|
|
5432
5531
|
function RosettaTransactionFromJSON(json) {
|
|
5433
5532
|
return RosettaTransactionFromJSONTyped(json);
|
|
@@ -5622,6 +5721,106 @@
|
|
|
5622
5721
|
|
|
5623
5722
|
/* eslint-disable */
|
|
5624
5723
|
|
|
5724
|
+
/**
|
|
5725
|
+
* Stacks Blockchain API
|
|
5726
|
+
* 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>
|
|
5727
|
+
*
|
|
5728
|
+
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
5729
|
+
*
|
|
5730
|
+
*
|
|
5731
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5732
|
+
* https://openapi-generator.tech
|
|
5733
|
+
* Do not edit the class manually.
|
|
5734
|
+
*/
|
|
5735
|
+
function StxBalanceFromJSON(json) {
|
|
5736
|
+
return StxBalanceFromJSONTyped(json);
|
|
5737
|
+
}
|
|
5738
|
+
function StxBalanceFromJSONTyped(json, ignoreDiscriminator) {
|
|
5739
|
+
if (json === undefined || json === null) {
|
|
5740
|
+
return json;
|
|
5741
|
+
}
|
|
5742
|
+
|
|
5743
|
+
return {
|
|
5744
|
+
'balance': json['balance'],
|
|
5745
|
+
'total_sent': json['total_sent'],
|
|
5746
|
+
'total_received': json['total_received'],
|
|
5747
|
+
'total_fees_sent': json['total_fees_sent'],
|
|
5748
|
+
'total_miner_rewards_received': json['total_miner_rewards_received'],
|
|
5749
|
+
'lock_tx_id': json['lock_tx_id'],
|
|
5750
|
+
'locked': json['locked'],
|
|
5751
|
+
'lock_height': json['lock_height'],
|
|
5752
|
+
'burnchain_lock_height': json['burnchain_lock_height'],
|
|
5753
|
+
'burnchain_unlock_height': json['burnchain_unlock_height']
|
|
5754
|
+
};
|
|
5755
|
+
}
|
|
5756
|
+
function StxBalanceToJSON(value) {
|
|
5757
|
+
if (value === undefined) {
|
|
5758
|
+
return undefined;
|
|
5759
|
+
}
|
|
5760
|
+
|
|
5761
|
+
if (value === null) {
|
|
5762
|
+
return null;
|
|
5763
|
+
}
|
|
5764
|
+
|
|
5765
|
+
return {
|
|
5766
|
+
'balance': value.balance,
|
|
5767
|
+
'total_sent': value.total_sent,
|
|
5768
|
+
'total_received': value.total_received,
|
|
5769
|
+
'total_fees_sent': value.total_fees_sent,
|
|
5770
|
+
'total_miner_rewards_received': value.total_miner_rewards_received,
|
|
5771
|
+
'lock_tx_id': value.lock_tx_id,
|
|
5772
|
+
'locked': value.locked,
|
|
5773
|
+
'lock_height': value.lock_height,
|
|
5774
|
+
'burnchain_lock_height': value.burnchain_lock_height,
|
|
5775
|
+
'burnchain_unlock_height': value.burnchain_unlock_height
|
|
5776
|
+
};
|
|
5777
|
+
}
|
|
5778
|
+
|
|
5779
|
+
/* tslint:disable */
|
|
5780
|
+
|
|
5781
|
+
/* eslint-disable */
|
|
5782
|
+
|
|
5783
|
+
/**
|
|
5784
|
+
* Stacks Blockchain API
|
|
5785
|
+
* 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>
|
|
5786
|
+
*
|
|
5787
|
+
* The version of the OpenAPI document: STACKS_API_VERSION
|
|
5788
|
+
*
|
|
5789
|
+
*
|
|
5790
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5791
|
+
* https://openapi-generator.tech
|
|
5792
|
+
* Do not edit the class manually.
|
|
5793
|
+
*/
|
|
5794
|
+
function TargetBlockTimeFromJSON(json) {
|
|
5795
|
+
return TargetBlockTimeFromJSONTyped(json);
|
|
5796
|
+
}
|
|
5797
|
+
function TargetBlockTimeFromJSONTyped(json, ignoreDiscriminator) {
|
|
5798
|
+
if (json === undefined || json === null) {
|
|
5799
|
+
return json;
|
|
5800
|
+
}
|
|
5801
|
+
|
|
5802
|
+
return {
|
|
5803
|
+
'target_block_time': json['target_block_time']
|
|
5804
|
+
};
|
|
5805
|
+
}
|
|
5806
|
+
function TargetBlockTimeToJSON(value) {
|
|
5807
|
+
if (value === undefined) {
|
|
5808
|
+
return undefined;
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5811
|
+
if (value === null) {
|
|
5812
|
+
return null;
|
|
5813
|
+
}
|
|
5814
|
+
|
|
5815
|
+
return {
|
|
5816
|
+
'target_block_time': value.target_block_time
|
|
5817
|
+
};
|
|
5818
|
+
}
|
|
5819
|
+
|
|
5820
|
+
/* tslint:disable */
|
|
5821
|
+
|
|
5822
|
+
/* eslint-disable */
|
|
5823
|
+
|
|
5625
5824
|
/**
|
|
5626
5825
|
* Stacks Blockchain API
|
|
5627
5826
|
* 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>
|
|
@@ -8023,60 +8222,6 @@
|
|
|
8023
8222
|
return Promise.reject(e);
|
|
8024
8223
|
}
|
|
8025
8224
|
}
|
|
8026
|
-
/**
|
|
8027
|
-
* Retrieves a history of all blockchain records of a registered name.
|
|
8028
|
-
* Get Name History
|
|
8029
|
-
*/
|
|
8030
|
-
;
|
|
8031
|
-
|
|
8032
|
-
_proto.getNameHistoryRaw = function getNameHistoryRaw(requestParameters, initOverrides) {
|
|
8033
|
-
try {
|
|
8034
|
-
var _this22 = this;
|
|
8035
|
-
|
|
8036
|
-
if (requestParameters.name === null || requestParameters.name === undefined) {
|
|
8037
|
-
throw new RequiredError('name', 'Required parameter requestParameters.name was null or undefined when calling getNameHistory.');
|
|
8038
|
-
}
|
|
8039
|
-
|
|
8040
|
-
if (requestParameters.page === null || requestParameters.page === undefined) {
|
|
8041
|
-
throw new RequiredError('page', 'Required parameter requestParameters.page was null or undefined when calling getNameHistory.');
|
|
8042
|
-
}
|
|
8043
|
-
|
|
8044
|
-
var queryParameters = {};
|
|
8045
|
-
|
|
8046
|
-
if (requestParameters.page !== undefined) {
|
|
8047
|
-
queryParameters['page'] = requestParameters.page;
|
|
8048
|
-
}
|
|
8049
|
-
|
|
8050
|
-
var headerParameters = {};
|
|
8051
|
-
return Promise.resolve(_this22.request({
|
|
8052
|
-
path: "/v1/names/{name}/history".replace("{" + "name" + "}", encodeURIComponent(String(requestParameters.name))),
|
|
8053
|
-
method: 'GET',
|
|
8054
|
-
headers: headerParameters,
|
|
8055
|
-
query: queryParameters
|
|
8056
|
-
}, initOverrides)).then(function (response) {
|
|
8057
|
-
return new JSONApiResponse(response);
|
|
8058
|
-
});
|
|
8059
|
-
} catch (e) {
|
|
8060
|
-
return Promise.reject(e);
|
|
8061
|
-
}
|
|
8062
|
-
}
|
|
8063
|
-
/**
|
|
8064
|
-
* Retrieves a history of all blockchain records of a registered name.
|
|
8065
|
-
* Get Name History
|
|
8066
|
-
*/
|
|
8067
|
-
;
|
|
8068
|
-
|
|
8069
|
-
_proto.getNameHistory = function getNameHistory(requestParameters, initOverrides) {
|
|
8070
|
-
try {
|
|
8071
|
-
var _this24 = this;
|
|
8072
|
-
|
|
8073
|
-
return Promise.resolve(_this24.getNameHistoryRaw(requestParameters, initOverrides)).then(function (response) {
|
|
8074
|
-
return Promise.resolve(response.value());
|
|
8075
|
-
});
|
|
8076
|
-
} catch (e) {
|
|
8077
|
-
return Promise.reject(e);
|
|
8078
|
-
}
|
|
8079
|
-
}
|
|
8080
8225
|
/**
|
|
8081
8226
|
* Retrieves details of a given name including the `address`, `status` and last transaction id - `last_txid`.
|
|
8082
8227
|
* Get Name Details
|
|
@@ -8085,7 +8230,7 @@
|
|
|
8085
8230
|
|
|
8086
8231
|
_proto.getNameInfoRaw = function getNameInfoRaw(requestParameters, initOverrides) {
|
|
8087
8232
|
try {
|
|
8088
|
-
var
|
|
8233
|
+
var _this22 = this;
|
|
8089
8234
|
|
|
8090
8235
|
if (requestParameters.name === null || requestParameters.name === undefined) {
|
|
8091
8236
|
throw new RequiredError('name', 'Required parameter requestParameters.name was null or undefined when calling getNameInfo.');
|
|
@@ -8093,7 +8238,7 @@
|
|
|
8093
8238
|
|
|
8094
8239
|
var queryParameters = {};
|
|
8095
8240
|
var headerParameters = {};
|
|
8096
|
-
return Promise.resolve(
|
|
8241
|
+
return Promise.resolve(_this22.request({
|
|
8097
8242
|
path: "/v1/names/{name}".replace("{" + "name" + "}", encodeURIComponent(String(requestParameters.name))),
|
|
8098
8243
|
method: 'GET',
|
|
8099
8244
|
headers: headerParameters,
|
|
@@ -8115,9 +8260,9 @@
|
|
|
8115
8260
|
|
|
8116
8261
|
_proto.getNameInfo = function getNameInfo(requestParameters, initOverrides) {
|
|
8117
8262
|
try {
|
|
8118
|
-
var
|
|
8263
|
+
var _this24 = this;
|
|
8119
8264
|
|
|
8120
|
-
return Promise.resolve(
|
|
8265
|
+
return Promise.resolve(_this24.getNameInfoRaw(requestParameters, initOverrides)).then(function (response) {
|
|
8121
8266
|
return Promise.resolve(response.value());
|
|
8122
8267
|
});
|
|
8123
8268
|
} catch (e) {
|
|
@@ -8132,7 +8277,7 @@
|
|
|
8132
8277
|
|
|
8133
8278
|
_proto.getNamePriceRaw = function getNamePriceRaw(requestParameters, initOverrides) {
|
|
8134
8279
|
try {
|
|
8135
|
-
var
|
|
8280
|
+
var _this26 = this;
|
|
8136
8281
|
|
|
8137
8282
|
if (requestParameters.name === null || requestParameters.name === undefined) {
|
|
8138
8283
|
throw new RequiredError('name', 'Required parameter requestParameters.name was null or undefined when calling getNamePrice.');
|
|
@@ -8140,7 +8285,7 @@
|
|
|
8140
8285
|
|
|
8141
8286
|
var queryParameters = {};
|
|
8142
8287
|
var headerParameters = {};
|
|
8143
|
-
return Promise.resolve(
|
|
8288
|
+
return Promise.resolve(_this26.request({
|
|
8144
8289
|
path: "/v2/prices/names/{name}".replace("{" + "name" + "}", encodeURIComponent(String(requestParameters.name))),
|
|
8145
8290
|
method: 'GET',
|
|
8146
8291
|
headers: headerParameters,
|
|
@@ -8162,9 +8307,9 @@
|
|
|
8162
8307
|
|
|
8163
8308
|
_proto.getNamePrice = function getNamePrice(requestParameters, initOverrides) {
|
|
8164
8309
|
try {
|
|
8165
|
-
var
|
|
8310
|
+
var _this28 = this;
|
|
8166
8311
|
|
|
8167
|
-
return Promise.resolve(
|
|
8312
|
+
return Promise.resolve(_this28.getNamePriceRaw(requestParameters, initOverrides)).then(function (response) {
|
|
8168
8313
|
return Promise.resolve(response.value());
|
|
8169
8314
|
});
|
|
8170
8315
|
} catch (e) {
|
|
@@ -8179,7 +8324,7 @@
|
|
|
8179
8324
|
|
|
8180
8325
|
_proto.getNamesOwnedByAddressRaw = function getNamesOwnedByAddressRaw(requestParameters, initOverrides) {
|
|
8181
8326
|
try {
|
|
8182
|
-
var
|
|
8327
|
+
var _this30 = this;
|
|
8183
8328
|
|
|
8184
8329
|
if (requestParameters.blockchain === null || requestParameters.blockchain === undefined) {
|
|
8185
8330
|
throw new RequiredError('blockchain', 'Required parameter requestParameters.blockchain was null or undefined when calling getNamesOwnedByAddress.');
|
|
@@ -8191,7 +8336,7 @@
|
|
|
8191
8336
|
|
|
8192
8337
|
var queryParameters = {};
|
|
8193
8338
|
var headerParameters = {};
|
|
8194
|
-
return Promise.resolve(
|
|
8339
|
+
return Promise.resolve(_this30.request({
|
|
8195
8340
|
path: "/v1/addresses/{blockchain}/{address}".replace("{" + "blockchain" + "}", encodeURIComponent(String(requestParameters.blockchain))).replace("{" + "address" + "}", encodeURIComponent(String(requestParameters.address))),
|
|
8196
8341
|
method: 'GET',
|
|
8197
8342
|
headers: headerParameters,
|
|
@@ -8213,9 +8358,9 @@
|
|
|
8213
8358
|
|
|
8214
8359
|
_proto.getNamesOwnedByAddress = function getNamesOwnedByAddress(requestParameters, initOverrides) {
|
|
8215
8360
|
try {
|
|
8216
|
-
var
|
|
8361
|
+
var _this32 = this;
|
|
8217
8362
|
|
|
8218
|
-
return Promise.resolve(
|
|
8363
|
+
return Promise.resolve(_this32.getNamesOwnedByAddressRaw(requestParameters, initOverrides)).then(function (response) {
|
|
8219
8364
|
return Promise.resolve(response.value());
|
|
8220
8365
|
});
|
|
8221
8366
|
} catch (e) {
|
|
@@ -8230,7 +8375,7 @@
|
|
|
8230
8375
|
|
|
8231
8376
|
_proto.getNamespaceNamesRaw = function getNamespaceNamesRaw(requestParameters, initOverrides) {
|
|
8232
8377
|
try {
|
|
8233
|
-
var
|
|
8378
|
+
var _this34 = this;
|
|
8234
8379
|
|
|
8235
8380
|
if (requestParameters.tld === null || requestParameters.tld === undefined) {
|
|
8236
8381
|
throw new RequiredError('tld', 'Required parameter requestParameters.tld was null or undefined when calling getNamespaceNames.');
|
|
@@ -8247,7 +8392,7 @@
|
|
|
8247
8392
|
}
|
|
8248
8393
|
|
|
8249
8394
|
var headerParameters = {};
|
|
8250
|
-
return Promise.resolve(
|
|
8395
|
+
return Promise.resolve(_this34.request({
|
|
8251
8396
|
path: "/v1/namespaces/{tld}/names".replace("{" + "tld" + "}", encodeURIComponent(String(requestParameters.tld))),
|
|
8252
8397
|
method: 'GET',
|
|
8253
8398
|
headers: headerParameters,
|
|
@@ -8267,9 +8412,9 @@
|
|
|
8267
8412
|
|
|
8268
8413
|
_proto.getNamespaceNames = function getNamespaceNames(requestParameters, initOverrides) {
|
|
8269
8414
|
try {
|
|
8270
|
-
var
|
|
8415
|
+
var _this36 = this;
|
|
8271
8416
|
|
|
8272
|
-
return Promise.resolve(
|
|
8417
|
+
return Promise.resolve(_this36.getNamespaceNamesRaw(requestParameters, initOverrides)).then(function (response) {
|
|
8273
8418
|
return Promise.resolve(response.value());
|
|
8274
8419
|
});
|
|
8275
8420
|
} catch (e) {
|
|
@@ -8284,7 +8429,7 @@
|
|
|
8284
8429
|
|
|
8285
8430
|
_proto.getNamespacePriceRaw = function getNamespacePriceRaw(requestParameters, initOverrides) {
|
|
8286
8431
|
try {
|
|
8287
|
-
var
|
|
8432
|
+
var _this38 = this;
|
|
8288
8433
|
|
|
8289
8434
|
if (requestParameters.tld === null || requestParameters.tld === undefined) {
|
|
8290
8435
|
throw new RequiredError('tld', 'Required parameter requestParameters.tld was null or undefined when calling getNamespacePrice.');
|
|
@@ -8292,7 +8437,7 @@
|
|
|
8292
8437
|
|
|
8293
8438
|
var queryParameters = {};
|
|
8294
8439
|
var headerParameters = {};
|
|
8295
|
-
return Promise.resolve(
|
|
8440
|
+
return Promise.resolve(_this38.request({
|
|
8296
8441
|
path: "/v2/prices/namespaces/{tld}".replace("{" + "tld" + "}", encodeURIComponent(String(requestParameters.tld))),
|
|
8297
8442
|
method: 'GET',
|
|
8298
8443
|
headers: headerParameters,
|
|
@@ -8314,9 +8459,9 @@
|
|
|
8314
8459
|
|
|
8315
8460
|
_proto.getNamespacePrice = function getNamespacePrice(requestParameters, initOverrides) {
|
|
8316
8461
|
try {
|
|
8317
|
-
var
|
|
8462
|
+
var _this40 = this;
|
|
8318
8463
|
|
|
8319
|
-
return Promise.resolve(
|
|
8464
|
+
return Promise.resolve(_this40.getNamespacePriceRaw(requestParameters, initOverrides)).then(function (response) {
|
|
8320
8465
|
return Promise.resolve(response.value());
|
|
8321
8466
|
});
|
|
8322
8467
|
} catch (e) {
|
|
@@ -9421,7 +9566,9 @@
|
|
|
9421
9566
|
query: queryParameters,
|
|
9422
9567
|
body: RosettaStatusRequestToJSON(requestParameters.rosettaStatusRequest)
|
|
9423
9568
|
}, initOverrides)).then(function (response) {
|
|
9424
|
-
return new JSONApiResponse(response)
|
|
9569
|
+
return new JSONApiResponse(response, function (jsonValue) {
|
|
9570
|
+
return RosettaNetworkStatusResponseFromJSON(jsonValue);
|
|
9571
|
+
});
|
|
9425
9572
|
});
|
|
9426
9573
|
} catch (e) {
|
|
9427
9574
|
return Promise.reject(e);
|
|
@@ -15305,9 +15452,6 @@
|
|
|
15305
15452
|
exports.AddressAssetsListResponseToJSON = AddressAssetsListResponseToJSON;
|
|
15306
15453
|
exports.AddressBalanceResponseFromJSON = AddressBalanceResponseFromJSON;
|
|
15307
15454
|
exports.AddressBalanceResponseFromJSONTyped = AddressBalanceResponseFromJSONTyped;
|
|
15308
|
-
exports.AddressBalanceResponseStxFromJSON = AddressBalanceResponseStxFromJSON;
|
|
15309
|
-
exports.AddressBalanceResponseStxFromJSONTyped = AddressBalanceResponseStxFromJSONTyped;
|
|
15310
|
-
exports.AddressBalanceResponseStxToJSON = AddressBalanceResponseStxToJSON;
|
|
15311
15455
|
exports.AddressBalanceResponseToJSON = AddressBalanceResponseToJSON;
|
|
15312
15456
|
exports.AddressNftListResponseFromJSON = AddressNftListResponseFromJSON;
|
|
15313
15457
|
exports.AddressNftListResponseFromJSONTyped = AddressNftListResponseFromJSONTyped;
|
|
@@ -15465,9 +15609,6 @@
|
|
|
15465
15609
|
exports.NetworkBlockTimeResponseToJSON = NetworkBlockTimeResponseToJSON;
|
|
15466
15610
|
exports.NetworkBlockTimesResponseFromJSON = NetworkBlockTimesResponseFromJSON;
|
|
15467
15611
|
exports.NetworkBlockTimesResponseFromJSONTyped = NetworkBlockTimesResponseFromJSONTyped;
|
|
15468
|
-
exports.NetworkBlockTimesResponseMainnetFromJSON = NetworkBlockTimesResponseMainnetFromJSON;
|
|
15469
|
-
exports.NetworkBlockTimesResponseMainnetFromJSONTyped = NetworkBlockTimesResponseMainnetFromJSONTyped;
|
|
15470
|
-
exports.NetworkBlockTimesResponseMainnetToJSON = NetworkBlockTimesResponseMainnetToJSON;
|
|
15471
15612
|
exports.NetworkBlockTimesResponseToJSON = NetworkBlockTimesResponseToJSON;
|
|
15472
15613
|
exports.NetworkIdentifierFromJSON = NetworkIdentifierFromJSON;
|
|
15473
15614
|
exports.NetworkIdentifierFromJSONTyped = NetworkIdentifierFromJSONTyped;
|
|
@@ -15616,6 +15757,9 @@
|
|
|
15616
15757
|
exports.RosettaErrorNoDetailsFromJSONTyped = RosettaErrorNoDetailsFromJSONTyped;
|
|
15617
15758
|
exports.RosettaErrorNoDetailsToJSON = RosettaErrorNoDetailsToJSON;
|
|
15618
15759
|
exports.RosettaErrorToJSON = RosettaErrorToJSON;
|
|
15760
|
+
exports.RosettaGenesisBlockIdentifierFromJSON = RosettaGenesisBlockIdentifierFromJSON;
|
|
15761
|
+
exports.RosettaGenesisBlockIdentifierFromJSONTyped = RosettaGenesisBlockIdentifierFromJSONTyped;
|
|
15762
|
+
exports.RosettaGenesisBlockIdentifierToJSON = RosettaGenesisBlockIdentifierToJSON;
|
|
15619
15763
|
exports.RosettaMaxFeeAmountFromJSON = RosettaMaxFeeAmountFromJSON;
|
|
15620
15764
|
exports.RosettaMaxFeeAmountFromJSONTyped = RosettaMaxFeeAmountFromJSONTyped;
|
|
15621
15765
|
exports.RosettaMaxFeeAmountToJSON = RosettaMaxFeeAmountToJSON;
|
|
@@ -15649,6 +15793,12 @@
|
|
|
15649
15793
|
exports.RosettaNetworkOptionsResponseVersionFromJSON = RosettaNetworkOptionsResponseVersionFromJSON;
|
|
15650
15794
|
exports.RosettaNetworkOptionsResponseVersionFromJSONTyped = RosettaNetworkOptionsResponseVersionFromJSONTyped;
|
|
15651
15795
|
exports.RosettaNetworkOptionsResponseVersionToJSON = RosettaNetworkOptionsResponseVersionToJSON;
|
|
15796
|
+
exports.RosettaNetworkStatusResponseFromJSON = RosettaNetworkStatusResponseFromJSON;
|
|
15797
|
+
exports.RosettaNetworkStatusResponseFromJSONTyped = RosettaNetworkStatusResponseFromJSONTyped;
|
|
15798
|
+
exports.RosettaNetworkStatusResponseToJSON = RosettaNetworkStatusResponseToJSON;
|
|
15799
|
+
exports.RosettaOldestBlockIdentifierFromJSON = RosettaOldestBlockIdentifierFromJSON;
|
|
15800
|
+
exports.RosettaOldestBlockIdentifierFromJSONTyped = RosettaOldestBlockIdentifierFromJSONTyped;
|
|
15801
|
+
exports.RosettaOldestBlockIdentifierToJSON = RosettaOldestBlockIdentifierToJSON;
|
|
15652
15802
|
exports.RosettaOperationFromJSON = RosettaOperationFromJSON;
|
|
15653
15803
|
exports.RosettaOperationFromJSONTyped = RosettaOperationFromJSONTyped;
|
|
15654
15804
|
exports.RosettaOperationIdentifierFromJSON = RosettaOperationIdentifierFromJSON;
|
|
@@ -15667,6 +15817,9 @@
|
|
|
15667
15817
|
exports.RosettaParentBlockIdentifierFromJSON = RosettaParentBlockIdentifierFromJSON;
|
|
15668
15818
|
exports.RosettaParentBlockIdentifierFromJSONTyped = RosettaParentBlockIdentifierFromJSONTyped;
|
|
15669
15819
|
exports.RosettaParentBlockIdentifierToJSON = RosettaParentBlockIdentifierToJSON;
|
|
15820
|
+
exports.RosettaPeersFromJSON = RosettaPeersFromJSON;
|
|
15821
|
+
exports.RosettaPeersFromJSONTyped = RosettaPeersFromJSONTyped;
|
|
15822
|
+
exports.RosettaPeersToJSON = RosettaPeersToJSON;
|
|
15670
15823
|
exports.RosettaPublicKeyFromJSON = RosettaPublicKeyFromJSON;
|
|
15671
15824
|
exports.RosettaPublicKeyFromJSONTyped = RosettaPublicKeyFromJSONTyped;
|
|
15672
15825
|
exports.RosettaPublicKeyToJSON = RosettaPublicKeyToJSON;
|
|
@@ -15682,6 +15835,9 @@
|
|
|
15682
15835
|
exports.RosettaSubAccountFromJSON = RosettaSubAccountFromJSON;
|
|
15683
15836
|
exports.RosettaSubAccountFromJSONTyped = RosettaSubAccountFromJSONTyped;
|
|
15684
15837
|
exports.RosettaSubAccountToJSON = RosettaSubAccountToJSON;
|
|
15838
|
+
exports.RosettaSyncStatusFromJSON = RosettaSyncStatusFromJSON;
|
|
15839
|
+
exports.RosettaSyncStatusFromJSONTyped = RosettaSyncStatusFromJSONTyped;
|
|
15840
|
+
exports.RosettaSyncStatusToJSON = RosettaSyncStatusToJSON;
|
|
15685
15841
|
exports.RosettaTransactionFromJSON = RosettaTransactionFromJSON;
|
|
15686
15842
|
exports.RosettaTransactionFromJSONTyped = RosettaTransactionFromJSONTyped;
|
|
15687
15843
|
exports.RosettaTransactionToJSON = RosettaTransactionToJSON;
|
|
@@ -15702,6 +15858,12 @@
|
|
|
15702
15858
|
exports.StackingRewardsApi = StackingRewardsApi;
|
|
15703
15859
|
exports.StacksApiSocketClient = StacksApiSocketClient;
|
|
15704
15860
|
exports.StacksApiWebSocketClient = StacksApiWebSocketClient;
|
|
15861
|
+
exports.StxBalanceFromJSON = StxBalanceFromJSON;
|
|
15862
|
+
exports.StxBalanceFromJSONTyped = StxBalanceFromJSONTyped;
|
|
15863
|
+
exports.StxBalanceToJSON = StxBalanceToJSON;
|
|
15864
|
+
exports.TargetBlockTimeFromJSON = TargetBlockTimeFromJSON;
|
|
15865
|
+
exports.TargetBlockTimeFromJSONTyped = TargetBlockTimeFromJSONTyped;
|
|
15866
|
+
exports.TargetBlockTimeToJSON = TargetBlockTimeToJSON;
|
|
15705
15867
|
exports.TextApiResponse = TextApiResponse;
|
|
15706
15868
|
exports.TransactionEventsResponseFromJSON = TransactionEventsResponseFromJSON;
|
|
15707
15869
|
exports.TransactionEventsResponseFromJSONTyped = TransactionEventsResponseFromJSONTyped;
|