Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Manually Publish Python Package to PyPI

on:
push:
branches:
- main
release:
types: [ released ]

workflow_dispatch:
inputs:
version:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cffi==1.17.1
charset-normalizer==3.3.2
click==8.1.7
ConfigArgParse==1.5.3
cryptography==43.0.1
cryptography==44.0.1
cycler==0.11.0
cytoolz==0.12.2
docutils==0.21.2
Expand Down
2 changes: 2 additions & 0 deletions safeheron_api_sdk_python/api/transaction_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ def __init__(self):
self.destinationAccountKey = None
# Destination account type
self.destinationAccountType = None
# The unique identifier key of a wallet account, used to query all transactions under that wallet. This is only supported for VAULT_ACCOUNT type wallets. This has a higher priority than sourceAccountKey, sourceAccountType, destinationAccountKey, destinationAccountType, and realDestinationAccountType. If accountKey is passed along with the five parameters mentioned above, only accountKey will be effective
self.accountKey = None
# Start time for creating a transaction, UNIX timestamp (ms)
self.createTimeMin = None
# End time for creating a transaction, UNIX timestamp (ms)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
with open("README.rst", "r") as f:
long_description = f.read()
setup(name='safeheron_api_sdk_python',
version='1.1.18',
version='1.1.19',
description='Python for Safeheron API',
long_description=long_description,
author='safeheron',
Expand Down