py-near 1.1.31__py3-none-any.whl → 1.1.32__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.
py_near/account.py CHANGED
@@ -108,7 +108,7 @@ class Account(object):
108
108
  self._latest_block_hash_ts = utils.timestamp()
109
109
 
110
110
  async def sign_and_submit_tx(
111
- self, receiver_id, actions: List[Action], nowait=False
111
+ self, receiver_id, actions: List[Action], nowait=False, included=False
112
112
  ) -> Union[TransactionResult, str]:
113
113
  """
114
114
  Sign transaction and send it to blockchain
@@ -116,6 +116,7 @@ class Account(object):
116
116
  :param actions: list of actions
117
117
  :param nowait: if nowait is True, return transaction hash, else wait execution
118
118
  confirm and return TransactionResult
119
+ :param included: if included is True, return transaction hash, else wait execution
119
120
  :return: transaction hash or TransactionResult
120
121
  """
121
122
  if not self._signers:
@@ -149,7 +150,10 @@ class Account(object):
149
150
  )
150
151
 
151
152
  try:
152
- if nowait:
153
+ if included:
154
+ await self._provider.send_tx_included(serialized_tx)
155
+ return trx_hash
156
+ elif nowait:
153
157
  return await self._provider.send_tx(serialized_tx)
154
158
  return await self._provider.send_tx_and_wait(
155
159
  serialized_tx, trx_hash=trx_hash, receiver_id=receiver_id
@@ -211,17 +215,18 @@ class Account(object):
211
215
  return await self._provider.get_account(self.account_id)
212
216
 
213
217
  async def send_money(
214
- self, account_id: str, amount: int, nowait: bool = False
218
+ self, account_id: str, amount: int, nowait: bool = False, included=False
215
219
  ) -> TransactionResult:
216
220
  """
217
221
  Send money to account_id
218
222
  :param account_id: receiver account id
219
223
  :param amount: amount in yoctoNEAR
220
224
  :param nowait: if nowait is True, return transaction hash, else wait execution
225
+ :param included: if included is True, return transaction hash, else wait execution
221
226
  :return: transaction hash or TransactionResult
222
227
  """
223
228
  return await self.sign_and_submit_tx(
224
- account_id, [transactions.create_transfer_action(amount)], nowait
229
+ account_id, [transactions.create_transfer_action(amount)], nowait, included
225
230
  )
226
231
 
227
232
  async def function_call(
@@ -232,6 +237,7 @@ class Account(object):
232
237
  gas: int = constants.DEFAULT_ATTACHED_GAS,
233
238
  amount: int = 0,
234
239
  nowait: bool = False,
240
+ included=False
235
241
  ):
236
242
  """
237
243
  Call function on smart contract
@@ -241,6 +247,7 @@ class Account(object):
241
247
  :param gas: amount of attachment gas. Default is 200000000000000
242
248
  :param amount: amount of attachment NEAR, Default is 0
243
249
  :param nowait: if nowait is True, return transaction hash, else wait execution
250
+ :param included: if included is True, return transaction hash, else wait execution
244
251
  :return: transaction hash or TransactionResult
245
252
  """
246
253
  ser_args = json.dumps(args).encode("utf8")
@@ -252,6 +259,7 @@ class Account(object):
252
259
  )
253
260
  ],
254
261
  nowait,
262
+ included
255
263
  )
256
264
 
257
265
  async def create_account(
py_near/providers.py CHANGED
@@ -194,6 +194,22 @@ class JsonProvider(object):
194
194
  broadcast=self.allow_broadcast,
195
195
  )
196
196
 
197
+ async def send_tx_included(
198
+ self, signed_tx: str, timeout: int = constants.TIMEOUT_WAIT_RPC
199
+ ):
200
+ """
201
+ Send a signed transaction to the network and return the hash of the transaction
202
+ :param signed_tx: base64 encoded signed transaction, str.
203
+ :param timeout: rpc request timeout
204
+ :return:
205
+ """
206
+ return await self.json_rpc(
207
+ "send_tx",
208
+ {"signed_tx_base64": signed_tx, "wait_until": "INCLUDED_FINAL"},
209
+ timeout=timeout,
210
+ broadcast=self.allow_broadcast,
211
+ )
212
+
197
213
  async def wait_for_trx(self, trx_hash, receiver_id) -> TransactionResult:
198
214
  for _ in range(6):
199
215
  await asyncio.sleep(5)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: py-near
3
- Version: 1.1.31
3
+ Version: 1.1.32
4
4
  Summary: Pretty simple and fully asynchronous framework for working with NEAR blockchain
5
5
  Author: pvolnov
6
6
  Author-email: petr@herewallet.app
@@ -1,5 +1,5 @@
1
1
  py_near/__init__.py,sha256=t5fAxjaU8dN8xpQR2vz0ZGhfTkdVy2RCbkhJhZFglk4,50
2
- py_near/account.py,sha256=YbF7wnO-FFsSlJINYqF0Z5M4oF5Z4IVEXd64qZFvgZI,16714
2
+ py_near/account.py,sha256=-Tmz4E03Aq4e9Ce-31s3lUyOAx5HqlGbs8PViCw8MXY,17201
3
3
  py_near/constants.py,sha256=inaWIuwmF1EB5JSB0ynnZY5rKY_QsxhF9KuCOhPsM6k,164
4
4
  py_near/dapps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  py_near/dapps/core.py,sha256=LtN9aW2gw2mvEdhzQcQJIidtjv-XL1xjb0LK8DzqtqE,231
@@ -20,10 +20,10 @@ py_near/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
20
20
  py_near/exceptions/exceptions.py,sha256=DEFipaAHm0y7oCuN2QKzHsiQvUTUQVl-Ce36Ag7n7hs,5509
21
21
  py_near/exceptions/provider.py,sha256=K-wexgjPJ8sw42JePwaP7R5dJEIn9DoFJRvVcURsx6s,7718
22
22
  py_near/models.py,sha256=GZQD1TKGWlwqsJsKRXrVNBjCdAIpk7GQypU-QOtAPFs,11533
23
- py_near/providers.py,sha256=wRY_fHePvlV-jC-j8NTtpHhb8EedpzLFQ1DQROt-brE,13363
23
+ py_near/providers.py,sha256=E1FTza1IokXrFtOCPABW9UsXkgzqoTuxZfRWhCeixhk,13933
24
24
  py_near/transactions.py,sha256=QAXegv2JpKISk92NaChtIH6-QPHrcWbrwdKH_lH4TsU,3186
25
25
  py_near/utils.py,sha256=FirRH93ydH1cwjn0-sNrZeIn3BRD6QHedrP2VkAdJ6g,126
26
- py_near-1.1.31.dist-info/LICENSE,sha256=I_GOA9xJ35FiL-KnYXZJdATkbO2KcV2dK2enRGVxzKM,1023
27
- py_near-1.1.31.dist-info/METADATA,sha256=EiR0adIzbk1Dxot0y4nK3jVRkG5oPxrY9YPRsuRK4YQ,4713
28
- py_near-1.1.31.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
29
- py_near-1.1.31.dist-info/RECORD,,
26
+ py_near-1.1.32.dist-info/LICENSE,sha256=I_GOA9xJ35FiL-KnYXZJdATkbO2KcV2dK2enRGVxzKM,1023
27
+ py_near-1.1.32.dist-info/METADATA,sha256=W-AOwBRd0vwecMFL7PpUtKvmKQpoR0s4HaohoV-MskI,4713
28
+ py_near-1.1.32.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
29
+ py_near-1.1.32.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.8.1
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any