shadowPaySDK 0.2.0.23__tar.gz → 0.2.0.24__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.23 → shadowpaysdk-0.2.0.24}/PKG-INFO +1 -1
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/setup.py +1 -1
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/interface/sol.py +2 -2
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK.egg-info/PKG-INFO +1 -1
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/LICENSE +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/README.md +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/setup.cfg +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/__init__.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/api.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/const.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/interface/__init__.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/interface/erc20.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/interface/erc721.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/types/EVMcheque.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/types/SOLcheque.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/types/__init__.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/utils/__init__.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK/utils/utils.py +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK.egg-info/SOURCES.txt +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK.egg-info/dependency_links.txt +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/shadowPaySDK.egg-info/requires.txt +0 -0
- {shadowpaysdk-0.2.0.23 → shadowpaysdk-0.2.0.24}/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.24',
|
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',
|
@@ -205,7 +205,7 @@ class SOL:
|
|
205
205
|
return resp.value
|
206
206
|
|
207
207
|
|
208
|
-
async def transfer_native(self, to:str, amount):
|
208
|
+
async def transfer_native(self, to:str, amount: int):
|
209
209
|
if not self.KEYPAIR:
|
210
210
|
raise ValueError("not set KEYPAIR.")
|
211
211
|
|
@@ -219,7 +219,7 @@ class SOL:
|
|
219
219
|
))
|
220
220
|
]
|
221
221
|
msg = Message(ixns, self.get_pubkey())
|
222
|
-
latest_blockhash_resp = self.client.get_latest_blockhash()
|
222
|
+
latest_blockhash_resp = await self.client.get_latest_blockhash()
|
223
223
|
|
224
224
|
blockhash_str = latest_blockhash_resp.value.blockhash
|
225
225
|
tx = Transaction([self.KEYPAIR], msg, blockhash_str)
|
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
|