Skip to content

Commit 9b97911

Browse files
committed
fix typos
1 parent 640ff61 commit 9b97911

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ You can now access the convex network, and get a balance from an existing accoun
1919

2020
You can create a new emtpy account, with now balance:
2121

22-
>>> account = convex.create_account()
22+
>>> account = convex_api.create_account()
2323
>>> account.address
2424
809
2525

2626
You can request some funds to the new account and then get the account information:
2727

2828
>>> convex_api.request_funds(1000000, account)
2929
1000000
30-
>>> convex.get_account_info(account)
30+
>>> convex_api.get_account_info(account)
3131
{'environment': {}, 'address': 809, 'is_library': False, 'is_actor': False, 'memory_size': 42, 'balance': 1000000, 'allowance': 0, 'sequence': 0, 'type': 'user'}
3232

3333

@@ -46,7 +46,7 @@ To re-use your account again you need to import the encrypted private key and se
4646

4747
To create a new address with the same account keys in your new or imported account object, you can do:
4848

49-
>>> new_account = convex.create_account(account)
49+
>>> new_account = convex_api.create_account(account)
5050
>>> account.address
5151
809
5252
>>> new_account.address

0 commit comments

Comments
 (0)