shadowPaySDK 0.1.0__tar.gz → 0.1.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shadowPaySDK
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: ShadowPay SDK for ERC20/ERC721 and P2P smart contract interaction
5
5
  Author: dazarius_
6
6
  Author-email: your@email.com
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='shadowPaySDK',
5
- version='0.1.0',
5
+ version='0.1.2',
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',
@@ -0,0 +1,2 @@
1
+ from .interface import ERC20Token as ERC20
2
+ from .interface import ERC721Token as ERC721
@@ -0,0 +1,4 @@
1
+ from .erc20 import ERC20Token
2
+ from .erc721 import ERC721Token
3
+
4
+ __all__ = ["ERC20Token", "ERC721Token"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shadowPaySDK
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: ShadowPay SDK for ERC20/ERC721 and P2P smart contract interaction
5
5
  Author: dazarius_
6
6
  Author-email: your@email.com
@@ -1,2 +0,0 @@
1
- from erc20 import ERC20Token as ERC20
2
- from erc721 import ERC721Token as ERC721
File without changes
File without changes
File without changes
File without changes