Skip to content

Commit c2efe5b

Browse files
committed
improve wallet, add change log, add wallet to setup
1 parent 4470f15 commit c2efe5b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### 0.0.4
44
+ Import/export account private keys as a word phrase
5+
+ Convex Wallet tool
56

67
### 0.0.3
78
+ Pre-alpha release

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
keywords='convex api',
7373
name='convex-api-py',
7474
packages=find_packages(),
75+
scripts=[
76+
'tools/convex_wallet.py',
77+
],
7578
setup_requires=setup_requirements,
7679
test_suite='tests',
7780
tests_require=test_requirements,

tools/convex_wallet.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
COMMAND_HELP_TEXT = '''
2020
2121
create Create a new account using the provided --password. If no password auto generate one.
22-
new Same as 'create' command.
23-
info [address] Get information about an account, you can pass the account address, or the keywords or keyfile/password of the account.
22+
new Same as 'create' account command.
23+
info [address] Get information about an account, you can pass the account address, or the options <keywords> or <keyfile>/<password> of the account.
24+
2425
''' # noqa: E501
2526

2627
logger = logging.getLogger('convex_wallet')

0 commit comments

Comments
 (0)