sidan-gin 0.1.2__tar.gz → 0.1.5__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.
Potentially problematic release.
This version of sidan-gin might be problematic. Click here for more details.
- sidan_gin-0.1.5/PKG-INFO +63 -0
- sidan_gin-0.1.5/README.md +38 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/pyproject.toml +1 -1
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/.git +1 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/.gitignore +11 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/.vscode/settings.json +32 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/Cargo.lock +1914 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/Cargo.toml +14 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/README.md +2 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/__init__.py +1 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/build.rs +9 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/build.sh +9 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/CardanoSigner.py +70 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/_CardanoSigner.cpython-311-x86_64-linux-gnu.so +0 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/__init__.py +0 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/build/lib.linux-x86_64-cpython-311/_CardanoSigner.cpython-311-x86_64-linux-gnu.so +0 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/build/temp.linux-x86_64-cpython-311/signer.o +0 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/build/temp.linux-x86_64-cpython-311/signer_wrap.o +0 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/cxx.h +1149 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/lib.rs +57 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/lib.rs.h +403 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/libsigner.a +0 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/setup.py +16 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/signer.cpp +73 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/signer.h +37 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/signer.i +16 -0
- sidan_gin-0.1.5/src/sidan_gin/python_signing_module/src/signer_wrap.cxx +4092 -0
- sidan_gin-0.1.5/src/sidan_gin/wallet/__init__.py +3 -0
- sidan_gin-0.1.5/src/sidan_gin/wallet/cli.py +13 -0
- sidan_gin-0.1.5/src/sidan_gin/wallet/derivation_indices.py +30 -0
- sidan_gin-0.1.5/src/sidan_gin/wallet/mnemonic.py +24 -0
- sidan_gin-0.1.5/src/sidan_gin/wallet/root_key.py +24 -0
- sidan_gin-0.1.5/src/sidan_gin/wallet/wallet.py +48 -0
- sidan_gin-0.1.2/PKG-INFO +0 -34
- sidan_gin-0.1.2/README.md +0 -9
- sidan_gin-0.1.2/src/sidan_gin/wallet/__init__.py +0 -3
- sidan_gin-0.1.2/src/sidan_gin/wallet/wallet.py +0 -40
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/LICENSE +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/__init__.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/encryption/__init__.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/encryption/cipher.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/__init__.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/account_info.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/asset.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/asset_metadata.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/block_info.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/network.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/protocol.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/transaction_info.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/utxo.py +0 -0
- {sidan_gin-0.1.2 → sidan_gin-0.1.5}/src/sidan_gin/types/value.py +0 -0
sidan_gin-0.1.5/PKG-INFO
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: sidan-gin
|
|
3
|
+
Version: 0.1.5
|
|
4
|
+
Summary: A python library for Cardano development, compatible with Mesh and Whisky types.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Keywords: cardano
|
|
7
|
+
Author: HinsonSIDAN
|
|
8
|
+
Author-email: wongkahinhinson@gmail.com
|
|
9
|
+
Requires-Python: >3.11,<4.0.0
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Natural Language :: English
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Requires-Dist: cbor2 (>=5.6.5,<6.0.0)
|
|
18
|
+
Requires-Dist: cryptography (>=44.0.2,<45.0.0)
|
|
19
|
+
Requires-Dist: pycardano (>=0.12.3,<0.13.0)
|
|
20
|
+
Requires-Dist: requests (>=2.25,<3.0)
|
|
21
|
+
Project-URL: Documentation, https://github.com/sidan-lab/gin
|
|
22
|
+
Project-URL: Homepage, https://github.com/sidan-lab/gin
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
<div align="center">
|
|
26
|
+
<hr />
|
|
27
|
+
<h2 align="center" style="border-bottom: none"><img style="position: relative; top: 0.25rem;" src="https://raw.githubusercontent.com/sidan-lab/brand_assets/main/sidan_s_square.png" alt="Whisky" height="30" /> Gin - Cardano Python SDK</h2>
|
|
28
|
+
|
|
29
|
+
[](https://github.com/sidan-lab/gin/blob/master/LICENSE)
|
|
30
|
+
[](https://github.com/sidan-lab/gin/actions/workflows/build.yml)
|
|
31
|
+
[](https://github.com/sidan-lab/bin/actions/workflows/publish.yml)
|
|
32
|
+
|
|
33
|
+
[](https://pypi.python.org/pypi/sidan_gin/)
|
|
34
|
+
[](https://pypi.python.org/pypi/sidan_gin/)
|
|
35
|
+
[](https://pypi.python.org/pypi/sidan_gin/)
|
|
36
|
+
|
|
37
|
+
[](https://x.com/sidan_lab)
|
|
38
|
+
|
|
39
|
+
<hr/>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
# gin
|
|
43
|
+
|
|
44
|
+
Gin is a Python library for Cardano development, compatible with Mesh and Whisky types. It also re-export core logics implemented in Whisky to support stable serialization in Python. Supported features:
|
|
45
|
+
|
|
46
|
+
- Identical type system with Mesh and Whisky.
|
|
47
|
+
- Transaction signing
|
|
48
|
+
- Cipher data encryption and decryption
|
|
49
|
+
|
|
50
|
+
## Installation
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
pip install sidan_gin
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Getting Started
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
- Coming soon
|
|
61
|
+
|
|
62
|
+

|
|
63
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<hr />
|
|
3
|
+
<h2 align="center" style="border-bottom: none"><img style="position: relative; top: 0.25rem;" src="https://raw.githubusercontent.com/sidan-lab/brand_assets/main/sidan_s_square.png" alt="Whisky" height="30" /> Gin - Cardano Python SDK</h2>
|
|
4
|
+
|
|
5
|
+
[](https://github.com/sidan-lab/gin/blob/master/LICENSE)
|
|
6
|
+
[](https://github.com/sidan-lab/gin/actions/workflows/build.yml)
|
|
7
|
+
[](https://github.com/sidan-lab/bin/actions/workflows/publish.yml)
|
|
8
|
+
|
|
9
|
+
[](https://pypi.python.org/pypi/sidan_gin/)
|
|
10
|
+
[](https://pypi.python.org/pypi/sidan_gin/)
|
|
11
|
+
[](https://pypi.python.org/pypi/sidan_gin/)
|
|
12
|
+
|
|
13
|
+
[](https://x.com/sidan_lab)
|
|
14
|
+
|
|
15
|
+
<hr/>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
# gin
|
|
19
|
+
|
|
20
|
+
Gin is a Python library for Cardano development, compatible with Mesh and Whisky types. It also re-export core logics implemented in Whisky to support stable serialization in Python. Supported features:
|
|
21
|
+
|
|
22
|
+
- Identical type system with Mesh and Whisky.
|
|
23
|
+
- Transaction signing
|
|
24
|
+
- Cipher data encryption and decryption
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
```sh
|
|
29
|
+
pip install sidan_gin
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Getting Started
|
|
33
|
+
|
|
34
|
+
## Documentation
|
|
35
|
+
|
|
36
|
+
- Coming soon
|
|
37
|
+
|
|
38
|
+

|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gitdir: ../../../.git/modules/src/sidan_gin/python_signing_module
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"files.associations": {
|
|
3
|
+
"iosfwd": "cpp",
|
|
4
|
+
"vector": "cpp",
|
|
5
|
+
"stdexcept": "cpp",
|
|
6
|
+
"string": "cpp",
|
|
7
|
+
"__verbose_abort": "cpp",
|
|
8
|
+
"array": "cpp",
|
|
9
|
+
"cstddef": "cpp",
|
|
10
|
+
"cstdint": "cpp",
|
|
11
|
+
"cstdio": "cpp",
|
|
12
|
+
"cstdlib": "cpp",
|
|
13
|
+
"cstring": "cpp",
|
|
14
|
+
"cwchar": "cpp",
|
|
15
|
+
"execution": "cpp",
|
|
16
|
+
"memory": "cpp",
|
|
17
|
+
"initializer_list": "cpp",
|
|
18
|
+
"limits": "cpp",
|
|
19
|
+
"new": "cpp",
|
|
20
|
+
"string_view": "cpp",
|
|
21
|
+
"typeinfo": "cpp",
|
|
22
|
+
"variant": "cpp",
|
|
23
|
+
"cctype": "cpp",
|
|
24
|
+
"cmath": "cpp",
|
|
25
|
+
"ctime": "cpp",
|
|
26
|
+
"cwctype": "cpp",
|
|
27
|
+
"optional": "cpp",
|
|
28
|
+
"ratio": "cpp",
|
|
29
|
+
"algorithm": "cpp",
|
|
30
|
+
"*.rs": "rust"
|
|
31
|
+
}
|
|
32
|
+
}
|