Skip to content

Commit 3247d81

Browse files
authored
Merge pull request #23 from Safeheron/dev
Added accountKey field to Transaction List V2
2 parents 08783a5 + 1ae378e commit 3247d81

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/pypi-publish.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Manually Publish Python Package to PyPI
2+
23
on:
3-
push:
4-
branches:
5-
- main
4+
release:
5+
types: [ released ]
6+
67
workflow_dispatch:
78
inputs:
89
version:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cffi==1.17.1
1414
charset-normalizer==3.3.2
1515
click==8.1.7
1616
ConfigArgParse==1.5.3
17-
cryptography==43.0.1
17+
cryptography==44.0.1
1818
cycler==0.11.0
1919
cytoolz==0.12.2
2020
docutils==0.21.2

safeheron_api_sdk_python/api/transaction_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ def __init__(self):
6565
self.destinationAccountKey = None
6666
# Destination account type
6767
self.destinationAccountType = None
68+
# 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
69+
self.accountKey = None
6870
# Start time for creating a transaction, UNIX timestamp (ms)
6971
self.createTimeMin = None
7072
# End time for creating a transaction, UNIX timestamp (ms)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.rst", "r") as f:
44
long_description = f.read()
55
setup(name='safeheron_api_sdk_python',
6-
version='1.1.18',
6+
version='1.1.19',
77
description='Python for Safeheron API',
88
long_description=long_description,
99
author='safeheron',

0 commit comments

Comments
 (0)