shadowPaySDK 0.2.0.24__tar.gz → 0.2.0.25__tar.gz
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.
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/PKG-INFO +1 -1
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/setup.py +1 -1
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/interface/sol.py +2 -2
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK.egg-info/PKG-INFO +1 -1
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/LICENSE +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/README.md +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/setup.cfg +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/__init__.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/api.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/const.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/interface/__init__.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/interface/erc20.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/interface/erc721.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/types/EVMcheque.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/types/SOLcheque.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/types/__init__.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/utils/__init__.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK/utils/utils.py +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK.egg-info/SOURCES.txt +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK.egg-info/dependency_links.txt +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK.egg-info/requires.txt +0 -0
- {shadowpaysdk-0.2.0.24 → shadowpaysdk-0.2.0.25}/shadowPaySDK.egg-info/top_level.txt +0 -0
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='shadowPaySDK',
|
5
|
-
version='0.2.0.
|
5
|
+
version='0.2.0.25',
|
6
6
|
description='ShadowPay SDK for ERC20/ERC721 and P2P smart contract interaction',
|
7
7
|
long_description=open('README.md').read(),
|
8
8
|
long_description_content_type='text/markdown',
|
@@ -215,7 +215,7 @@ class SOL:
|
|
215
215
|
ts(tsf(
|
216
216
|
from_pubkey=sender_pubkey,
|
217
217
|
to_pubkey=receiver_pubkey,
|
218
|
-
lamports=amount * LAMPORTS_PER_SOL
|
218
|
+
lamports=int(amount * LAMPORTS_PER_SOL)
|
219
219
|
))
|
220
220
|
]
|
221
221
|
msg = Message(ixns, self.get_pubkey())
|
@@ -224,7 +224,7 @@ class SOL:
|
|
224
224
|
blockhash_str = latest_blockhash_resp.value.blockhash
|
225
225
|
tx = Transaction([self.KEYPAIR], msg, blockhash_str)
|
226
226
|
resp = await self.client.send_transaction(tx)
|
227
|
-
return resp
|
227
|
+
return resp.value
|
228
228
|
|
229
229
|
|
230
230
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|