near-jsonrpc-client 1.0.5__py3-none-any.whl

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.
Files changed (357) hide show
  1. near_jsonrpc_client/__init__.py +27 -0
  2. near_jsonrpc_client/api_methods_async.py +450 -0
  3. near_jsonrpc_client/api_methods_sync.py +450 -0
  4. near_jsonrpc_client/base_client.py +148 -0
  5. near_jsonrpc_client/client.py +13 -0
  6. near_jsonrpc_client/errors.py +35 -0
  7. near_jsonrpc_client/transport.py +43 -0
  8. near_jsonrpc_client-1.0.5.dist-info/METADATA +10 -0
  9. near_jsonrpc_client-1.0.5.dist-info/RECORD +357 -0
  10. near_jsonrpc_client-1.0.5.dist-info/WHEEL +5 -0
  11. near_jsonrpc_client-1.0.5.dist-info/licenses/LICENSE +201 -0
  12. near_jsonrpc_client-1.0.5.dist-info/top_level.txt +2 -0
  13. near_jsonrpc_models/__init__.py +3378 -0
  14. near_jsonrpc_models/access_key.py +18 -0
  15. near_jsonrpc_models/access_key_creation_config_view.py +13 -0
  16. near_jsonrpc_models/access_key_info_view.py +10 -0
  17. near_jsonrpc_models/access_key_list.py +9 -0
  18. near_jsonrpc_models/access_key_permission.py +21 -0
  19. near_jsonrpc_models/access_key_permission_view.py +25 -0
  20. near_jsonrpc_models/access_key_view.py +10 -0
  21. near_jsonrpc_models/account_creation_config_view.py +13 -0
  22. near_jsonrpc_models/account_data_view.py +30 -0
  23. near_jsonrpc_models/account_id.py +25 -0
  24. near_jsonrpc_models/account_id_validity_rules_version.py +8 -0
  25. near_jsonrpc_models/account_info.py +12 -0
  26. near_jsonrpc_models/account_view.py +18 -0
  27. near_jsonrpc_models/account_with_public_key.py +10 -0
  28. near_jsonrpc_models/action_creation_config_view.py +32 -0
  29. near_jsonrpc_models/action_error.py +13 -0
  30. near_jsonrpc_models/action_error_kind.py +200 -0
  31. near_jsonrpc_models/action_view.py +133 -0
  32. near_jsonrpc_models/actions_validation_error.py +150 -0
  33. near_jsonrpc_models/add_gas_key_action.py +10 -0
  34. near_jsonrpc_models/add_key_action.py +12 -0
  35. near_jsonrpc_models/bandwidth_request.py +14 -0
  36. near_jsonrpc_models/bandwidth_request_bitmap.py +11 -0
  37. near_jsonrpc_models/bandwidth_requests.py +16 -0
  38. near_jsonrpc_models/bandwidth_requests_v1.py +9 -0
  39. near_jsonrpc_models/block_header_inner_lite_view.py +22 -0
  40. near_jsonrpc_models/block_header_view.py +53 -0
  41. near_jsonrpc_models/block_id.py +16 -0
  42. near_jsonrpc_models/block_reference.py +21 -0
  43. near_jsonrpc_models/block_status_view.py +10 -0
  44. near_jsonrpc_models/call_result.py +10 -0
  45. near_jsonrpc_models/catchup_status_view.py +28 -0
  46. near_jsonrpc_models/chunk_distribution_network_config.py +12 -0
  47. near_jsonrpc_models/chunk_distribution_uris.py +10 -0
  48. near_jsonrpc_models/chunk_hash.py +4 -0
  49. near_jsonrpc_models/chunk_header_view.py +39 -0
  50. near_jsonrpc_models/cloud_archival_writer_config.py +14 -0
  51. near_jsonrpc_models/compilation_error.py +29 -0
  52. near_jsonrpc_models/congestion_control_config_view.py +58 -0
  53. near_jsonrpc_models/congestion_info_view.py +11 -0
  54. near_jsonrpc_models/contract_code_view.py +9 -0
  55. near_jsonrpc_models/cost_gas_used.py +10 -0
  56. near_jsonrpc_models/create_account_action.py +7 -0
  57. near_jsonrpc_models/crypto_hash.py +7 -0
  58. near_jsonrpc_models/current_epoch_validator_info.py +35 -0
  59. near_jsonrpc_models/data_receipt_creation_config_view.py +20 -0
  60. near_jsonrpc_models/data_receiver_view.py +8 -0
  61. near_jsonrpc_models/delegate_action.py +28 -0
  62. near_jsonrpc_models/delete_account_action.py +6 -0
  63. near_jsonrpc_models/delete_gas_key_action.py +6 -0
  64. near_jsonrpc_models/delete_key_action.py +7 -0
  65. near_jsonrpc_models/deploy_contract_action.py +8 -0
  66. near_jsonrpc_models/deploy_global_contract_action.py +10 -0
  67. near_jsonrpc_models/detailed_debug_status.py +15 -0
  68. near_jsonrpc_models/deterministic_account_state_init.py +13 -0
  69. near_jsonrpc_models/deterministic_account_state_init_v1.py +8 -0
  70. near_jsonrpc_models/deterministic_state_init_action.py +8 -0
  71. near_jsonrpc_models/direction.py +7 -0
  72. near_jsonrpc_models/dump_config.py +20 -0
  73. near_jsonrpc_models/duration_as_std_schema_provider.py +7 -0
  74. near_jsonrpc_models/dynamic_resharding_config_view.py +23 -0
  75. near_jsonrpc_models/epoch_id.py +8 -0
  76. near_jsonrpc_models/epoch_sync_config.py +25 -0
  77. near_jsonrpc_models/error_wrapper_for_genesis_config_error.py +24 -0
  78. near_jsonrpc_models/error_wrapper_for_rpc_block_error.py +24 -0
  79. near_jsonrpc_models/error_wrapper_for_rpc_call_function_error.py +24 -0
  80. near_jsonrpc_models/error_wrapper_for_rpc_chunk_error.py +24 -0
  81. near_jsonrpc_models/error_wrapper_for_rpc_client_config_error.py +24 -0
  82. near_jsonrpc_models/error_wrapper_for_rpc_gas_price_error.py +24 -0
  83. near_jsonrpc_models/error_wrapper_for_rpc_light_client_next_block_error.py +24 -0
  84. near_jsonrpc_models/error_wrapper_for_rpc_light_client_proof_error.py +24 -0
  85. near_jsonrpc_models/error_wrapper_for_rpc_maintenance_windows_error.py +24 -0
  86. near_jsonrpc_models/error_wrapper_for_rpc_network_info_error.py +24 -0
  87. near_jsonrpc_models/error_wrapper_for_rpc_protocol_config_error.py +24 -0
  88. near_jsonrpc_models/error_wrapper_for_rpc_query_error.py +24 -0
  89. near_jsonrpc_models/error_wrapper_for_rpc_receipt_error.py +24 -0
  90. near_jsonrpc_models/error_wrapper_for_rpc_split_storage_info_error.py +24 -0
  91. near_jsonrpc_models/error_wrapper_for_rpc_state_changes_error.py +24 -0
  92. near_jsonrpc_models/error_wrapper_for_rpc_status_error.py +24 -0
  93. near_jsonrpc_models/error_wrapper_for_rpc_transaction_error.py +24 -0
  94. near_jsonrpc_models/error_wrapper_for_rpc_validator_error.py +24 -0
  95. near_jsonrpc_models/error_wrapper_for_rpc_view_access_key_error.py +24 -0
  96. near_jsonrpc_models/error_wrapper_for_rpc_view_access_key_list_error.py +24 -0
  97. near_jsonrpc_models/error_wrapper_for_rpc_view_account_error.py +24 -0
  98. near_jsonrpc_models/error_wrapper_for_rpc_view_code_error.py +24 -0
  99. near_jsonrpc_models/error_wrapper_for_rpc_view_gas_key_error.py +24 -0
  100. near_jsonrpc_models/error_wrapper_for_rpc_view_gas_key_list_error.py +24 -0
  101. near_jsonrpc_models/error_wrapper_for_rpc_view_state_error.py +24 -0
  102. near_jsonrpc_models/execution_metadata_view.py +9 -0
  103. near_jsonrpc_models/execution_outcome_view.py +31 -0
  104. near_jsonrpc_models/execution_outcome_with_id_view.py +12 -0
  105. near_jsonrpc_models/execution_status_view.py +29 -0
  106. near_jsonrpc_models/ext_costs_config_view.py +162 -0
  107. near_jsonrpc_models/external_storage_config.py +17 -0
  108. near_jsonrpc_models/external_storage_location.py +34 -0
  109. near_jsonrpc_models/fee.py +17 -0
  110. near_jsonrpc_models/final_execution_outcome_view.py +23 -0
  111. near_jsonrpc_models/final_execution_outcome_with_receipt_view.py +26 -0
  112. near_jsonrpc_models/final_execution_status.py +27 -0
  113. near_jsonrpc_models/finality.py +9 -0
  114. near_jsonrpc_models/function_args.py +13 -0
  115. near_jsonrpc_models/function_call_action.py +10 -0
  116. near_jsonrpc_models/function_call_error.py +52 -0
  117. near_jsonrpc_models/function_call_permission.py +24 -0
  118. near_jsonrpc_models/gas_key.py +17 -0
  119. near_jsonrpc_models/gas_key_info_view.py +8 -0
  120. near_jsonrpc_models/gas_key_list.py +7 -0
  121. near_jsonrpc_models/gas_key_view.py +12 -0
  122. near_jsonrpc_models/gcconfig.py +19 -0
  123. near_jsonrpc_models/genesis_config.py +121 -0
  124. near_jsonrpc_models/genesis_config_error.py +7 -0
  125. near_jsonrpc_models/genesis_config_request.py +7 -0
  126. near_jsonrpc_models/global_contract_deploy_mode.py +13 -0
  127. near_jsonrpc_models/global_contract_identifier.py +17 -0
  128. near_jsonrpc_models/global_contract_identifier_view.py +17 -0
  129. near_jsonrpc_models/host_error.py +212 -0
  130. near_jsonrpc_models/internal_error.py +16 -0
  131. near_jsonrpc_models/invalid_access_key_error.py +54 -0
  132. near_jsonrpc_models/invalid_tx_error.py +135 -0
  133. near_jsonrpc_models/json_rpc_request_for_block.py +10 -0
  134. near_jsonrpc_models/json_rpc_request_for_block_effects.py +10 -0
  135. near_jsonrpc_models/json_rpc_request_for_broadcast_tx_async.py +10 -0
  136. near_jsonrpc_models/json_rpc_request_for_broadcast_tx_commit.py +10 -0
  137. near_jsonrpc_models/json_rpc_request_for_changes.py +10 -0
  138. near_jsonrpc_models/json_rpc_request_for_chunk.py +10 -0
  139. near_jsonrpc_models/json_rpc_request_for_client_config.py +10 -0
  140. near_jsonrpc_models/json_rpc_request_for_experimental_call_function.py +10 -0
  141. near_jsonrpc_models/json_rpc_request_for_experimental_changes.py +10 -0
  142. near_jsonrpc_models/json_rpc_request_for_experimental_changes_in_block.py +10 -0
  143. near_jsonrpc_models/json_rpc_request_for_experimental_congestion_level.py +10 -0
  144. near_jsonrpc_models/json_rpc_request_for_experimental_genesis_config.py +10 -0
  145. near_jsonrpc_models/json_rpc_request_for_experimental_light_client_block_proof.py +10 -0
  146. near_jsonrpc_models/json_rpc_request_for_experimental_light_client_proof.py +10 -0
  147. near_jsonrpc_models/json_rpc_request_for_experimental_maintenance_windows.py +10 -0
  148. near_jsonrpc_models/json_rpc_request_for_experimental_protocol_config.py +10 -0
  149. near_jsonrpc_models/json_rpc_request_for_experimental_receipt.py +10 -0
  150. near_jsonrpc_models/json_rpc_request_for_experimental_split_storage_info.py +10 -0
  151. near_jsonrpc_models/json_rpc_request_for_experimental_tx_status.py +10 -0
  152. near_jsonrpc_models/json_rpc_request_for_experimental_validators_ordered.py +10 -0
  153. near_jsonrpc_models/json_rpc_request_for_experimental_view_access_key.py +10 -0
  154. near_jsonrpc_models/json_rpc_request_for_experimental_view_access_key_list.py +10 -0
  155. near_jsonrpc_models/json_rpc_request_for_experimental_view_account.py +10 -0
  156. near_jsonrpc_models/json_rpc_request_for_experimental_view_code.py +10 -0
  157. near_jsonrpc_models/json_rpc_request_for_experimental_view_gas_key.py +10 -0
  158. near_jsonrpc_models/json_rpc_request_for_experimental_view_gas_key_list.py +10 -0
  159. near_jsonrpc_models/json_rpc_request_for_experimental_view_state.py +10 -0
  160. near_jsonrpc_models/json_rpc_request_for_gas_price.py +10 -0
  161. near_jsonrpc_models/json_rpc_request_for_genesis_config.py +10 -0
  162. near_jsonrpc_models/json_rpc_request_for_health.py +10 -0
  163. near_jsonrpc_models/json_rpc_request_for_light_client_proof.py +10 -0
  164. near_jsonrpc_models/json_rpc_request_for_maintenance_windows.py +10 -0
  165. near_jsonrpc_models/json_rpc_request_for_network_info.py +10 -0
  166. near_jsonrpc_models/json_rpc_request_for_next_light_client_block.py +10 -0
  167. near_jsonrpc_models/json_rpc_request_for_query.py +10 -0
  168. near_jsonrpc_models/json_rpc_request_for_send_tx.py +10 -0
  169. near_jsonrpc_models/json_rpc_request_for_status.py +10 -0
  170. near_jsonrpc_models/json_rpc_request_for_tx.py +10 -0
  171. near_jsonrpc_models/json_rpc_request_for_validators.py +10 -0
  172. near_jsonrpc_models/json_rpc_response_for_array_of_range_of_uint64_and_rpc_maintenance_windows_error.py +21 -0
  173. near_jsonrpc_models/json_rpc_response_for_array_of_validator_stake_view_and_rpc_validator_error.py +21 -0
  174. near_jsonrpc_models/json_rpc_response_for_crypto_hash_and_rpc_transaction_error.py +20 -0
  175. near_jsonrpc_models/json_rpc_response_for_genesis_config_and_genesis_config_error.py +20 -0
  176. near_jsonrpc_models/json_rpc_response_for_nullable_rpc_health_response_and_rpc_status_error.py +20 -0
  177. near_jsonrpc_models/json_rpc_response_for_rpc_block_response_and_rpc_block_error.py +20 -0
  178. near_jsonrpc_models/json_rpc_response_for_rpc_call_function_response_and_rpc_call_function_error.py +20 -0
  179. near_jsonrpc_models/json_rpc_response_for_rpc_chunk_response_and_rpc_chunk_error.py +20 -0
  180. near_jsonrpc_models/json_rpc_response_for_rpc_client_config_response_and_rpc_client_config_error.py +20 -0
  181. near_jsonrpc_models/json_rpc_response_for_rpc_congestion_level_response_and_rpc_chunk_error.py +20 -0
  182. near_jsonrpc_models/json_rpc_response_for_rpc_gas_price_response_and_rpc_gas_price_error.py +20 -0
  183. near_jsonrpc_models/json_rpc_response_for_rpc_light_client_block_proof_response_and_rpc_light_client_proof_error.py +20 -0
  184. near_jsonrpc_models/json_rpc_response_for_rpc_light_client_execution_proof_response_and_rpc_light_client_proof_error.py +20 -0
  185. near_jsonrpc_models/json_rpc_response_for_rpc_light_client_next_block_response_and_rpc_light_client_next_block_error.py +20 -0
  186. near_jsonrpc_models/json_rpc_response_for_rpc_network_info_response_and_rpc_network_info_error.py +20 -0
  187. near_jsonrpc_models/json_rpc_response_for_rpc_protocol_config_response_and_rpc_protocol_config_error.py +20 -0
  188. near_jsonrpc_models/json_rpc_response_for_rpc_query_response_and_rpc_query_error.py +20 -0
  189. near_jsonrpc_models/json_rpc_response_for_rpc_receipt_response_and_rpc_receipt_error.py +20 -0
  190. near_jsonrpc_models/json_rpc_response_for_rpc_split_storage_info_response_and_rpc_split_storage_info_error.py +20 -0
  191. near_jsonrpc_models/json_rpc_response_for_rpc_state_changes_in_block_by_type_response_and_rpc_state_changes_error.py +20 -0
  192. near_jsonrpc_models/json_rpc_response_for_rpc_state_changes_in_block_response_and_rpc_state_changes_error.py +20 -0
  193. near_jsonrpc_models/json_rpc_response_for_rpc_status_response_and_rpc_status_error.py +20 -0
  194. near_jsonrpc_models/json_rpc_response_for_rpc_transaction_response_and_rpc_transaction_error.py +20 -0
  195. near_jsonrpc_models/json_rpc_response_for_rpc_validator_response_and_rpc_validator_error.py +20 -0
  196. near_jsonrpc_models/json_rpc_response_for_rpc_view_access_key_list_response_and_rpc_view_access_key_list_error.py +20 -0
  197. near_jsonrpc_models/json_rpc_response_for_rpc_view_access_key_response_and_rpc_view_access_key_error.py +20 -0
  198. near_jsonrpc_models/json_rpc_response_for_rpc_view_account_response_and_rpc_view_account_error.py +20 -0
  199. near_jsonrpc_models/json_rpc_response_for_rpc_view_code_response_and_rpc_view_code_error.py +20 -0
  200. near_jsonrpc_models/json_rpc_response_for_rpc_view_gas_key_list_response_and_rpc_view_gas_key_list_error.py +20 -0
  201. near_jsonrpc_models/json_rpc_response_for_rpc_view_gas_key_response_and_rpc_view_gas_key_error.py +20 -0
  202. near_jsonrpc_models/json_rpc_response_for_rpc_view_state_response_and_rpc_view_state_error.py +20 -0
  203. near_jsonrpc_models/known_producer_view.py +13 -0
  204. near_jsonrpc_models/light_client_block_lite_view.py +9 -0
  205. near_jsonrpc_models/limit_config.py +81 -0
  206. near_jsonrpc_models/log_summary_style.py +7 -0
  207. near_jsonrpc_models/merkle_path_item.py +8 -0
  208. near_jsonrpc_models/method_resolve_error.py +7 -0
  209. near_jsonrpc_models/missing_trie_value.py +8 -0
  210. near_jsonrpc_models/missing_trie_value_context.py +9 -0
  211. near_jsonrpc_models/mutable_config_value.py +7 -0
  212. near_jsonrpc_models/near_gas.py +8 -0
  213. near_jsonrpc_models/near_token.py +7 -0
  214. near_jsonrpc_models/network_info_view.py +17 -0
  215. near_jsonrpc_models/next_epoch_validator_info.py +13 -0
  216. near_jsonrpc_models/non_delegate_action.py +71 -0
  217. near_jsonrpc_models/peer_id.py +6 -0
  218. near_jsonrpc_models/peer_info_view.py +26 -0
  219. near_jsonrpc_models/prepare_error.py +16 -0
  220. near_jsonrpc_models/protocol_version_check_config.py +9 -0
  221. near_jsonrpc_models/public_key.py +7 -0
  222. near_jsonrpc_models/range_of_uint64.py +7 -0
  223. near_jsonrpc_models/receipt_enum_view.py +48 -0
  224. near_jsonrpc_models/receipt_validation_error.py +76 -0
  225. near_jsonrpc_models/receipt_view.py +13 -0
  226. near_jsonrpc_models/rpc_block_error.py +25 -0
  227. near_jsonrpc_models/rpc_block_request.py +20 -0
  228. near_jsonrpc_models/rpc_block_response.py +12 -0
  229. near_jsonrpc_models/rpc_call_function_error.py +64 -0
  230. near_jsonrpc_models/rpc_call_function_request.py +31 -0
  231. near_jsonrpc_models/rpc_call_function_response.py +13 -0
  232. near_jsonrpc_models/rpc_chunk_error.py +38 -0
  233. near_jsonrpc_models/rpc_chunk_request.py +18 -0
  234. near_jsonrpc_models/rpc_chunk_response.py +13 -0
  235. near_jsonrpc_models/rpc_client_config_error.py +16 -0
  236. near_jsonrpc_models/rpc_client_config_request.py +7 -0
  237. near_jsonrpc_models/rpc_client_config_response.py +185 -0
  238. near_jsonrpc_models/rpc_congestion_level_request.py +18 -0
  239. near_jsonrpc_models/rpc_congestion_level_response.py +5 -0
  240. near_jsonrpc_models/rpc_gas_price_error.py +22 -0
  241. near_jsonrpc_models/rpc_gas_price_request.py +6 -0
  242. near_jsonrpc_models/rpc_gas_price_response.py +6 -0
  243. near_jsonrpc_models/rpc_health_request.py +7 -0
  244. near_jsonrpc_models/rpc_health_response.py +7 -0
  245. near_jsonrpc_models/rpc_known_producer.py +9 -0
  246. near_jsonrpc_models/rpc_light_client_block_proof_request.py +7 -0
  247. near_jsonrpc_models/rpc_light_client_block_proof_response.py +9 -0
  248. near_jsonrpc_models/rpc_light_client_execution_proof_request.py +23 -0
  249. near_jsonrpc_models/rpc_light_client_execution_proof_response.py +12 -0
  250. near_jsonrpc_models/rpc_light_client_next_block_error.py +30 -0
  251. near_jsonrpc_models/rpc_light_client_next_block_request.py +6 -0
  252. near_jsonrpc_models/rpc_light_client_next_block_response.py +19 -0
  253. near_jsonrpc_models/rpc_light_client_proof_error.py +55 -0
  254. near_jsonrpc_models/rpc_maintenance_windows_error.py +16 -0
  255. near_jsonrpc_models/rpc_maintenance_windows_request.py +6 -0
  256. near_jsonrpc_models/rpc_network_info_error.py +16 -0
  257. near_jsonrpc_models/rpc_network_info_request.py +7 -0
  258. near_jsonrpc_models/rpc_network_info_response.py +15 -0
  259. near_jsonrpc_models/rpc_peer_info.py +9 -0
  260. near_jsonrpc_models/rpc_protocol_config_error.py +22 -0
  261. near_jsonrpc_models/rpc_protocol_config_request.py +20 -0
  262. near_jsonrpc_models/rpc_protocol_config_response.py +103 -0
  263. near_jsonrpc_models/rpc_query_error.py +122 -0
  264. near_jsonrpc_models/rpc_query_request.py +185 -0
  265. near_jsonrpc_models/rpc_query_response.py +50 -0
  266. near_jsonrpc_models/rpc_receipt_error.py +24 -0
  267. near_jsonrpc_models/rpc_receipt_request.py +6 -0
  268. near_jsonrpc_models/rpc_receipt_response.py +13 -0
  269. near_jsonrpc_models/rpc_request_validation_error_kind.py +23 -0
  270. near_jsonrpc_models/rpc_send_transaction_request.py +9 -0
  271. near_jsonrpc_models/rpc_split_storage_info_error.py +16 -0
  272. near_jsonrpc_models/rpc_split_storage_info_request.py +5 -0
  273. near_jsonrpc_models/rpc_split_storage_info_response.py +11 -0
  274. near_jsonrpc_models/rpc_state_changes_error.py +25 -0
  275. near_jsonrpc_models/rpc_state_changes_in_block_by_type_request.py +129 -0
  276. near_jsonrpc_models/rpc_state_changes_in_block_by_type_response.py +9 -0
  277. near_jsonrpc_models/rpc_state_changes_in_block_request.py +20 -0
  278. near_jsonrpc_models/rpc_state_changes_in_block_response.py +9 -0
  279. near_jsonrpc_models/rpc_status_error.py +37 -0
  280. near_jsonrpc_models/rpc_status_request.py +7 -0
  281. near_jsonrpc_models/rpc_status_response.py +41 -0
  282. near_jsonrpc_models/rpc_transaction_error.py +43 -0
  283. near_jsonrpc_models/rpc_transaction_response.py +17 -0
  284. near_jsonrpc_models/rpc_transaction_status_request.py +21 -0
  285. near_jsonrpc_models/rpc_validator_error.py +22 -0
  286. near_jsonrpc_models/rpc_validator_request.py +20 -0
  287. near_jsonrpc_models/rpc_validator_response.py +28 -0
  288. near_jsonrpc_models/rpc_validators_ordered_request.py +6 -0
  289. near_jsonrpc_models/rpc_view_access_key_error.py +55 -0
  290. near_jsonrpc_models/rpc_view_access_key_list_error.py +45 -0
  291. near_jsonrpc_models/rpc_view_access_key_list_request.py +24 -0
  292. near_jsonrpc_models/rpc_view_access_key_list_response.py +13 -0
  293. near_jsonrpc_models/rpc_view_access_key_request.py +28 -0
  294. near_jsonrpc_models/rpc_view_access_key_response.py +13 -0
  295. near_jsonrpc_models/rpc_view_account_error.py +45 -0
  296. near_jsonrpc_models/rpc_view_account_request.py +24 -0
  297. near_jsonrpc_models/rpc_view_account_response.py +20 -0
  298. near_jsonrpc_models/rpc_view_code_error.py +54 -0
  299. near_jsonrpc_models/rpc_view_code_request.py +24 -0
  300. near_jsonrpc_models/rpc_view_code_response.py +12 -0
  301. near_jsonrpc_models/rpc_view_gas_key_error.py +55 -0
  302. near_jsonrpc_models/rpc_view_gas_key_list_error.py +45 -0
  303. near_jsonrpc_models/rpc_view_gas_key_list_request.py +24 -0
  304. near_jsonrpc_models/rpc_view_gas_key_list_response.py +11 -0
  305. near_jsonrpc_models/rpc_view_gas_key_request.py +28 -0
  306. near_jsonrpc_models/rpc_view_gas_key_response.py +15 -0
  307. near_jsonrpc_models/rpc_view_state_error.py +54 -0
  308. near_jsonrpc_models/rpc_view_state_request.py +31 -0
  309. near_jsonrpc_models/rpc_view_state_response.py +14 -0
  310. near_jsonrpc_models/runtime_config_view.py +30 -0
  311. near_jsonrpc_models/runtime_fees_config_view.py +29 -0
  312. near_jsonrpc_models/shard_id.py +16 -0
  313. near_jsonrpc_models/shard_layout.py +34 -0
  314. near_jsonrpc_models/shard_layout_v0.py +15 -0
  315. near_jsonrpc_models/shard_layout_v1.py +22 -0
  316. near_jsonrpc_models/shard_layout_v2.py +19 -0
  317. near_jsonrpc_models/shard_layout_v3.py +17 -0
  318. near_jsonrpc_models/shard_uid.py +17 -0
  319. near_jsonrpc_models/signature.py +7 -0
  320. near_jsonrpc_models/signed_delegate_action.py +8 -0
  321. near_jsonrpc_models/signed_transaction.py +7 -0
  322. near_jsonrpc_models/signed_transaction_view.py +19 -0
  323. near_jsonrpc_models/slashed_validator.py +7 -0
  324. near_jsonrpc_models/stake_action.py +12 -0
  325. near_jsonrpc_models/state_change_cause_view.py +50 -0
  326. near_jsonrpc_models/state_change_kind_view.py +31 -0
  327. near_jsonrpc_models/state_change_with_cause_view.py +129 -0
  328. near_jsonrpc_models/state_item.py +10 -0
  329. near_jsonrpc_models/state_sync_config.py +14 -0
  330. near_jsonrpc_models/status_sync_info.py +17 -0
  331. near_jsonrpc_models/storage_error.py +46 -0
  332. near_jsonrpc_models/storage_get_mode.py +9 -0
  333. near_jsonrpc_models/storage_usage_config_view.py +11 -0
  334. near_jsonrpc_models/store_key.py +12 -0
  335. near_jsonrpc_models/store_value.py +12 -0
  336. near_jsonrpc_models/strict_model.py +5 -0
  337. near_jsonrpc_models/sync_checkpoint.py +7 -0
  338. near_jsonrpc_models/sync_concurrency.py +19 -0
  339. near_jsonrpc_models/sync_config.py +23 -0
  340. near_jsonrpc_models/tier1proxy_view.py +7 -0
  341. near_jsonrpc_models/tracked_shards_config.py +42 -0
  342. near_jsonrpc_models/transfer_action.py +6 -0
  343. near_jsonrpc_models/transfer_to_gas_key_action.py +8 -0
  344. near_jsonrpc_models/tx_execution_error.py +21 -0
  345. near_jsonrpc_models/tx_execution_status.py +14 -0
  346. near_jsonrpc_models/use_global_contract_action.py +8 -0
  347. near_jsonrpc_models/validator_info.py +6 -0
  348. near_jsonrpc_models/validator_kickout_reason.py +67 -0
  349. near_jsonrpc_models/validator_kickout_view.py +8 -0
  350. near_jsonrpc_models/validator_stake_view.py +13 -0
  351. near_jsonrpc_models/validator_stake_view_v1.py +10 -0
  352. near_jsonrpc_models/version.py +10 -0
  353. near_jsonrpc_models/view_state_result.py +10 -0
  354. near_jsonrpc_models/vmconfig_view.py +44 -0
  355. near_jsonrpc_models/vmkind.py +9 -0
  356. near_jsonrpc_models/wasm_trap.py +9 -0
  357. near_jsonrpc_models/witness_config_view.py +17 -0
@@ -0,0 +1,43 @@
1
+ import httpx
2
+
3
+
4
+ class HttpTransportAsync:
5
+ def __init__(
6
+ self,
7
+ base_url: str,
8
+ *,
9
+ timeout: float = 10.0,
10
+ headers: dict[str, str] | None = None,
11
+ ):
12
+ self._client = httpx.AsyncClient(
13
+ base_url=base_url,
14
+ timeout=timeout,
15
+ headers=headers,
16
+ )
17
+
18
+ async def post(self, json: dict) -> httpx.Response:
19
+ return await self._client.post("", json=json)
20
+
21
+ async def close(self):
22
+ await self._client.aclose()
23
+
24
+
25
+ class HttpTransportSync:
26
+ def __init__(
27
+ self,
28
+ base_url: str,
29
+ *,
30
+ timeout: float = 10.0,
31
+ headers: dict[str, str] | None = None,
32
+ ):
33
+ self._client = httpx.Client(
34
+ base_url=base_url,
35
+ timeout=timeout,
36
+ headers=headers,
37
+ )
38
+
39
+ def post(self, json: dict) -> httpx.Response:
40
+ return self._client.post("", json=json)
41
+
42
+ def close(self):
43
+ self._client.close()
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: near-jsonrpc-client
3
+ Version: 1.0.5
4
+ Summary: A typed Python client for the NEAR JSON-RPC API with Pydantic models and async HTTP support
5
+ Requires-Python: >=3.9
6
+ License-File: LICENSE
7
+ Requires-Dist: httpx
8
+ Requires-Dist: pydantic>=2
9
+ Dynamic: license-file
10
+ Dynamic: requires-python
@@ -0,0 +1,357 @@
1
+ near_jsonrpc_client/__init__.py,sha256=6xyJY-itvM0ZCgc14mM4plMpuZnfx_5jln-G539FYfg,489
2
+ near_jsonrpc_client/api_methods_async.py,sha256=ELi7-hV3GugFlI7hLNhkjYStupO2LY3O1MxPysNJLmg,27606
3
+ near_jsonrpc_client/api_methods_sync.py,sha256=XUtvoUmMeMRmq1XT-QNgvLWKEJ9mq1GAwM85j-xXE6g,27095
4
+ near_jsonrpc_client/base_client.py,sha256=Rn0Qrr0AK77j-FskwKXUXhTB9j_3rohJTmrPeJtyoI0,4183
5
+ near_jsonrpc_client/client.py,sha256=8gnY3tgUOGwUe4r8_mOedlLik8Zr6jxbNMVxwPlmHYo,453
6
+ near_jsonrpc_client/errors.py,sha256=rbX0OsplhSKW9eYORGig3pu76ENz9mRyNKvPYpFsGYI,859
7
+ near_jsonrpc_client/transport.py,sha256=r92Zf7r_4ggU_fKp4pR9WyeaUOVOyLEW7xqz8Ny1buY,1012
8
+ near_jsonrpc_client-1.0.5.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
9
+ near_jsonrpc_models/__init__.py,sha256=LN4dy6QLrgpjZZmqmbTSE_y_5b_aqwHu6RMkSltcCbM,224672
10
+ near_jsonrpc_models/access_key.py,sha256=Yxb_imR1x07BdrtSifGDbhKHfuvD8HYYa0iaj3g0V84,918
11
+ near_jsonrpc_models/access_key_creation_config_view.py,sha256=z3DIfoi6jojkk-S91Eyj15CM_0ZScyOOOmyWYqio4e0,466
12
+ near_jsonrpc_models/access_key_info_view.py,sha256=q7_s-gjgIztX69cVn7n3yD_MbNH0pfbZBXD5inhZz4I,315
13
+ near_jsonrpc_models/access_key_list.py,sha256=WfZ5P4LDnY79Z1ql9hNCt6cjZpcGvfsgo_ZX3l6Nm9Q,219
14
+ near_jsonrpc_models/access_key_permission.py,sha256=8Z3rFCNq3OBykPMeXDYy9PMcoQNA295bmYyGeRLAmD4,691
15
+ near_jsonrpc_models/access_key_permission_view.py,sha256=n1v48ejRacTKUpL7oDV0TmLl3CvIYQYznCUdOI7vrow,851
16
+ near_jsonrpc_models/access_key_view.py,sha256=Rhy9TotlyE-sCfK-W7vjBFJylHBSPyKU1ptk_a9GQtg,321
17
+ near_jsonrpc_models/account_creation_config_view.py,sha256=WMcheKdCaAAmN9OnzsyyT7cNbfYT3Ty5viUT8DMnskQ,572
18
+ near_jsonrpc_models/account_data_view.py,sha256=sYx76hlJuXlnTgruTdUjRmRPUZX5EUyvmUMaNoZTqSA,1369
19
+ near_jsonrpc_models/account_id.py,sha256=tFc_AA85WAsHQCOoI9IyY1MS4u4VYpiiBKIBTZ3_LCg,576
20
+ near_jsonrpc_models/account_id_validity_rules_version.py,sha256=0h77OjchUz5L4_J5T0BqHeFS6zs7KbEU6_BG62E9kkQ,172
21
+ near_jsonrpc_models/account_info.py,sha256=LJcK26NM2_6q9UJ7gPUYe-KD6lzRilEiYNPDZs_O2fg,331
22
+ near_jsonrpc_models/account_view.py,sha256=CuaA8_WCnglYtgaU4Qi0MXcbvYxDnJ2UBbwCWZUJEG8,608
23
+ near_jsonrpc_models/account_with_public_key.py,sha256=-kOKDVPFhrGnQhr08mGuu-LxCydjDck7Qw4Wvzr4jqw,269
24
+ near_jsonrpc_models/action_creation_config_view.py,sha256=rr4ce2DDAHOh3giM2iUDJ3bDUkYgNfbqEjdggY2Ycs4,1250
25
+ near_jsonrpc_models/action_error.py,sha256=2_RgIHSnPEcPlOGeDd1bldgA-OCGpoJjbkteRTDpoQo,483
26
+ near_jsonrpc_models/action_error_kind.py,sha256=xcU_ORQlru35XGfsc5N-L1tezPSEuVWRzahxlI0-eTQ,9601
27
+ near_jsonrpc_models/action_view.py,sha256=SMVXpR0hCILU_MdKGHWjEzzXogmZLQmDeCWjZ67mAao,4639
28
+ near_jsonrpc_models/actions_validation_error.py,sha256=Bsg83JOwa2gr3GVgsIPAqBcZvHlsMvQdzys3Y5O5urI,8100
29
+ near_jsonrpc_models/add_gas_key_action.py,sha256=KlToqWU2ZEchHpN5qzizDpNcUVXG6xw6WWOpgqF-_vM,328
30
+ near_jsonrpc_models/add_key_action.py,sha256=NW3IX9Z5CcmPyzDNOlfuWN5V7F22SGXdpiTglY0EcTI,383
31
+ near_jsonrpc_models/bandwidth_request.py,sha256=EsiLcwYb5MKOoSV3Mfz8yIYk1CQ7RwUvNxKHwTSZ-xk,636
32
+ near_jsonrpc_models/bandwidth_request_bitmap.py,sha256=YKnoUJdx5zmNk2dQ7XHoQb9ymFZTMHTjAOWgDHfIXI4,389
33
+ near_jsonrpc_models/bandwidth_requests.py,sha256=adPARwVAk7jX7cOL-E21dsLcxskmbIsrF1DeWr9FntY,493
34
+ near_jsonrpc_models/bandwidth_requests_v1.py,sha256=nJTJjAm4lTsKQQBfnwQTWQZbd2x1_arfWUM4MQIp5vo,241
35
+ near_jsonrpc_models/block_header_inner_lite_view.py,sha256=5XqDBSz15LaBPDVREIWXjpuHfWXxq5xpxZ8ibVJ3oOo,871
36
+ near_jsonrpc_models/block_header_view.py,sha256=E3ZrdQ3LBBjIaZ1p_VBGTtqTxD52W4QqOZltfQcDdto,2073
37
+ near_jsonrpc_models/block_id.py,sha256=jpN10bCklVbQsYoKuMzFPcxUp1Hj-LUh1hqV8DLEsR8,387
38
+ near_jsonrpc_models/block_reference.py,sha256=ohtP58bBL3rPZeVfYnbX4BAze0Gh0EzcPau0lpQa_EU,669
39
+ near_jsonrpc_models/block_status_view.py,sha256=YSt1phZZaLgdswxKPOjDXUvQqb3kwBj0xB_-AWrGw8I,255
40
+ near_jsonrpc_models/call_result.py,sha256=7C_stY68RibHbe6OSPRbO2T44rRnthqqxhp1NaeUEbs,217
41
+ near_jsonrpc_models/catchup_status_view.py,sha256=ZrTmRUXvRjTrrB6T-Hjh0rTbQXcNjhwnISyxNC9RTrs,1020
42
+ near_jsonrpc_models/chunk_distribution_network_config.py,sha256=BgGh5w1cjiNTOCNu6xw9HTNc5v6lysK_HMQ845tiuDU,504
43
+ near_jsonrpc_models/chunk_distribution_uris.py,sha256=yh33syk0XD5HO0cscR4fe3san2FSifG0PizJ_lS3oqE,262
44
+ near_jsonrpc_models/chunk_hash.py,sha256=9NIInocxJU_ig5_3oU-szDlQetRUHJAeQALsqImvIXA,80
45
+ near_jsonrpc_models/chunk_header_view.py,sha256=6b9FO8nXIXv8VuLZ8AtTMbXRjrazHGcWOF5i2YN4Dj0,1548
46
+ near_jsonrpc_models/cloud_archival_writer_config.py,sha256=9Tl4VPWIiFOj_daNjaPpr7k414WV4e4dMc6qRnhuWWQ,790
47
+ near_jsonrpc_models/compilation_error.py,sha256=iNeLJjlL3YVgxwsfAM4zx8_oVPG18PKR2DIti3uXXrc,1086
48
+ near_jsonrpc_models/congestion_control_config_view.py,sha256=GFx-_e_oa-mSoTCfguEf-11u_aLLLK8KMHt47sfvxf8,3098
49
+ near_jsonrpc_models/congestion_info_view.py,sha256=iXFq8_JqszgKLo-NCRn8HCjRYc-Rtvq_-PdcuogiZYg,453
50
+ near_jsonrpc_models/contract_code_view.py,sha256=bO6anO4I66erYXzYIrmTsaXnkzeUGx9uPoDYt7NGfxA,201
51
+ near_jsonrpc_models/cost_gas_used.py,sha256=sOFdpQxuQahjkFDVNoWrTOgmtWk-_a7xk8i5UmzEb9I,330
52
+ near_jsonrpc_models/create_account_action.py,sha256=wsW0i5PYqt31x7TgrVO3CVn280TV9JVoGcIf-FDgRSA,109
53
+ near_jsonrpc_models/crypto_hash.py,sha256=1CP3-JkbGR2OKvgf9sBIkvAv0Q2NnmHply2Ecy-yvvo,108
54
+ near_jsonrpc_models/current_epoch_validator_info.py,sha256=FQYAMKWAh3R6SxhDI5Pvyfo19ELblRQqN8lWXMWqb_M,2034
55
+ near_jsonrpc_models/data_receipt_creation_config_view.py,sha256=pdsCVTHD6jyd-UIciIS07IGFjcuW6IuXFXcMT9o_r-k,988
56
+ near_jsonrpc_models/data_receiver_view.py,sha256=2D4deyIJlRLkYHkB2Oj5GhW4AVhGmoONUIUT7uBxU3M,227
57
+ near_jsonrpc_models/delegate_action.py,sha256=5R9-uJJij143DbRBhyTXAms1-A38HlAITrBqzx2V-tI,1221
58
+ near_jsonrpc_models/delete_account_action.py,sha256=az-HU-9l9yrZm2qdoOfYQlQRYfXf-adBk99WYrDE4hk,154
59
+ near_jsonrpc_models/delete_gas_key_action.py,sha256=oB01tecI6fnX20e_UFCwTt8fTBEEaTM4p0EKzbduYvY,149
60
+ near_jsonrpc_models/delete_key_action.py,sha256=nTtPVzSf5u0hUlaQf569SktIhCYtxVC5kWXMB773eCM,211
61
+ near_jsonrpc_models/deploy_contract_action.py,sha256=dsHksqEkeOaMB2xAPo-kKDf06NsGGgZ0udmhlk5KTX4,141
62
+ near_jsonrpc_models/deploy_global_contract_action.py,sha256=7Hk5H5o8gf7HCR-4Utu6rq-Wj-sV5FV8GoSawX22TnI,281
63
+ near_jsonrpc_models/detailed_debug_status.py,sha256=tA3Vg2PK4cbu1LA6SVKjqohqEEQdgNAR2N035A22Pvo,586
64
+ near_jsonrpc_models/deterministic_account_state_init.py,sha256=EufvvahL7fL1FW7X0Zfbvrc66KWD_S_Y-SHuVXPS18Q,457
65
+ near_jsonrpc_models/deterministic_account_state_init_v1.py,sha256=khzGINpztcQNAvBQYQnDDHOljSR2JIpr-Xkk7w6jBB4,251
66
+ near_jsonrpc_models/deterministic_state_init_action.py,sha256=zYRxiLHt3oLRkuO9-KYgC8tV8TvrocXk2i9_amwt9x4,297
67
+ near_jsonrpc_models/direction.py,sha256=IBTozgwUQ2VwESQc41VNj2BG8kSvhiLiFqy2Z5eF6d0,124
68
+ near_jsonrpc_models/dump_config.py,sha256=lsvXa66JMOUMtLnX7IfQ0FBFME2mM0mhTzj5MVhik6M,905
69
+ near_jsonrpc_models/duration_as_std_schema_provider.py,sha256=sQsSNAiZj61nVXe3SfCzXkJVQ7XQFpzoQPWa_KhU0M4,170
70
+ near_jsonrpc_models/dynamic_resharding_config_view.py,sha256=rA6Hq2pb67LPm_NWj53Vy2PkO2dFBLFfBcoB8_BjZV8,908
71
+ near_jsonrpc_models/epoch_id.py,sha256=PhzEnxhfsr4KF3PJYYk62iXRWUhoyNQvFOBwzTWACeg,238
72
+ near_jsonrpc_models/epoch_sync_config.py,sha256=mvI-SS2IhWixV2wYciKJSQbTg235L8UQmlfPt14EpYY,1636
73
+ near_jsonrpc_models/error_wrapper_for_genesis_config_error.py,sha256=Fy8v8wHg2qkmjfNaAr64XPWY8VHt3yJjkcMtJdv1rp8,985
74
+ near_jsonrpc_models/error_wrapper_for_rpc_block_error.py,sha256=bCL1GFnF6wqh-2mKEbXmHUIJO-2mf79Y_vNNzfM1SqY,935
75
+ near_jsonrpc_models/error_wrapper_for_rpc_call_function_error.py,sha256=26xW6haXccsmi_lbRpuarl9IeqTrkkhuNLCgxIrBDrg,1006
76
+ near_jsonrpc_models/error_wrapper_for_rpc_chunk_error.py,sha256=rU17oPJlkAk1VXwOIOqVnobL5sFwm8vM5UKhUe4sOHk,935
77
+ near_jsonrpc_models/error_wrapper_for_rpc_client_config_error.py,sha256=CkygtzZLVmCtwElO2yF6hBXESv_HRzXE85_Q3wCskvg,1006
78
+ near_jsonrpc_models/error_wrapper_for_rpc_gas_price_error.py,sha256=CaS45HsreJqD23GIeATRfhQ919Pm6uKzubsyzNRT17Y,966
79
+ near_jsonrpc_models/error_wrapper_for_rpc_light_client_next_block_error.py,sha256=esUYZBGUFzNzFm0rOa0pvW9-cqZdNB4npoviQeWPfUM,1088
80
+ near_jsonrpc_models/error_wrapper_for_rpc_light_client_proof_error.py,sha256=sscMBcR68pBdNWHsp2z5UC9EL5mwVWeH4nhEca_Lj0A,1047
81
+ near_jsonrpc_models/error_wrapper_for_rpc_maintenance_windows_error.py,sha256=UfleibKJVB3Lh5LDJ9OLjHNHh-cr0SJkRsJMJSW32U0,1066
82
+ near_jsonrpc_models/error_wrapper_for_rpc_network_info_error.py,sha256=vM7oMKK485J5A3n8z1121woplQvOp9VhAjtFv7dOe1Q,996
83
+ near_jsonrpc_models/error_wrapper_for_rpc_protocol_config_error.py,sha256=x5nkyKKBGYbg6W7ed3AK0lAEyNNFedorxzXIdGz0Thk,1026
84
+ near_jsonrpc_models/error_wrapper_for_rpc_query_error.py,sha256=Rw8N4leEqXIFocBxVEhTj1BzYGqgeaiqcvijKpW79xA,935
85
+ near_jsonrpc_models/error_wrapper_for_rpc_receipt_error.py,sha256=xkv52C4EfsKMMc0-5-0LX5epo28ZlGfaZHvPaeCDXyM,955
86
+ near_jsonrpc_models/error_wrapper_for_rpc_split_storage_info_error.py,sha256=wQCrysj_lxutoFq2FrSD8mPW92ZFNnmYcdtgKpXFphs,1047
87
+ near_jsonrpc_models/error_wrapper_for_rpc_state_changes_error.py,sha256=OZ6RrVC18dt8Xz9sN6Phm8TpX7ni7gR7n32xCebju7c,1006
88
+ near_jsonrpc_models/error_wrapper_for_rpc_status_error.py,sha256=eoHsmqohhTGHEaQgsTKkZ5mx8s2tWEYpaEhDdjENrB0,945
89
+ near_jsonrpc_models/error_wrapper_for_rpc_transaction_error.py,sha256=rLaAK1yuDC4vS1yu1xjZVDtBlEKVDL9Zc0XzBGzdCdE,995
90
+ near_jsonrpc_models/error_wrapper_for_rpc_validator_error.py,sha256=WEFj8BoLE4a8Af7fd_-U_fjM_4a36If-0R6taFoubpg,975
91
+ near_jsonrpc_models/error_wrapper_for_rpc_view_access_key_error.py,sha256=2QMAajRU0JPeD4EfrvYAxqZBBHNOhqwzsuT3gG2xWk0,1017
92
+ near_jsonrpc_models/error_wrapper_for_rpc_view_access_key_list_error.py,sha256=IDmEgtIecYe08K11svVhU9zdM4VEjD1GCiuzjtA0VBs,1058
93
+ near_jsonrpc_models/error_wrapper_for_rpc_view_account_error.py,sha256=1cn4qrqTNGzD9Hf1yaB7WwoANyr17-w2TRkbOyDe2YA,996
94
+ near_jsonrpc_models/error_wrapper_for_rpc_view_code_error.py,sha256=PXID0zTwxKOPhWGXiH1nzfVC0sMHheP2x3a36k8beJ4,966
95
+ near_jsonrpc_models/error_wrapper_for_rpc_view_gas_key_error.py,sha256=za13-tWCtm2q9CpZd_mxB5Jm_7ycZPTHNZ84CFSD7TI,987
96
+ near_jsonrpc_models/error_wrapper_for_rpc_view_gas_key_list_error.py,sha256=WWbdOXiVwsYwKmVkzrNuuHtKPYAYXRCIeMmPqJhDad4,1028
97
+ near_jsonrpc_models/error_wrapper_for_rpc_view_state_error.py,sha256=vsB4oM56UVPZ3Nf3Yv_GNpNwePC6rdOkIwH6LdyNs5o,976
98
+ near_jsonrpc_models/execution_metadata_view.py,sha256=mdKK4wlDfXj3bvGYmPQ9Htog9QvOi0x1uUACBb7DQFY,273
99
+ near_jsonrpc_models/execution_outcome_view.py,sha256=ERm7Cef4CAfCNhBmad0IhmhSbps5SPlkSk94TUKTAtc,1601
100
+ near_jsonrpc_models/execution_outcome_with_id_view.py,sha256=zm7BBBK_iqcWwu2eB56KVhf3RKEYxALSiykPTzoBPTc,409
101
+ near_jsonrpc_models/execution_status_view.py,sha256=fpvjXK-aA3vP5V_hMhHMQYBonFkLcSpyJwM5qD7fK24,1151
102
+ near_jsonrpc_models/ext_costs_config_view.py,sha256=8_umjXy2430b7cHBNlEwA10h2Jd64q2F0S6eM7PtOqA,6882
103
+ near_jsonrpc_models/external_storage_config.py,sha256=O7q9YwP0InLO0UOZAgP6rks7H4yjnzKWSG0q_0xvHOs,859
104
+ near_jsonrpc_models/external_storage_location.py,sha256=413OlE6P_CZH86Sa71GzUrSATI4djVD-FsB4s2Ang-A,1073
105
+ near_jsonrpc_models/fee.py,sha256=FlMwrDdEL1aFWqGTKWefVz7W4ZlMdimYckDji1A8Nqs,650
106
+ near_jsonrpc_models/final_execution_outcome_view.py,sha256=OXBa4VKxB5Cov_7RKX0ky1dSVa4LkBR75H2y0w3sqSA,1204
107
+ near_jsonrpc_models/final_execution_outcome_with_receipt_view.py,sha256=zSK9Dvxd5Fcz_riyY3QCGzzLyp-oQnJImypzz_iEaOs,1369
108
+ near_jsonrpc_models/final_execution_status.py,sha256=f3RVZrnHMBIypL-ifq3lTCcG2K5YJWz-Adjrc0ZbU4g,990
109
+ near_jsonrpc_models/finality.py,sha256=i-LoG1GtdUompbkFimb91TRZYS4bg8FHNMA751exfsg,179
110
+ near_jsonrpc_models/function_args.py,sha256=MtK0pjs4LSgjwSSezkI6cBM4oN--83rkou3-Xk2NYq0,352
111
+ near_jsonrpc_models/function_call_action.py,sha256=IOaklV8dJ66pgnw-uPouLas9JaoFA-BaQEKeswarZFc,247
112
+ near_jsonrpc_models/function_call_error.py,sha256=wOTjahySLaUSQqBS30QtaMLIfzCOkt-8BtM-Urewzm4,2059
113
+ near_jsonrpc_models/function_call_permission.py,sha256=6ARV0AJPH7r_GMMbOp_nebhcNNHyR7bMd7m7mL-m8aw,1221
114
+ near_jsonrpc_models/gas_key.py,sha256=moj05oUTq5T59gVnxecChVLV341GxZuijAHiyheC1EQ,712
115
+ near_jsonrpc_models/gas_key_info_view.py,sha256=6lc8mH-eEWBXUY5sLViqOQvAoC9cqCDAxjJvOZpfr4M,225
116
+ near_jsonrpc_models/gas_key_list.py,sha256=9whDu9_-16RK7EK7ObV6AC7MPa8XwqsPkNtXQX1Njds,182
117
+ near_jsonrpc_models/gas_key_view.py,sha256=nz0nwvQolrrX4xKP_E0qTAYV1yVZ4kWJaKu29zjTQVI,413
118
+ near_jsonrpc_models/gcconfig.py,sha256=stvJSVX_X_hQ6bLujhg0R1GlEgqyi4e_FlAPc4NZOwk,902
119
+ near_jsonrpc_models/genesis_config.py,sha256=R7wPkZWONNADEFVGcZPGiiYi7aPBUGrH9nNRfsJSUnY,6962
120
+ near_jsonrpc_models/genesis_config_error.py,sha256=gAOAQsDs7WOak5lZiSJ6OC45xhYHBKlNEkksaPNbNmo,117
121
+ near_jsonrpc_models/genesis_config_request.py,sha256=MfadmePgf77L5KJ-jHBppMwPxLqmNsEwl3-i-yIvLuY,119
122
+ near_jsonrpc_models/global_contract_deploy_mode.py,sha256=gAhFIcn9QM6ZvttglUd4PFFJmU4cl52G28EoXJXXvvo,474
123
+ near_jsonrpc_models/global_contract_identifier.py,sha256=q-cZWrJtMbeKGpuWOo2_T8OJEivDoGBe6QDLK6Y6jwE,554
124
+ near_jsonrpc_models/global_contract_identifier_view.py,sha256=bszqMev26r3VTndJkhdjEoaxCopgxrjhSVpSxNIdVXA,563
125
+ near_jsonrpc_models/host_error.py,sha256=F4hVZlK5ECScRjHqD-OyUjcNzQ-9npBAiDOJA4Xr6I4,8889
126
+ near_jsonrpc_models/internal_error.py,sha256=ynRQg1VxXY8Znes5kIWJWEZcN7IjvARdg4eSWMb5y84,389
127
+ near_jsonrpc_models/invalid_access_key_error.py,sha256=SrK7EOQbne6YtJr7aJOXYJY-Q5bpJcjDM-1tqWiwhLg,2326
128
+ near_jsonrpc_models/invalid_tx_error.py,sha256=uf9Bnt5VwXuQ6YwsjjF9tJAC87aWV_SvTJh_KNZ6diM,5765
129
+ near_jsonrpc_models/json_rpc_request_for_block.py,sha256=IpFt4bFVNrkqIz8XQTExhOou6Z252aiY3t2uHeedvf8,253
130
+ near_jsonrpc_models/json_rpc_request_for_block_effects.py,sha256=nzPzBXABFtsZH5JFzeBfIVJkIKL44DWEgmrXHhPWYs8,313
131
+ near_jsonrpc_models/json_rpc_request_for_broadcast_tx_async.py,sha256=2WYeGGyXpQOM-_EAyqhksfhLyBCpM4I1Ev_plIUOwsw,308
132
+ near_jsonrpc_models/json_rpc_request_for_broadcast_tx_commit.py,sha256=sByso9yG2LrA9LyoWXHvKWAc6uqhB_p7z0MqlLn5-2g,310
133
+ near_jsonrpc_models/json_rpc_request_for_changes.py,sha256=SqkI6dCBI8XoQuDoIbIt0fy2QyciDHBxmSXdq5r1a1Y,322
134
+ near_jsonrpc_models/json_rpc_request_for_chunk.py,sha256=mVelSjyAsKxj2bvmOEejFoxl28QXt8pVkla3-wcoQrs,253
135
+ near_jsonrpc_models/json_rpc_request_for_client_config.py,sha256=Wo0M2YCHdTSutOo0kdO-vmEQrvrhn1HPVVMDd7Hsv2w,290
136
+ near_jsonrpc_models/json_rpc_request_for_experimental_call_function.py,sha256=x_d7mSfAj1RrCLGoeaWu3NEWTn9utX5xlROXuuZCScM,315
137
+ near_jsonrpc_models/json_rpc_request_for_experimental_changes.py,sha256=b_8qfM7BV6bNngJGQtY6vTj6M51z9AK_T1VDdbboVnA,347
138
+ near_jsonrpc_models/json_rpc_request_for_experimental_changes_in_block.py,sha256=WjZf58W141jrvTAdhONGgvwOiOgAhGxfxdcFoidsqzY,343
139
+ near_jsonrpc_models/json_rpc_request_for_experimental_congestion_level.py,sha256=ILVjC8Nxh75yWWO9mifxtmuXo4DcZ4ELWitZ4Vz-gog,330
140
+ near_jsonrpc_models/json_rpc_request_for_experimental_genesis_config.py,sha256=k_w-IwIe5GcOm708onRj7VHyNAU_oOiHndpo90ccD0E,310
141
+ near_jsonrpc_models/json_rpc_request_for_experimental_light_client_block_proof.py,sha256=pDat2WVkSudiTuuG3WF5KwJtsetXrKceYGhRvuvA3JM,364
142
+ near_jsonrpc_models/json_rpc_request_for_experimental_light_client_proof.py,sha256=BYnZ9fE7tMmNfWu2mCNd6MI5KhbOoxXmWrJKorUz6u0,365
143
+ near_jsonrpc_models/json_rpc_request_for_experimental_maintenance_windows.py,sha256=xz8XlXQeHaU7IDsaz7gP8p_EbCrZNIlDPDbpITni6cc,345
144
+ near_jsonrpc_models/json_rpc_request_for_experimental_protocol_config.py,sha256=ln4Y9V4mPa-I8CPIP4Y-s_l7gFa0yV8GsaJdgpI7M9M,325
145
+ near_jsonrpc_models/json_rpc_request_for_experimental_receipt.py,sha256=ldWIoc9Nd6U5rc2oecAtUJl02TwWtevAhLRNtyo9Mxs,288
146
+ near_jsonrpc_models/json_rpc_request_for_experimental_split_storage_info.py,sha256=_oF5XtqngZDIqw0EYpWcOJY_bRFF5bDakUmyzYmWqpE,337
147
+ near_jsonrpc_models/json_rpc_request_for_experimental_tx_status.py,sha256=PZclgtwGnd9LLvJE4QazJBHs-0kDwgdP7lftaLs7Ndc,322
148
+ near_jsonrpc_models/json_rpc_request_for_experimental_validators_ordered.py,sha256=_sZWvUnyubtZXXKD59e72dRFESC6iv4o-sBil76vIjY,340
149
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_access_key.py,sha256=BOQQvy28Bicn9Qq_Wn9AIc2lQCaiwvDlOUE4oOsYBII,322
150
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_access_key_list.py,sha256=dHHK4tqOWs9msOeHgxAbyZEYhAKztAgmoY3vddOLtBY,344
151
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_account.py,sha256=kh81Wi76g4bJlxBbTTfif70v9h4sgVz67LffOcX2e-0,310
152
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_code.py,sha256=1CCuK0qKXX6Y0YYi0sgklwWIjvBodIKCVjcTVUnMzeI,295
153
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_gas_key.py,sha256=2Pt0xS7SFkIBs2ZQKi8Sk_pppXEn27JGprptu6Qwre0,307
154
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_gas_key_list.py,sha256=oB9SgAdF0dihC_G2klWdt-OEBH-tg38x0Rn0qKxjh5A,329
155
+ near_jsonrpc_models/json_rpc_request_for_experimental_view_state.py,sha256=M25a1JC_XGPhv5QrQBlGG-kLdabCc5pU5tYzswWq8VQ,300
156
+ near_jsonrpc_models/json_rpc_request_for_gas_price.py,sha256=3UJ2l2TCc-GH0GhriWGSNxnMbiqDxgRsYlCn0b35a-M,270
157
+ near_jsonrpc_models/json_rpc_request_for_genesis_config.py,sha256=Qv1fw0nECQDSnNXFRxP8LdqPKd-SbyS4hua30VFRH_Q,285
158
+ near_jsonrpc_models/json_rpc_request_for_health.py,sha256=sr6UjUZY4SEIvaKsyoERAhJx6LF59rqJkr11qhNDxVs,258
159
+ near_jsonrpc_models/json_rpc_request_for_light_client_proof.py,sha256=yeKGzsy0DGKHV8gB3i_odI9a5MyEbe1iByfkqOPHLiA,340
160
+ near_jsonrpc_models/json_rpc_request_for_maintenance_windows.py,sha256=F3ozWsboogXbdE4c7Pv0G8L7E4TTpjNkqaThD1JK8Ic,320
161
+ near_jsonrpc_models/json_rpc_request_for_network_info.py,sha256=QWCDfm6r_fp6BwA-Yi4TfWc5zlz1jgJYKH1iMAn1UHk,285
162
+ near_jsonrpc_models/json_rpc_request_for_next_light_client_block.py,sha256=_yiUeG0S7BReWVq1y1jLVZtTJ4dyjvH8UM-JK41ppuA,334
163
+ near_jsonrpc_models/json_rpc_request_for_query.py,sha256=oglLQc9DqwAFlsE1h9Jq8i2e3hRVjUNuXn__ah4UPhc,253
164
+ near_jsonrpc_models/json_rpc_request_for_send_tx.py,sha256=zUTvlTDKRpUrvt5VOjToIVXjgXqZo4bBJVelkLCHvps,287
165
+ near_jsonrpc_models/json_rpc_request_for_status.py,sha256=p3V4gi0de3BQLmb_xiN2AJONN1Mw8-Og4MmHpjNiuoE,258
166
+ near_jsonrpc_models/json_rpc_request_for_tx.py,sha256=JUWgyhmzbdXHhQYY8PxhiTCNP3IRz3M6IvavOf6Y4hQ,284
167
+ near_jsonrpc_models/json_rpc_request_for_validators.py,sha256=DwGFxilE2ckAptxdzwnoTj3dv3IbGTei9X1XJstbir8,275
168
+ near_jsonrpc_models/json_rpc_response_for_array_of_range_of_uint64_and_rpc_maintenance_windows_error.py,sha256=WYzvUThQHJOVbkzVXJkQE4scWLZeAM7yttG9XvQxUdQ,877
169
+ near_jsonrpc_models/json_rpc_response_for_array_of_validator_stake_view_and_rpc_validator_error.py,sha256=m3i_0bAesE18085I4SZU_jl89zJkI8ZiiCafmMYlnbA,844
170
+ near_jsonrpc_models/json_rpc_response_for_crypto_hash_and_rpc_transaction_error.py,sha256=Vk3TT39_NSGVnmzI8vR8bW_zZWu3Kq1kxx23qTsSZxY,730
171
+ near_jsonrpc_models/json_rpc_response_for_genesis_config_and_genesis_config_error.py,sha256=WcBCdnOvZPTby5bzOQpverTmIn2jbXiC_XlxaAIET7Y,746
172
+ near_jsonrpc_models/json_rpc_response_for_nullable_rpc_health_response_and_rpc_status_error.py,sha256=BSgsqUJxHxLnWL99kqynE1NHjqBme_i7z74Z6ljTEh4,794
173
+ near_jsonrpc_models/json_rpc_response_for_rpc_block_response_and_rpc_block_error.py,sha256=C1JKmJG0rkHNIm68hx8P15VDR2oDbI9kX_r__ubu5EA,731
174
+ near_jsonrpc_models/json_rpc_response_for_rpc_call_function_response_and_rpc_call_function_error.py,sha256=ljzotCxouH8Aio1qmUxj5J2Dm7slWnt7kGtcwOpM6o8,845
175
+ near_jsonrpc_models/json_rpc_response_for_rpc_chunk_response_and_rpc_chunk_error.py,sha256=j0gX5CFCBIhll8_fSE_WdQXWuSjJEljklwswq09MXMI,731
176
+ near_jsonrpc_models/json_rpc_response_for_rpc_client_config_response_and_rpc_client_config_error.py,sha256=uIQnKdTL7XiTOb0sEo00qeVL5GY5x8fV8x0QsZYQRjA,845
177
+ near_jsonrpc_models/json_rpc_response_for_rpc_congestion_level_response_and_rpc_chunk_error.py,sha256=QcVX-HPzLieQhvcL_5cFXPJh61bOJPE7RJyX6FtE8wg,812
178
+ near_jsonrpc_models/json_rpc_response_for_rpc_gas_price_response_and_rpc_gas_price_error.py,sha256=RcF7BCWeLO0xKqilIgoXeQN15TgJSAmQjFoBlURpT9s,781
179
+ near_jsonrpc_models/json_rpc_response_for_rpc_light_client_block_proof_response_and_rpc_light_client_proof_error.py,sha256=rk0ThQpb-VfcYD9cMZQNFiC2Ejw9U-pLT-_b8FE0K1Q,952
180
+ near_jsonrpc_models/json_rpc_response_for_rpc_light_client_execution_proof_response_and_rpc_light_client_proof_error.py,sha256=PC1OCXBTP3PKYLFKhdZRCT7ZHEm4S3QqIXkuvfstLP0,984
181
+ near_jsonrpc_models/json_rpc_response_for_rpc_light_client_next_block_response_and_rpc_light_client_next_block_error.py,sha256=szQyi6jm3rwq9nN4jqICxAm4wBY0HhjZHAE8byZyFLs,977
182
+ near_jsonrpc_models/json_rpc_response_for_rpc_network_info_response_and_rpc_network_info_error.py,sha256=01oD9266pFcHh8HwsBkAYMlnNmOIIU4vT7zaFSYxkyo,829
183
+ near_jsonrpc_models/json_rpc_response_for_rpc_protocol_config_response_and_rpc_protocol_config_error.py,sha256=9b9cqkkPvrBCcmXtqwKWQnw5BnS5Wa9L4BPOL0WZQX0,877
184
+ near_jsonrpc_models/json_rpc_response_for_rpc_query_response_and_rpc_query_error.py,sha256=tHGMmt_KBhyvt9eldANhNDmwIY3GxjCf6Xn7uXcZ16M,731
185
+ near_jsonrpc_models/json_rpc_response_for_rpc_receipt_response_and_rpc_receipt_error.py,sha256=PG_LYqEhOfFtazxQrxtJuu7acEvoQdTHSR4dm-fp8jU,763
186
+ near_jsonrpc_models/json_rpc_response_for_rpc_split_storage_info_response_and_rpc_split_storage_info_error.py,sha256=vREJ7PcIXjqkPVY6PqhW0nbwnP081lIU8yAgVuiQRIU,911
187
+ near_jsonrpc_models/json_rpc_response_for_rpc_state_changes_in_block_by_type_response_and_rpc_state_changes_error.py,sha256=2tG-IPsR_UxsnOtrn8rBglZUfK9QMG-rKw1EBsQfncw,953
188
+ near_jsonrpc_models/json_rpc_response_for_rpc_state_changes_in_block_response_and_rpc_state_changes_error.py,sha256=MbfFItdhCULdyzs0-FTqqzjDdQTUFEfwMq0HIvINjJw,903
189
+ near_jsonrpc_models/json_rpc_response_for_rpc_status_response_and_rpc_status_error.py,sha256=z1b2zMX-36pvbDZXg7XZ3N1ewbhLsn9dgBpMuLs0BnQ,747
190
+ near_jsonrpc_models/json_rpc_response_for_rpc_transaction_response_and_rpc_transaction_error.py,sha256=wLHwvxjvP08w7RPMxLbaowxeMUdBUuqvG-qJMdRDnxU,827
191
+ near_jsonrpc_models/json_rpc_response_for_rpc_validator_response_and_rpc_validator_error.py,sha256=KaLOk9kwCefAKLPe12HfcjChw_-hfI07kdgndYWfebc,795
192
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_access_key_list_response_and_rpc_view_access_key_list_error.py,sha256=sinJerRwlzDerg3E1MM-BTOeBET3DF06B_ECzEfbbOw,929
193
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_access_key_response_and_rpc_view_access_key_error.py,sha256=bVjNrPSrie2IqjMFcXacHRmlC-Qf0_xK5QEl5QZ1-pk,863
194
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_account_response_and_rpc_view_account_error.py,sha256=F4fToYyoOKjOzsrlQpQAwj_S__4cSa5CBZo8T1uq1jY,829
195
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_code_response_and_rpc_view_code_error.py,sha256=Dx5JdR9S-T-5S86KzK7XCjvnQRqWnSXCwY9gpVcDrz8,781
196
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_gas_key_list_response_and_rpc_view_gas_key_list_error.py,sha256=UAv3pXQogWRcxtVhWqguqC2Nl-kNmGj6Cf8hHEnnBpg,881
197
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_gas_key_response_and_rpc_view_gas_key_error.py,sha256=-qSiOpW49eE8I2Nkk79wTaPqzPFZgh_Vm9x2osmzL70,815
198
+ near_jsonrpc_models/json_rpc_response_for_rpc_view_state_response_and_rpc_view_state_error.py,sha256=o40QHgzsN-L9fTMiNSiFfAj4qrQorwOXrBjwc0_7HbU,797
199
+ near_jsonrpc_models/known_producer_view.py,sha256=quTZlUD1fXTgKAnFOuw_5iA2EuKQ3bsKmIxRX5ya0Lk,443
200
+ near_jsonrpc_models/light_client_block_lite_view.py,sha256=yDNDSjXQsE4FltyuB8qikK3oC8Pf-6zZR6bvUl0L1jc,322
201
+ near_jsonrpc_models/limit_config.py,sha256=If2zTTJQAM0-gbNImAs3pNOsFkMICmyw0yL_aCaFGMo,4791
202
+ near_jsonrpc_models/log_summary_style.py,sha256=Hvwl9dq5F14eTZ4ULvx2BRTCa_hvQUUOtZA_EB2LrPc,133
203
+ near_jsonrpc_models/merkle_path_item.py,sha256=ENmj9amT3P-MJuAVhodx8aL_7pseaBePEEH5F_SGr0o,219
204
+ near_jsonrpc_models/method_resolve_error.py,sha256=HCFgF1Dlwoey7s2tp9io-8PDkCr7Rf7M23ZczT95mtI,179
205
+ near_jsonrpc_models/missing_trie_value.py,sha256=naD7aQHQPNtaDgEQncZsVQuraOVfSaugrMNfv1GDIDA,264
206
+ near_jsonrpc_models/missing_trie_value_context.py,sha256=QG42WqwNP0Kf-7pEJn70RWrTkkTYnHG6Wz2T5QOvjr0,581
207
+ near_jsonrpc_models/mutable_config_value.py,sha256=vzxdypOPZ8952-tyVzCmbc2JoWPZQioPPklqUVWlvUo,116
208
+ near_jsonrpc_models/near_gas.py,sha256=7dk5FYuco2_PIQzvXDmnDMDH9uFJSrA47z6KZWnXhJE,167
209
+ near_jsonrpc_models/near_token.py,sha256=gnJLUWR3aFqI8YndjpsGZwlauAjIFd_yFMC74mh22FM,107
210
+ near_jsonrpc_models/network_info_view.py,sha256=kX23PWEXTqc_lYtaoFWRv3viIQA7sNF1MU7SmLNJSOY,684
211
+ near_jsonrpc_models/next_epoch_validator_info.py,sha256=tUCWgN0kRqPxxVtd_dz21MylH6j3VFHtseFKD7iGBPE,405
212
+ near_jsonrpc_models/non_delegate_action.py,sha256=vZ4zh5GUzbKgmq8I3zCDws1jXoinZyeHIW28sE2vu0A,3430
213
+ near_jsonrpc_models/peer_id.py,sha256=EOsT6bLBftWRIWjPNSn7uk7k6Z30m-XecvPnPENtSKU,108
214
+ near_jsonrpc_models/peer_info_view.py,sha256=hsKC9dtBw8CNQZ6eDB40DuKs5us4I3H1AfTpKozDEpQ,1054
215
+ near_jsonrpc_models/prepare_error.py,sha256=PyW8cwShQNPl4qzBcFXSyDtmvKMgifDb7751fUwC5I8,1214
216
+ near_jsonrpc_models/protocol_version_check_config.py,sha256=Mtdx7eloNHUCVPGJs6tzxkV6U8laHDA-iMYGdXzK0no,253
217
+ near_jsonrpc_models/public_key.py,sha256=6z-PLiupmWsQq8vqwEd70_hQZQROGjG8JTkm7xXInh8,107
218
+ near_jsonrpc_models/range_of_uint64.py,sha256=16osiKadU6oXlC1cuPyRI6sajzk37YC7FkX3iYFdXBQ,189
219
+ near_jsonrpc_models/receipt_enum_view.py,sha256=u71PcrUrTxhRO-DsPiFYTJT6t4s_kFlHiq_1EPhB7EQ,1741
220
+ near_jsonrpc_models/receipt_validation_error.py,sha256=QkSgBrY__7HkMIdc1cYn7G9R3umXK4K77jIlvEsaQ8E,3645
221
+ near_jsonrpc_models/receipt_view.py,sha256=JhdsXQq64tm5y1elTr45ruXgr1e_tqNUsMR7xZUQCx0,434
222
+ near_jsonrpc_models/rpc_block_error.py,sha256=Ix7oSMj1ZxEroA1rkqaCWGuDnSGzTlMQ4ZILjkuS8PY,676
223
+ near_jsonrpc_models/rpc_block_request.py,sha256=wkfAwxHNXEfFjBpF7ie2-rpuJcP2SftTx5Pf9kqifu8,597
224
+ near_jsonrpc_models/rpc_block_response.py,sha256=gptLqeHOCehx_FtuJS0GMuNU0GT8pC9SFua4l_eFfEY,408
225
+ near_jsonrpc_models/rpc_call_function_error.py,sha256=rkTwBv_AFICoLZtcDDebsCLZ5qfyH_f8P3Zwxp8JmHs,2402
226
+ near_jsonrpc_models/rpc_call_function_request.py,sha256=8pK6Ad1xgPQoiCCl9m7dIFvahA3YKw6Tv8mvqv7oWh0,989
227
+ near_jsonrpc_models/rpc_call_function_response.py,sha256=Jj4SxY-vNhyYyFpN0MhyE86-CddNalCQZpt_WeC9GcY,368
228
+ near_jsonrpc_models/rpc_chunk_error.py,sha256=FJxBUzLo8AMWQ3LEo5yXvc05UMAiVnk7zZ-qDh3NuS8,1121
229
+ near_jsonrpc_models/rpc_chunk_request.py,sha256=La-itvafyFTAkhRufDH1YripY_jfDHkcv2l3zVQr08o,532
230
+ near_jsonrpc_models/rpc_chunk_response.py,sha256=vwUI9cp9X37R5gxwYzywo1l3rSzh9BAkdW_IVcfQWV8,474
231
+ near_jsonrpc_models/rpc_client_config_error.py,sha256=gEdgg1h2HDSm57jWDT0oN2KKymqvzOcdSzrIIcohL2c,424
232
+ near_jsonrpc_models/rpc_client_config_request.py,sha256=VTQ_hU6uz9msvcrd5izwn7Ak7DAyXq0DiDU0uC2e5bk,121
233
+ near_jsonrpc_models/rpc_client_config_response.py,sha256=-LWhtNpbMu0ERS0ckdKqeCVc3qWfl15DH1wqiH13jis,12215
234
+ near_jsonrpc_models/rpc_congestion_level_request.py,sha256=iYtMwIIOsTeabl3Pu1kR3CXI7CoV4OwAaEoUnf0DPwE,582
235
+ near_jsonrpc_models/rpc_congestion_level_response.py,sha256=VKMgUAOzHoxkBfANs2sVyT-pZLQts2jNxdpH5D_aKEE,106
236
+ near_jsonrpc_models/rpc_gas_price_error.py,sha256=O6BO4NKrt44Fho0RFcanfc6OAkqHjYZqaiq5chw4V8c,589
237
+ near_jsonrpc_models/rpc_gas_price_request.py,sha256=kQ9c-VHb-QXRlIRgibx4z_enXudZ47cdeOBPKVJbYu8,155
238
+ near_jsonrpc_models/rpc_gas_price_response.py,sha256=MQ3zAO07dnss92pZQo0139x-XNBY4GFhPJKT1TyOMyI,149
239
+ near_jsonrpc_models/rpc_health_request.py,sha256=Z9YBZYq9khWq7bozXsMm5KIYanzPVNzPDu779NUHZXI,115
240
+ near_jsonrpc_models/rpc_health_response.py,sha256=nwOp_Gs3yW9vhPH48O-PoxftWX_FeHyMhJMmeQmR_Dk,116
241
+ near_jsonrpc_models/rpc_known_producer.py,sha256=2-IjbJuj1jcIP6gBbR6DzG25gQr9vWg_oeUWWqgTaUY,242
242
+ near_jsonrpc_models/rpc_light_client_block_proof_request.py,sha256=XbmDm65mkDW7O-7jPm0Pkj8erddUOWdbxWucx0jjJdo,199
243
+ near_jsonrpc_models/rpc_light_client_block_proof_response.py,sha256=ZF1c3Ta_ZS5MXS2TnJiHip3tmEvDrniXeuhfjsSo6DU,344
244
+ near_jsonrpc_models/rpc_light_client_execution_proof_request.py,sha256=ec5y9ZmvpeUDCMwIFtbY37ADgcMPdvsoEn3hNXpgD10,755
245
+ near_jsonrpc_models/rpc_light_client_execution_proof_response.py,sha256=gpOVjbUiNRUaDyF8QIx1zvI60DLjFYC1i56b-Gk63bk,529
246
+ near_jsonrpc_models/rpc_light_client_next_block_error.py,sha256=t3_OqNNATRrRT0lKnjen2Ce_-Aazl0Z6GxOsjPqXWLU,1022
247
+ near_jsonrpc_models/rpc_light_client_next_block_request.py,sha256=Rt_Io6vw-DO7b_IobK23q0ldMueH3oCkgbheL6znCw0,169
248
+ near_jsonrpc_models/rpc_light_client_next_block_response.py,sha256=gP3lmqKrt7nVlNDSzK6UFpCBEqsOEFE5WBbSU-3ExAk,901
249
+ near_jsonrpc_models/rpc_light_client_proof_error.py,sha256=8H4w68yg8W6vbSiqRnf_iLGC2MMbX_n6rVO6-XFFcD4,2097
250
+ near_jsonrpc_models/rpc_maintenance_windows_error.py,sha256=zfMF2GRQXEt1rVZLdzk8_cb3Z43ggTNJdKnNTolmO3g,454
251
+ near_jsonrpc_models/rpc_maintenance_windows_request.py,sha256=Da79_oAjrYWI1dHesCJP981s7iOJGo_9nVD6LQOwXzQ,159
252
+ near_jsonrpc_models/rpc_network_info_error.py,sha256=h6ysTw8smL5x3KxSC3vDPjD5cUHnGrnUcpZhJ7THNGM,419
253
+ near_jsonrpc_models/rpc_network_info_request.py,sha256=8hCt2bP_0uR0wkuqW7Md3xWaQQp21BXzcrsflG8-q_Q,120
254
+ near_jsonrpc_models/rpc_network_info_response.py,sha256=nWtu1D-jJ0WErED8YFs_65ofO0pv4BYyg22YOm8AXrQ,628
255
+ near_jsonrpc_models/rpc_peer_info.py,sha256=AXPO3xyDjOD1mFu-MupRVfI5GI27lI5S01CCu2XIbHQ,246
256
+ near_jsonrpc_models/rpc_protocol_config_error.py,sha256=lTqrN1RueMoBkeUv6YIGWhwWSBKbYtm_D8Z1hl9i8RE,631
257
+ near_jsonrpc_models/rpc_protocol_config_request.py,sha256=C-E7z27aWRWBpOL4T4gKLiTOsDm0BfO4OeY5SscMU6w,660
258
+ near_jsonrpc_models/rpc_protocol_config_response.py,sha256=o2GzUjX3wjRxMzeoAt1mmYk0zNlm0gIpfYqDX98wido,5641
259
+ near_jsonrpc_models/rpc_query_error.py,sha256=rakXPOCvqZgBatfH6d-VM2ofFtIwuUi68wE_Wvrk43c,4475
260
+ near_jsonrpc_models/rpc_query_request.py,sha256=8fILIT1OvYIgaqgN-W1-MiX2RRru_eDlhEoUZl5e_R0,7246
261
+ near_jsonrpc_models/rpc_query_response.py,sha256=vO8DjcmqYl2kd0j7T5LqZP04i-Wr4jnkfxImj93gY0c,2024
262
+ near_jsonrpc_models/rpc_receipt_error.py,sha256=XeMkRBYg4gdTEreJ3aNvgERjdJJLXF3bkeWIhDX_eGI,695
263
+ near_jsonrpc_models/rpc_receipt_request.py,sha256=IZtUSM5T-AdmYR3fy3IsaHeN-etjMaBepiHlU79LySU,151
264
+ near_jsonrpc_models/rpc_receipt_response.py,sha256=v8u1DqJBwakC-cmwVdgE1obF7Nl9BNYNgmRhcAw8ZQI,441
265
+ near_jsonrpc_models/rpc_request_validation_error_kind.py,sha256=6I_jaRiStyg6_xjtTmDz7sCJ56fddSH86vjpaPV5OUk,746
266
+ near_jsonrpc_models/rpc_send_transaction_request.py,sha256=suphigwNOehnAY3227raIfR9T1zkBB0_Gvvphr75YOY,391
267
+ near_jsonrpc_models/rpc_split_storage_info_error.py,sha256=IiiQ1WyKmwOFMwykdK-usEW3b5yZxd9ZSFyxs0tubu4,444
268
+ near_jsonrpc_models/rpc_split_storage_info_request.py,sha256=ESgInQo_aOwjY95MZ7h3-v0ureZd4AxMAsL4yN4g1DU,87
269
+ near_jsonrpc_models/rpc_split_storage_info_response.py,sha256=-g382ZESVTCXYdbvBpIu-B_dn4QEbaqclFFo2RlIQiE,407
270
+ near_jsonrpc_models/rpc_state_changes_error.py,sha256=j72S18LOrMtEYkDK6TjzFWjTJBrMfe-Fpo1YDKUQQZQ,739
271
+ near_jsonrpc_models/rpc_state_changes_in_block_by_type_request.py,sha256=reu0etpy2bJbObv_TT7ZkyDmF_oVAVH8cV2d3B_hWYg,6278
272
+ near_jsonrpc_models/rpc_state_changes_in_block_by_type_response.py,sha256=PB2DRPFarx8W3ACWAQ3hLiqa-vYyCEon0ZqaGB95cvk,308
273
+ near_jsonrpc_models/rpc_state_changes_in_block_request.py,sha256=2rBHNYa07OlY1Y87_je_haLAE6cYsF4BPCytnh9PYL0,695
274
+ near_jsonrpc_models/rpc_state_changes_in_block_response.py,sha256=FuoSTN83mDMNDWaILySljZkn4VuAHfgw8C2DNggpDyA,318
275
+ near_jsonrpc_models/rpc_status_error.py,sha256=ekUPd7FKeBf8goYZYiQk6NNVC22BaZkc3ba_8_foglU,1165
276
+ near_jsonrpc_models/rpc_status_request.py,sha256=AzGeQ34Tdpxsond8X9nvs9lbhQ4ewIZiqEACgC6VHHo,115
277
+ near_jsonrpc_models/rpc_status_response.py,sha256=qaZ5ES8rfDENmnjT7cSBcnxvriqd284levxBQzbgadc,1647
278
+ near_jsonrpc_models/rpc_transaction_error.py,sha256=FvAaWA8kLO7-IxdkM6Ag1Qd0xzZlmIPXtz653yY98hs,1486
279
+ near_jsonrpc_models/rpc_transaction_response.py,sha256=u-xeR_w18aSIr4iCujNn5r9zGKtZKV9VJ9Kp2gzO6Ao,804
280
+ near_jsonrpc_models/rpc_transaction_status_request.py,sha256=ORKExOqeplZGjGdZsR_Fgkk-3t3YoswGkAHmrxrn-h4,816
281
+ near_jsonrpc_models/rpc_validator_error.py,sha256=KXdAammM2dK_ZG_s5jOVB1tidqEWqPr7LNJ_TE78QuI,676
282
+ near_jsonrpc_models/rpc_validator_request.py,sha256=junNkex-fqHewHwwMGhd6JCiE2mD8fcPlHKgJD0sbPE,561
283
+ near_jsonrpc_models/rpc_validator_response.py,sha256=HaVtUKMu9RVMJmSHXaFkPfwntMbnmUXF0YS5yYFunU8,1200
284
+ near_jsonrpc_models/rpc_validators_ordered_request.py,sha256=v_Em40oixehWOBlmmu8R2zZbtudeWpDJVqMyAN_4V1Q,164
285
+ near_jsonrpc_models/rpc_view_access_key_error.py,sha256=k8I36Y2MhiiBc9Os0t-plCF-Sekc_4XsjvTjY3O68jc,2017
286
+ near_jsonrpc_models/rpc_view_access_key_list_error.py,sha256=gEnL3AIdyjdzd_IRaaZLvSwy-Q7UhCHpfJ1XVQYX80U,1674
287
+ near_jsonrpc_models/rpc_view_access_key_list_request.py,sha256=jNRpdDZw58CIeJsfhuuynnE7zNsQ4XKc2bhUaRJR_to,812
288
+ near_jsonrpc_models/rpc_view_access_key_list_response.py,sha256=UiZg5fkaPawBYpXdJPykA4SLAQKq6VJJSRFl3wDGot0,400
289
+ near_jsonrpc_models/rpc_view_access_key_request.py,sha256=Pj53B3SzEkeTTGWwveDgA0UV2KCDAtMwsZddaOAP1rg,915
290
+ near_jsonrpc_models/rpc_view_access_key_response.py,sha256=v23paSn5j5aSmVOM7qcYJ13J1OjXvagClaNw4MXz2sI,470
291
+ near_jsonrpc_models/rpc_view_account_error.py,sha256=qHeBnfy5p3YlbhnkGlqVrEoHouC473j6GgD2EVahPuU,1572
292
+ near_jsonrpc_models/rpc_view_account_request.py,sha256=0X_TQVAof7St6K-O7pbFyG7wN1_e3ly_bnuzr8Hxc9o,770
293
+ near_jsonrpc_models/rpc_view_account_response.py,sha256=Xotp66jREaKb_XlbhAxaDr3iqXGK0-TyoKr5DBeZjb0,702
294
+ near_jsonrpc_models/rpc_view_code_error.py,sha256=X0gHeS-U3ww-ObcskfAHkfi0ukW6kamhkMYM0OrSM8k,1858
295
+ near_jsonrpc_models/rpc_view_code_request.py,sha256=NKM5II4RQLUrBpF8a9aUOEwIys5NiOevFPGfclb6GQg,749
296
+ near_jsonrpc_models/rpc_view_code_response.py,sha256=6T981iq3T6m4Cp_CPUEcEp7zW6K-ke4RjNzeve33LMk,315
297
+ near_jsonrpc_models/rpc_view_gas_key_error.py,sha256=pIlfQebLhCvJ2lxS2gVRRMb33efIASHKCMBRgnGmToY,1939
298
+ near_jsonrpc_models/rpc_view_gas_key_list_error.py,sha256=k-q5zsTMi4HHAaHByx1wd0WLX7qphGf2ySs6-MFsAu0,1623
299
+ near_jsonrpc_models/rpc_view_gas_key_list_request.py,sha256=N-ybCEMnX0Lj2rdyBEY4MBgYXfjY5zSMMpHOLZyBJbU,791
300
+ near_jsonrpc_models/rpc_view_gas_key_list_response.py,sha256=DYB6oB2jYZJiIexrqjqGPkl4XJWk8TOyn7RQnD2n9UQ,363
301
+ near_jsonrpc_models/rpc_view_gas_key_request.py,sha256=iu8lY8TlAgG4jMPD3W8EfSiIRf2Umdsctk8ui3l5elg,894
302
+ near_jsonrpc_models/rpc_view_gas_key_response.py,sha256=Wnymph7cwmVIJITV-UgECT825EcSpH19rRTrm9gjeq0,562
303
+ near_jsonrpc_models/rpc_view_state_error.py,sha256=XM-6-poRLwcSdfqwbxVeXQRvevV-erHF8NCIvPYbjNw,1915
304
+ near_jsonrpc_models/rpc_view_state_request.py,sha256=QZjrAJSaT5gc-oq3G-5HqKBcuiD4OMTpnnOhS4B1mC8,987
305
+ near_jsonrpc_models/rpc_view_state_response.py,sha256=GgZv8V6m8lrx-lV7tbteHNrT9UiculhU2SNzOYQSnpE,432
306
+ near_jsonrpc_models/runtime_config_view.py,sha256=oh5_sX_Z7yy3eDHpRHWjW7pgv6LWbZeq28NQSbWuAu8,1797
307
+ near_jsonrpc_models/runtime_fees_config_view.py,sha256=stmMEjLjoEn87xiQ4Ois_BGSw_Nbkgrjpo2WjH5n57g,1581
308
+ near_jsonrpc_models/shard_id.py,sha256=BGs5Po_GSyiHz9jfTNUc6gwMg1tcXH1AJ4IMz-1SMAc,572
309
+ near_jsonrpc_models/shard_layout.py,sha256=cQn_buHJBpUINWXwYS1HbKo_vZvFECpRkyiLt3vc4vM,1371
310
+ near_jsonrpc_models/shard_layout_v0.py,sha256=i15ZmJ6mb9r1J8Al9j5ID6USH7O6Ko-rOM6-W-zmcgY,691
311
+ near_jsonrpc_models/shard_layout_v1.py,sha256=XpgXIkrSZqbO7NdvVnyDXbhVZj1OIbjdDbQ9Wuzyz-U,1134
312
+ near_jsonrpc_models/shard_layout_v2.py,sha256=ElCRrvL65C6ByKiNLHk2dwwBDpuaidhtKc8Jhs7TIjc,669
313
+ near_jsonrpc_models/shard_layout_v3.py,sha256=oUp7Rf05Ih_GYdfidjS6pm17poXHbgdECoNwd9TPuag,542
314
+ near_jsonrpc_models/shard_uid.py,sha256=V97Hg2KnEYSZ09e1x0iTU1QfjARw0gaYFzjVVKa1JlU,878
315
+ near_jsonrpc_models/signature.py,sha256=RDKsrVrhApco5QeV_CVC4fiu8BmPumxcOKVAqRDGHns,107
316
+ near_jsonrpc_models/signed_delegate_action.py,sha256=nvDGsVczg5tB0vBthoxM7BGhuafpbNGXCf77BvDk5b0,248
317
+ near_jsonrpc_models/signed_transaction.py,sha256=y1MhWDYQM-Pfyad2T1TkUshqeG4uQX0t9e2jx0qknak,115
318
+ near_jsonrpc_models/signed_transaction_view.py,sha256=v6joSKtANnrUqdY3kWhL295K7mxJpMBvp3T0TcvEiEQ,656
319
+ near_jsonrpc_models/slashed_validator.py,sha256=S0-BRM_6ye9NPlP9dwv2xFlTbLis7f2bbsUoa6_Xkjo,172
320
+ near_jsonrpc_models/stake_action.py,sha256=uQGmreww68WARsQmwpg3fVGoh1zzadJ69YYY7iHXh-I,412
321
+ near_jsonrpc_models/state_change_cause_view.py,sha256=0YUJk87gSlvQ6T-JGY7XLPA_xV5aq0B89TNZesf72Lk,1768
322
+ near_jsonrpc_models/state_change_kind_view.py,sha256=Z-MHUS8AExbFfbeFTm3R59RucQSoYtsr0xfxTbOb68c,962
323
+ near_jsonrpc_models/state_change_with_cause_view.py,sha256=aXRM3Fq2V7fvb4Ff9baPatBJ03JXqkJXUEPkAPJhN2I,4614
324
+ near_jsonrpc_models/state_item.py,sha256=s17-HpPeaDYhbTUywml4MhG6ptTgq9Ku1geMx8N7S34,317
325
+ near_jsonrpc_models/state_sync_config.py,sha256=Did7b1-Bt-eeWpHgJvGqmM1t2s7O0-XqTypWHEr6hjc,548
326
+ near_jsonrpc_models/status_sync_info.py,sha256=vPMJiA0As1X2bAwlJb_0R3ddw-nOMifRHv37r9WbGzw,658
327
+ near_jsonrpc_models/storage_error.py,sha256=D2lZZ66dakZlEFDqpKR1-9myv9hcQmmptsY3tP-qryo,2044
328
+ near_jsonrpc_models/storage_get_mode.py,sha256=ZOlz-eQtdi_sYHzIcDD3iJ4R8WFJQMjvomI1S8L8JfA,232
329
+ near_jsonrpc_models/storage_usage_config_view.py,sha256=cGXQQzDA0d0Ywba5XcZRX3BdvVP7n3gqg8HBDTpVv8w,419
330
+ near_jsonrpc_models/store_key.py,sha256=FNayfAyJR5dsRLRz5vfq_g9WFGpM-uqpvsygt2xGoNM,369
331
+ near_jsonrpc_models/store_value.py,sha256=kXH2PuP-hPjcSW6MT8pB1J958WabNDBxN3DHiPwzjZg,365
332
+ near_jsonrpc_models/strict_model.py,sha256=HtRUWZ-zNq1--zTBWL3QFXX27Ybw5x1qSWcmx7Sz8YA,125
333
+ near_jsonrpc_models/sync_checkpoint.py,sha256=PewZoRdfTopq4YllQmVem_SS5dAZeh1JlP3SAba12MI,145
334
+ near_jsonrpc_models/sync_concurrency.py,sha256=AISnogvAREvUqg4TzvUR500gjCO_qhP2ufRZacCaNvo,999
335
+ near_jsonrpc_models/sync_config.py,sha256=ayQ_--FALGaaiFg9AQPvaxK6bp6unUiv_onq3hKAxIU,772
336
+ near_jsonrpc_models/tier1proxy_view.py,sha256=2qR6_iLPA_WWhaEYWtCkXkE3N7cZyvWOz50cKdGjSdo,156
337
+ near_jsonrpc_models/tracked_shards_config.py,sha256=DBQnc2Qo5n4Jsf-U6PQEu57W0F8K-_OFeLqMKnaoePI,1630
338
+ near_jsonrpc_models/transfer_action.py,sha256=G8dvIsh_eKhSMM_28PHfGG-0oxJi3uftA3C8yyFxRKA,142
339
+ near_jsonrpc_models/transfer_to_gas_key_action.py,sha256=-A7e-PQVS7hdQH1Nz0xvPZ85NGMWOZYuOa5sQMaMj9c,229
340
+ near_jsonrpc_models/tx_execution_error.py,sha256=0-b7rXu-rI3m1tsUa2kALZLJsHfavB1hz3EfyvjCV1A,731
341
+ near_jsonrpc_models/tx_execution_status.py,sha256=qK0qw5dNS7l-qUBLSxNAlY5Im_poLgJQMLZ9qnmF5jA,920
342
+ near_jsonrpc_models/use_global_contract_action.py,sha256=lqU-18UhchsvlcC4idC96DZgHQjsjbY56qa3u9eEgk0,243
343
+ near_jsonrpc_models/validator_info.py,sha256=_U-kqvmaLzQ8dpBpGcxIBhmPDbtQelmNOGI_6Dqep1I,144
344
+ near_jsonrpc_models/validator_kickout_reason.py,sha256=U4mTC3dpvpAfcCrkqdjBSZpoxsf1TcO_Ku2IDTmcPR4,2892
345
+ near_jsonrpc_models/validator_kickout_view.py,sha256=Le6JTJTBZewxWqU70wvRCPhimB2OiF2_oNozHdhBYRY,266
346
+ near_jsonrpc_models/validator_stake_view.py,sha256=mUoKrCiAXUlbsdHj201l1jSKPSz_wEVqoLRG4SYVE1U,420
347
+ near_jsonrpc_models/validator_stake_view_v1.py,sha256=Se3zMf-yYtid6Uo7uW9jeW0JabaxuwPGmyy1ngOJL30,304
348
+ near_jsonrpc_models/version.py,sha256=bGB2g5mrJoYBuF6VfdE03NSgIvJjRaK2DMhUF8Xe0w4,202
349
+ near_jsonrpc_models/view_state_result.py,sha256=0wZaHc8UQ9PUshy1kDi0z266sGHPHc5WN77OgVB4pDM,261
350
+ near_jsonrpc_models/vmconfig_view.py,sha256=QeAQQ2kV67KQTCTKevbAn5h6jWYVUdJyfbZsvL_sIRI,2205
351
+ near_jsonrpc_models/vmkind.py,sha256=tCxyZlDaGn3bz-lThkbUj0oO6qxoQP7lGANMusstpC8,252
352
+ near_jsonrpc_models/wasm_trap.py,sha256=y0nay7ulaHOGpHPRnKIU0FWxHeWfwnrYiYvllLry3Mw,791
353
+ near_jsonrpc_models/witness_config_view.py,sha256=kTeYTx1mtk0IT6ary63awFk5hIGn8mS8UlOCMaqhr2Q,912
354
+ near_jsonrpc_client-1.0.5.dist-info/METADATA,sha256=ymLegryL1EdfPTkxD-xeNeeOrrmDFJTNJt7Xpox1wz0,304
355
+ near_jsonrpc_client-1.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
356
+ near_jsonrpc_client-1.0.5.dist-info/top_level.txt,sha256=uMGb9-6Ckd8WvQ5-m1l9mVFmM5lCORE6YybUIOimSuc,40
357
+ near_jsonrpc_client-1.0.5.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.