near-jsonrpc-client 1.0.23__py3-none-any.whl → 1.0.25__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.
- near_jsonrpc_client/api_methods_async.py +0 -22
- near_jsonrpc_client/api_methods_sync.py +0 -22
- {near_jsonrpc_client-1.0.23.dist-info → near_jsonrpc_client-1.0.25.dist-info}/METADATA +1 -1
- {near_jsonrpc_client-1.0.23.dist-info → near_jsonrpc_client-1.0.25.dist-info}/RECORD +27 -25
- {near_jsonrpc_client-1.0.23.dist-info → near_jsonrpc_client-1.0.25.dist-info}/WHEEL +1 -1
- near_jsonrpc_models/__init__.py +57 -84
- near_jsonrpc_models/access_key_permission.py +14 -1
- near_jsonrpc_models/access_key_permission_view.py +19 -1
- near_jsonrpc_models/action_error_kind.py +8 -4
- near_jsonrpc_models/action_view.py +8 -17
- near_jsonrpc_models/actions_validation_error.py +12 -8
- near_jsonrpc_models/block_header_view.py +4 -0
- near_jsonrpc_models/epoch_sync_config.py +0 -11
- near_jsonrpc_models/gas_key_info.py +8 -0
- near_jsonrpc_models/non_delegate_action.py +5 -9
- near_jsonrpc_models/receipt_view.py +1 -0
- near_jsonrpc_models/rpc_query_request.py +7 -22
- near_jsonrpc_models/rpc_query_response.py +2 -11
- near_jsonrpc_models/rpc_receipt_response.py +1 -0
- near_jsonrpc_models/rpc_state_changes_in_block_by_type_request.py +1 -31
- near_jsonrpc_models/runtime_config_view.py +0 -4
- near_jsonrpc_models/signed_transaction_view.py +2 -0
- near_jsonrpc_models/state_change_with_cause_view.py +1 -21
- near_jsonrpc_models/transfer_to_gas_key_action.py +4 -0
- near_jsonrpc_models/withdraw_from_gas_key_action.py +12 -0
- {near_jsonrpc_client-1.0.23.dist-info → near_jsonrpc_client-1.0.25.dist-info}/licenses/LICENSE +0 -0
- {near_jsonrpc_client-1.0.23.dist-info → near_jsonrpc_client-1.0.25.dist-info}/top_level.txt +0 -0
|
@@ -202,28 +202,6 @@ class APIMixinAsync:
|
|
|
202
202
|
params=params,
|
|
203
203
|
)
|
|
204
204
|
|
|
205
|
-
async def experimental_view_gas_key(self: NearBaseClientAsync, *, params: near_jsonrpc_models.RpcViewGasKeyRequest) -> near_jsonrpc_models.RpcViewGasKeyResponse:
|
|
206
|
-
"""
|
|
207
|
-
Returns information about a single gas key for given account.
|
|
208
|
-
High-level method: returns the result model or raises NearClientError/NearRpcError/NearHttpError.
|
|
209
|
-
"""
|
|
210
|
-
return await self._call(
|
|
211
|
-
request_model=near_jsonrpc_models.JsonRpcRequestForExperimentalViewGasKey,
|
|
212
|
-
response_model=near_jsonrpc_models.JsonRpcResponseForRpcViewGasKeyResponseAndRpcViewGasKeyError,
|
|
213
|
-
params=params,
|
|
214
|
-
)
|
|
215
|
-
|
|
216
|
-
async def experimental_view_gas_key_list(self: NearBaseClientAsync, *, params: near_jsonrpc_models.RpcViewGasKeyListRequest) -> near_jsonrpc_models.RpcViewGasKeyListResponse:
|
|
217
|
-
"""
|
|
218
|
-
Returns all gas keys for a given account.
|
|
219
|
-
High-level method: returns the result model or raises NearClientError/NearRpcError/NearHttpError.
|
|
220
|
-
"""
|
|
221
|
-
return await self._call(
|
|
222
|
-
request_model=near_jsonrpc_models.JsonRpcRequestForExperimentalViewGasKeyList,
|
|
223
|
-
response_model=near_jsonrpc_models.JsonRpcResponseForRpcViewGasKeyListResponseAndRpcViewGasKeyListError,
|
|
224
|
-
params=params,
|
|
225
|
-
)
|
|
226
|
-
|
|
227
205
|
async def experimental_view_state(self: NearBaseClientAsync, *, params: near_jsonrpc_models.RpcViewStateRequest) -> near_jsonrpc_models.RpcViewStateResponse:
|
|
228
206
|
"""
|
|
229
207
|
Returns the state (key-value pairs) of a contract based on the key prefix.
|
|
@@ -202,28 +202,6 @@ class APIMixinSync:
|
|
|
202
202
|
params=params,
|
|
203
203
|
)
|
|
204
204
|
|
|
205
|
-
def experimental_view_gas_key(self: NearBaseClientSync, *, params: near_jsonrpc_models.RpcViewGasKeyRequest) -> near_jsonrpc_models.RpcViewGasKeyResponse:
|
|
206
|
-
"""
|
|
207
|
-
Returns information about a single gas key for given account.
|
|
208
|
-
High-level method: returns the result model or raises NearClientError/NearRpcError/NearHttpError.
|
|
209
|
-
"""
|
|
210
|
-
return self._call(
|
|
211
|
-
request_model=near_jsonrpc_models.JsonRpcRequestForExperimentalViewGasKey,
|
|
212
|
-
response_model=near_jsonrpc_models.JsonRpcResponseForRpcViewGasKeyResponseAndRpcViewGasKeyError,
|
|
213
|
-
params=params,
|
|
214
|
-
)
|
|
215
|
-
|
|
216
|
-
def experimental_view_gas_key_list(self: NearBaseClientSync, *, params: near_jsonrpc_models.RpcViewGasKeyListRequest) -> near_jsonrpc_models.RpcViewGasKeyListResponse:
|
|
217
|
-
"""
|
|
218
|
-
Returns all gas keys for a given account.
|
|
219
|
-
High-level method: returns the result model or raises NearClientError/NearRpcError/NearHttpError.
|
|
220
|
-
"""
|
|
221
|
-
return self._call(
|
|
222
|
-
request_model=near_jsonrpc_models.JsonRpcRequestForExperimentalViewGasKeyList,
|
|
223
|
-
response_model=near_jsonrpc_models.JsonRpcResponseForRpcViewGasKeyListResponseAndRpcViewGasKeyListError,
|
|
224
|
-
params=params,
|
|
225
|
-
)
|
|
226
|
-
|
|
227
205
|
def experimental_view_state(self: NearBaseClientSync, *, params: near_jsonrpc_models.RpcViewStateRequest) -> near_jsonrpc_models.RpcViewStateResponse:
|
|
228
206
|
"""
|
|
229
207
|
Returns the state (key-value pairs) of a contract based on the key prefix.
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
near_jsonrpc_client/__init__.py,sha256=Sf6Vun5j7BU_gfA-VvoOCvxVcJUMfS9GCTSe0mHE76o,499
|
|
2
|
-
near_jsonrpc_client/api_methods_async.py,sha256=
|
|
3
|
-
near_jsonrpc_client/api_methods_sync.py,sha256=
|
|
2
|
+
near_jsonrpc_client/api_methods_async.py,sha256=aOjty8XHf73PRiQoj04pWH-7qqgz_rGcOQarXU-nifg,26335
|
|
3
|
+
near_jsonrpc_client/api_methods_sync.py,sha256=ShHWoVRZETb44ZEx-IbOr23cqA7vk-4loD_ufYVBUoU,25850
|
|
4
4
|
near_jsonrpc_client/base_client.py,sha256=xd4_o8-Z1wWFpRmkveYTzo1xoqUeQgw-1_oZzFogSIg,4334
|
|
5
5
|
near_jsonrpc_client/client.py,sha256=8gnY3tgUOGwUe4r8_mOedlLik8Zr6jxbNMVxwPlmHYo,453
|
|
6
6
|
near_jsonrpc_client/errors.py,sha256=pfhIENT9KxjYXTrEsN7dfFpcbnQj2yTFuLMPtDANdeQ,978
|
|
7
7
|
near_jsonrpc_client/transport.py,sha256=r92Zf7r_4ggU_fKp4pR9WyeaUOVOyLEW7xqz8Ny1buY,1012
|
|
8
|
-
near_jsonrpc_client-1.0.
|
|
9
|
-
near_jsonrpc_models/__init__.py,sha256=
|
|
8
|
+
near_jsonrpc_client-1.0.25.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
9
|
+
near_jsonrpc_models/__init__.py,sha256=nI_q4HwXD3s9YEYpt6NaMGXW0Bzl_EKXuIry3S6f5g0,223445
|
|
10
10
|
near_jsonrpc_models/access_key.py,sha256=Yxb_imR1x07BdrtSifGDbhKHfuvD8HYYa0iaj3g0V84,918
|
|
11
11
|
near_jsonrpc_models/access_key_creation_config_view.py,sha256=z3DIfoi6jojkk-S91Eyj15CM_0ZScyOOOmyWYqio4e0,466
|
|
12
12
|
near_jsonrpc_models/access_key_info_view.py,sha256=q7_s-gjgIztX69cVn7n3yD_MbNH0pfbZBXD5inhZz4I,315
|
|
13
13
|
near_jsonrpc_models/access_key_list.py,sha256=WfZ5P4LDnY79Z1ql9hNCt6cjZpcGvfsgo_ZX3l6Nm9Q,219
|
|
14
|
-
near_jsonrpc_models/access_key_permission.py,sha256=
|
|
15
|
-
near_jsonrpc_models/access_key_permission_view.py,sha256=
|
|
14
|
+
near_jsonrpc_models/access_key_permission.py,sha256=frZ2-gD93DdEkzMbbTn4_6ys_NIzZzMIGf8FIy-rk80,1382
|
|
15
|
+
near_jsonrpc_models/access_key_permission_view.py,sha256=0Voxj08-99GTXwp_JaETpX9SessAIx3X0200_0IGYms,1593
|
|
16
16
|
near_jsonrpc_models/access_key_view.py,sha256=Rhy9TotlyE-sCfK-W7vjBFJylHBSPyKU1ptk_a9GQtg,321
|
|
17
17
|
near_jsonrpc_models/account_creation_config_view.py,sha256=WMcheKdCaAAmN9OnzsyyT7cNbfYT3Ty5viUT8DMnskQ,572
|
|
18
18
|
near_jsonrpc_models/account_data_view.py,sha256=sYx76hlJuXlnTgruTdUjRmRPUZX5EUyvmUMaNoZTqSA,1369
|
|
@@ -23,9 +23,9 @@ near_jsonrpc_models/account_view.py,sha256=CuaA8_WCnglYtgaU4Qi0MXcbvYxDnJ2UBbwCW
|
|
|
23
23
|
near_jsonrpc_models/account_with_public_key.py,sha256=-kOKDVPFhrGnQhr08mGuu-LxCydjDck7Qw4Wvzr4jqw,269
|
|
24
24
|
near_jsonrpc_models/action_creation_config_view.py,sha256=rr4ce2DDAHOh3giM2iUDJ3bDUkYgNfbqEjdggY2Ycs4,1250
|
|
25
25
|
near_jsonrpc_models/action_error.py,sha256=2_RgIHSnPEcPlOGeDd1bldgA-OCGpoJjbkteRTDpoQo,483
|
|
26
|
-
near_jsonrpc_models/action_error_kind.py,sha256=
|
|
27
|
-
near_jsonrpc_models/action_view.py,sha256=
|
|
28
|
-
near_jsonrpc_models/actions_validation_error.py,sha256=
|
|
26
|
+
near_jsonrpc_models/action_error_kind.py,sha256=DcFzN3GN2LABfr6aeUh26PzLA9Ana2J8c4I2Dcect_I,9820
|
|
27
|
+
near_jsonrpc_models/action_view.py,sha256=stef2TqTzVIsEoMx7YRlH5ZaKeHCPOYeO9DHDbcP_go,4317
|
|
28
|
+
near_jsonrpc_models/actions_validation_error.py,sha256=rTHLmqyUS6JmcGnfsc5icH9mYotQLvtT4whkY-jb8Mg,8359
|
|
29
29
|
near_jsonrpc_models/add_gas_key_action.py,sha256=KlToqWU2ZEchHpN5qzizDpNcUVXG6xw6WWOpgqF-_vM,328
|
|
30
30
|
near_jsonrpc_models/add_key_action.py,sha256=NW3IX9Z5CcmPyzDNOlfuWN5V7F22SGXdpiTglY0EcTI,383
|
|
31
31
|
near_jsonrpc_models/bandwidth_request.py,sha256=EsiLcwYb5MKOoSV3Mfz8yIYk1CQ7RwUvNxKHwTSZ-xk,636
|
|
@@ -33,7 +33,7 @@ near_jsonrpc_models/bandwidth_request_bitmap.py,sha256=YKnoUJdx5zmNk2dQ7XHoQb9ym
|
|
|
33
33
|
near_jsonrpc_models/bandwidth_requests.py,sha256=adPARwVAk7jX7cOL-E21dsLcxskmbIsrF1DeWr9FntY,493
|
|
34
34
|
near_jsonrpc_models/bandwidth_requests_v1.py,sha256=nJTJjAm4lTsKQQBfnwQTWQZbd2x1_arfWUM4MQIp5vo,241
|
|
35
35
|
near_jsonrpc_models/block_header_inner_lite_view.py,sha256=5XqDBSz15LaBPDVREIWXjpuHfWXxq5xpxZ8ibVJ3oOo,871
|
|
36
|
-
near_jsonrpc_models/block_header_view.py,sha256=
|
|
36
|
+
near_jsonrpc_models/block_header_view.py,sha256=HBaJ4XqrmjuKg11MoZWEBuikkyuMWiA5nlwA51ACJhw,2257
|
|
37
37
|
near_jsonrpc_models/block_id.py,sha256=jpN10bCklVbQsYoKuMzFPcxUp1Hj-LUh1hqV8DLEsR8,387
|
|
38
38
|
near_jsonrpc_models/block_reference.py,sha256=ohtP58bBL3rPZeVfYnbX4BAze0Gh0EzcPau0lpQa_EU,669
|
|
39
39
|
near_jsonrpc_models/block_status_view.py,sha256=YSt1phZZaLgdswxKPOjDXUvQqb3kwBj0xB_-AWrGw8I,255
|
|
@@ -69,7 +69,7 @@ near_jsonrpc_models/dump_config.py,sha256=lsvXa66JMOUMtLnX7IfQ0FBFME2mM0mhTzj5MV
|
|
|
69
69
|
near_jsonrpc_models/duration_as_std_schema_provider.py,sha256=sQsSNAiZj61nVXe3SfCzXkJVQ7XQFpzoQPWa_KhU0M4,170
|
|
70
70
|
near_jsonrpc_models/dynamic_resharding_config_view.py,sha256=Srmi4HWILUTEEupmhqCV8SHbqNHRzT51_73eJb7EJ0Y,1033
|
|
71
71
|
near_jsonrpc_models/epoch_id.py,sha256=PhzEnxhfsr4KF3PJYYk62iXRWUhoyNQvFOBwzTWACeg,238
|
|
72
|
-
near_jsonrpc_models/epoch_sync_config.py,sha256=
|
|
72
|
+
near_jsonrpc_models/epoch_sync_config.py,sha256=1sX5U9FqOF6BCOxu6NgoTKV7oAqijJXHaUJrbjyqNdI,780
|
|
73
73
|
near_jsonrpc_models/error_wrapper_for_genesis_config_error.py,sha256=Fy8v8wHg2qkmjfNaAr64XPWY8VHt3yJjkcMtJdv1rp8,985
|
|
74
74
|
near_jsonrpc_models/error_wrapper_for_rpc_block_error.py,sha256=bCL1GFnF6wqh-2mKEbXmHUIJO-2mf79Y_vNNzfM1SqY,935
|
|
75
75
|
near_jsonrpc_models/error_wrapper_for_rpc_call_function_error.py,sha256=26xW6haXccsmi_lbRpuarl9IeqTrkkhuNLCgxIrBDrg,1006
|
|
@@ -112,6 +112,7 @@ near_jsonrpc_models/function_call_action.py,sha256=IOaklV8dJ66pgnw-uPouLas9JaoFA
|
|
|
112
112
|
near_jsonrpc_models/function_call_error.py,sha256=wOTjahySLaUSQqBS30QtaMLIfzCOkt-8BtM-Urewzm4,2059
|
|
113
113
|
near_jsonrpc_models/function_call_permission.py,sha256=6ARV0AJPH7r_GMMbOp_nebhcNNHyR7bMd7m7mL-m8aw,1221
|
|
114
114
|
near_jsonrpc_models/gas_key.py,sha256=moj05oUTq5T59gVnxecChVLV341GxZuijAHiyheC1EQ,712
|
|
115
|
+
near_jsonrpc_models/gas_key_info.py,sha256=_0PSczoYKvqsiqnCGcV_Nap-0LfifgAsX-fFjvy-YrY,210
|
|
115
116
|
near_jsonrpc_models/gas_key_info_view.py,sha256=6lc8mH-eEWBXUY5sLViqOQvAoC9cqCDAxjJvOZpfr4M,225
|
|
116
117
|
near_jsonrpc_models/gas_key_list.py,sha256=9whDu9_-16RK7EK7ObV6AC7MPa8XwqsPkNtXQX1Njds,182
|
|
117
118
|
near_jsonrpc_models/gas_key_view.py,sha256=nz0nwvQolrrX4xKP_E0qTAYV1yVZ4kWJaKu29zjTQVI,413
|
|
@@ -209,7 +210,7 @@ near_jsonrpc_models/near_gas.py,sha256=7dk5FYuco2_PIQzvXDmnDMDH9uFJSrA47z6KZWnXh
|
|
|
209
210
|
near_jsonrpc_models/near_token.py,sha256=gnJLUWR3aFqI8YndjpsGZwlauAjIFd_yFMC74mh22FM,107
|
|
210
211
|
near_jsonrpc_models/network_info_view.py,sha256=kX23PWEXTqc_lYtaoFWRv3viIQA7sNF1MU7SmLNJSOY,684
|
|
211
212
|
near_jsonrpc_models/next_epoch_validator_info.py,sha256=tUCWgN0kRqPxxVtd_dz21MylH6j3VFHtseFKD7iGBPE,405
|
|
212
|
-
near_jsonrpc_models/non_delegate_action.py,sha256=
|
|
213
|
+
near_jsonrpc_models/non_delegate_action.py,sha256=0zIabeeZIyZK9ZUN71KxwqGCAZt_JWFQoh6I--Je75o,3289
|
|
213
214
|
near_jsonrpc_models/peer_id.py,sha256=EOsT6bLBftWRIWjPNSn7uk7k6Z30m-XecvPnPENtSKU,108
|
|
214
215
|
near_jsonrpc_models/peer_info_view.py,sha256=hsKC9dtBw8CNQZ6eDB40DuKs5us4I3H1AfTpKozDEpQ,1054
|
|
215
216
|
near_jsonrpc_models/prepare_error.py,sha256=PyW8cwShQNPl4qzBcFXSyDtmvKMgifDb7751fUwC5I8,1214
|
|
@@ -218,7 +219,7 @@ near_jsonrpc_models/public_key.py,sha256=6z-PLiupmWsQq8vqwEd70_hQZQROGjG8JTkm7xX
|
|
|
218
219
|
near_jsonrpc_models/range_of_uint64.py,sha256=16osiKadU6oXlC1cuPyRI6sajzk37YC7FkX3iYFdXBQ,189
|
|
219
220
|
near_jsonrpc_models/receipt_enum_view.py,sha256=u71PcrUrTxhRO-DsPiFYTJT6t4s_kFlHiq_1EPhB7EQ,1741
|
|
220
221
|
near_jsonrpc_models/receipt_validation_error.py,sha256=QkSgBrY__7HkMIdc1cYn7G9R3umXK4K77jIlvEsaQ8E,3645
|
|
221
|
-
near_jsonrpc_models/receipt_view.py,sha256=
|
|
222
|
+
near_jsonrpc_models/receipt_view.py,sha256=1BKJCslEYkN11DKWgHMaENwU3wwUfTAS067s8S6T6Tg,489
|
|
222
223
|
near_jsonrpc_models/rpc_block_error.py,sha256=Ix7oSMj1ZxEroA1rkqaCWGuDnSGzTlMQ4ZILjkuS8PY,676
|
|
223
224
|
near_jsonrpc_models/rpc_block_request.py,sha256=wkfAwxHNXEfFjBpF7ie2-rpuJcP2SftTx5Pf9kqifu8,597
|
|
224
225
|
near_jsonrpc_models/rpc_block_response.py,sha256=gptLqeHOCehx_FtuJS0GMuNU0GT8pC9SFua4l_eFfEY,408
|
|
@@ -257,18 +258,18 @@ near_jsonrpc_models/rpc_protocol_config_error.py,sha256=lTqrN1RueMoBkeUv6YIGWhwW
|
|
|
257
258
|
near_jsonrpc_models/rpc_protocol_config_request.py,sha256=C-E7z27aWRWBpOL4T4gKLiTOsDm0BfO4OeY5SscMU6w,660
|
|
258
259
|
near_jsonrpc_models/rpc_protocol_config_response.py,sha256=o2GzUjX3wjRxMzeoAt1mmYk0zNlm0gIpfYqDX98wido,5641
|
|
259
260
|
near_jsonrpc_models/rpc_query_error.py,sha256=rakXPOCvqZgBatfH6d-VM2ofFtIwuUi68wE_Wvrk43c,4475
|
|
260
|
-
near_jsonrpc_models/rpc_query_request.py,sha256=
|
|
261
|
-
near_jsonrpc_models/rpc_query_response.py,sha256=
|
|
261
|
+
near_jsonrpc_models/rpc_query_request.py,sha256=2i1y92Q84KKpoGLzzeRm_4WxI8saUiusqRiYFX2eAgM,6693
|
|
262
|
+
near_jsonrpc_models/rpc_query_response.py,sha256=Vdk7IKcZRq7rXB77zYnR1gS3QASGm5SffF2nE1DkubI,1624
|
|
262
263
|
near_jsonrpc_models/rpc_receipt_error.py,sha256=XeMkRBYg4gdTEreJ3aNvgERjdJJLXF3bkeWIhDX_eGI,695
|
|
263
264
|
near_jsonrpc_models/rpc_receipt_request.py,sha256=IZtUSM5T-AdmYR3fy3IsaHeN-etjMaBepiHlU79LySU,151
|
|
264
|
-
near_jsonrpc_models/rpc_receipt_response.py,sha256=
|
|
265
|
+
near_jsonrpc_models/rpc_receipt_response.py,sha256=5N-5loXWujV83NddenpmhuH-m3JRGut_zyLWHIsp4HU,496
|
|
265
266
|
near_jsonrpc_models/rpc_request_validation_error_kind.py,sha256=6I_jaRiStyg6_xjtTmDz7sCJ56fddSH86vjpaPV5OUk,746
|
|
266
267
|
near_jsonrpc_models/rpc_send_transaction_request.py,sha256=suphigwNOehnAY3227raIfR9T1zkBB0_Gvvphr75YOY,391
|
|
267
268
|
near_jsonrpc_models/rpc_split_storage_info_error.py,sha256=IiiQ1WyKmwOFMwykdK-usEW3b5yZxd9ZSFyxs0tubu4,444
|
|
268
269
|
near_jsonrpc_models/rpc_split_storage_info_request.py,sha256=ESgInQo_aOwjY95MZ7h3-v0ureZd4AxMAsL4yN4g1DU,87
|
|
269
270
|
near_jsonrpc_models/rpc_split_storage_info_response.py,sha256=-g382ZESVTCXYdbvBpIu-B_dn4QEbaqclFFo2RlIQiE,407
|
|
270
271
|
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=
|
|
272
|
+
near_jsonrpc_models/rpc_state_changes_in_block_by_type_request.py,sha256=ZrL4RrGCE-IUBz_xhwLjyEvqtGw27nyZ4H6l_mfvSN8,4701
|
|
272
273
|
near_jsonrpc_models/rpc_state_changes_in_block_by_type_response.py,sha256=PB2DRPFarx8W3ACWAQ3hLiqa-vYyCEon0ZqaGB95cvk,308
|
|
273
274
|
near_jsonrpc_models/rpc_state_changes_in_block_request.py,sha256=2rBHNYa07OlY1Y87_je_haLAE6cYsF4BPCytnh9PYL0,695
|
|
274
275
|
near_jsonrpc_models/rpc_state_changes_in_block_response.py,sha256=FuoSTN83mDMNDWaILySljZkn4VuAHfgw8C2DNggpDyA,318
|
|
@@ -303,7 +304,7 @@ near_jsonrpc_models/rpc_view_gas_key_response.py,sha256=Wnymph7cwmVIJITV-UgECT82
|
|
|
303
304
|
near_jsonrpc_models/rpc_view_state_error.py,sha256=XM-6-poRLwcSdfqwbxVeXQRvevV-erHF8NCIvPYbjNw,1915
|
|
304
305
|
near_jsonrpc_models/rpc_view_state_request.py,sha256=QZjrAJSaT5gc-oq3G-5HqKBcuiD4OMTpnnOhS4B1mC8,987
|
|
305
306
|
near_jsonrpc_models/rpc_view_state_response.py,sha256=GgZv8V6m8lrx-lV7tbteHNrT9UiculhU2SNzOYQSnpE,432
|
|
306
|
-
near_jsonrpc_models/runtime_config_view.py,sha256=
|
|
307
|
+
near_jsonrpc_models/runtime_config_view.py,sha256=ehotukdyOy_m1NAofXcQp7YDZXZgmsxe5FwbZeWzpeY,1326
|
|
307
308
|
near_jsonrpc_models/runtime_fees_config_view.py,sha256=stmMEjLjoEn87xiQ4Ois_BGSw_Nbkgrjpo2WjH5n57g,1581
|
|
308
309
|
near_jsonrpc_models/shard_id.py,sha256=BGs5Po_GSyiHz9jfTNUc6gwMg1tcXH1AJ4IMz-1SMAc,572
|
|
309
310
|
near_jsonrpc_models/shard_layout.py,sha256=cQn_buHJBpUINWXwYS1HbKo_vZvFECpRkyiLt3vc4vM,1371
|
|
@@ -315,12 +316,12 @@ near_jsonrpc_models/shard_uid.py,sha256=V97Hg2KnEYSZ09e1x0iTU1QfjARw0gaYFzjVVKa1
|
|
|
315
316
|
near_jsonrpc_models/signature.py,sha256=RDKsrVrhApco5QeV_CVC4fiu8BmPumxcOKVAqRDGHns,107
|
|
316
317
|
near_jsonrpc_models/signed_delegate_action.py,sha256=nvDGsVczg5tB0vBthoxM7BGhuafpbNGXCf77BvDk5b0,248
|
|
317
318
|
near_jsonrpc_models/signed_transaction.py,sha256=y1MhWDYQM-Pfyad2T1TkUshqeG4uQX0t9e2jx0qknak,115
|
|
318
|
-
near_jsonrpc_models/signed_transaction_view.py,sha256=
|
|
319
|
+
near_jsonrpc_models/signed_transaction_view.py,sha256=LQev4YfDu-NlYL_8Zt39FgYcBIxHqHamqBbm2BAzOpg,770
|
|
319
320
|
near_jsonrpc_models/slashed_validator.py,sha256=S0-BRM_6ye9NPlP9dwv2xFlTbLis7f2bbsUoa6_Xkjo,172
|
|
320
321
|
near_jsonrpc_models/stake_action.py,sha256=uQGmreww68WARsQmwpg3fVGoh1zzadJ69YYY7iHXh-I,412
|
|
321
322
|
near_jsonrpc_models/state_change_cause_view.py,sha256=366L6NI8vThzQHYya8UcORxIS2o3czoG_QRZY6PkFGo,2020
|
|
322
323
|
near_jsonrpc_models/state_change_kind_view.py,sha256=vHRm-vlzk0rflryZxmD0nWkRLrMTOKayP75Ray4qP1Y,994
|
|
323
|
-
near_jsonrpc_models/state_change_with_cause_view.py,sha256=
|
|
324
|
+
near_jsonrpc_models/state_change_with_cause_view.py,sha256=tMTtfqt7VtZmzs-epoQUGZuj1_2ZorHiJyQYa86RfhU,4201
|
|
324
325
|
near_jsonrpc_models/state_item.py,sha256=s17-HpPeaDYhbTUywml4MhG6ptTgq9Ku1geMx8N7S34,317
|
|
325
326
|
near_jsonrpc_models/state_sync_config.py,sha256=Did7b1-Bt-eeWpHgJvGqmM1t2s7O0-XqTypWHEr6hjc,548
|
|
326
327
|
near_jsonrpc_models/status_sync_info.py,sha256=vPMJiA0As1X2bAwlJb_0R3ddw-nOMifRHv37r9WbGzw,658
|
|
@@ -336,7 +337,7 @@ near_jsonrpc_models/sync_config.py,sha256=ayQ_--FALGaaiFg9AQPvaxK6bp6unUiv_onq3h
|
|
|
336
337
|
near_jsonrpc_models/tier1proxy_view.py,sha256=2qR6_iLPA_WWhaEYWtCkXkE3N7cZyvWOz50cKdGjSdo,156
|
|
337
338
|
near_jsonrpc_models/tracked_shards_config.py,sha256=DBQnc2Qo5n4Jsf-U6PQEu57W0F8K-_OFeLqMKnaoePI,1630
|
|
338
339
|
near_jsonrpc_models/transfer_action.py,sha256=G8dvIsh_eKhSMM_28PHfGG-0oxJi3uftA3C8yyFxRKA,142
|
|
339
|
-
near_jsonrpc_models/transfer_to_gas_key_action.py,sha256
|
|
340
|
+
near_jsonrpc_models/transfer_to_gas_key_action.py,sha256=63qy0_Lo7AXU-61C6qFReZ2bcqcPG7YdaNk07adhk1w,365
|
|
340
341
|
near_jsonrpc_models/tx_execution_error.py,sha256=0-b7rXu-rI3m1tsUa2kALZLJsHfavB1hz3EfyvjCV1A,731
|
|
341
342
|
near_jsonrpc_models/tx_execution_status.py,sha256=qK0qw5dNS7l-qUBLSxNAlY5Im_poLgJQMLZ9qnmF5jA,920
|
|
342
343
|
near_jsonrpc_models/use_global_contract_action.py,sha256=lqU-18UhchsvlcC4idC96DZgHQjsjbY56qa3u9eEgk0,243
|
|
@@ -350,8 +351,9 @@ near_jsonrpc_models/view_state_result.py,sha256=0wZaHc8UQ9PUshy1kDi0z266sGHPHc5W
|
|
|
350
351
|
near_jsonrpc_models/vmconfig_view.py,sha256=LiW1t0jqnCiSdb8uuUBMaGzGg2NAudUo9kcOIg0hFfE,2073
|
|
351
352
|
near_jsonrpc_models/vmkind.py,sha256=tCxyZlDaGn3bz-lThkbUj0oO6qxoQP7lGANMusstpC8,252
|
|
352
353
|
near_jsonrpc_models/wasm_trap.py,sha256=y0nay7ulaHOGpHPRnKIU0FWxHeWfwnrYiYvllLry3Mw,791
|
|
354
|
+
near_jsonrpc_models/withdraw_from_gas_key_action.py,sha256=12urRilmm125SsHVHoMXLSzpTEpWL-CgDV-HA2kx1ag,394
|
|
353
355
|
near_jsonrpc_models/witness_config_view.py,sha256=kTeYTx1mtk0IT6ary63awFk5hIGn8mS8UlOCMaqhr2Q,912
|
|
354
|
-
near_jsonrpc_client-1.0.
|
|
355
|
-
near_jsonrpc_client-1.0.
|
|
356
|
-
near_jsonrpc_client-1.0.
|
|
357
|
-
near_jsonrpc_client-1.0.
|
|
356
|
+
near_jsonrpc_client-1.0.25.dist-info/METADATA,sha256=7TBbT6Bi0TPV8wt3Z99XkgkEvMUMw6ubfwHdrLlfevE,6309
|
|
357
|
+
near_jsonrpc_client-1.0.25.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
358
|
+
near_jsonrpc_client-1.0.25.dist-info/top_level.txt,sha256=uMGb9-6Ckd8WvQ5-m1l9mVFmM5lCORE6YybUIOimSuc,40
|
|
359
|
+
near_jsonrpc_client-1.0.25.dist-info/RECORD,,
|