shadowPaySDK 16.7.2025.257__tar.gz → 16.7.2025.258__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-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/PKG-INFO +1 -1
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/setup.py +1 -1
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/types/EVMcheque.py +1 -3
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/PKG-INFO +1 -1
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/LICENSE +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/README.md +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/setup.cfg +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/__init__.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/const.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/interface/__init__.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/interface/erc20.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/interface/erc721.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/interface/sol.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/types/SOLcheque.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/types/__init__.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/utils/__init__.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/utils/utils.py +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/SOURCES.txt +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/dependency_links.txt +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/requires.txt +0 -0
- {shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/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='16.7.2025.
|
5
|
+
version='16.7.2025.258',
|
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',
|
@@ -442,9 +442,7 @@ class Cheque:
|
|
442
442
|
raise ValueError("Cheque ID is required")
|
443
443
|
|
444
444
|
cheque_id_bytes32 = Web3.to_bytes(hexstr=cheque_id).rjust(32, b'\x00')
|
445
|
-
cheque_info = self.contract.functions.
|
446
|
-
cheque_id_bytes32
|
447
|
-
})
|
445
|
+
cheque_info = self.contract.functions.getTokenChequeDetail(cheque_id_bytes32).call()
|
448
446
|
return cheque_info
|
449
447
|
async def getSwaoDetail(self, cheque_id: str):
|
450
448
|
# f = EVMcheque.getSwaoDetail(
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK/interface/__init__.py
RENAMED
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
|
{shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/dependency_links.txt
RENAMED
File without changes
|
{shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/requires.txt
RENAMED
File without changes
|
{shadowpaysdk-16.7.2025.257 → shadowpaysdk-16.7.2025.258}/shadowPaySDK.egg-info/top_level.txt
RENAMED
File without changes
|