You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 12, 2024. It is now read-only.
- fix(cli): name claim and update commands (#257) ([84988f9](https://github.com/aeternity/aepp-sdk-python/commit/84988f97f96983d683a37bd58c6e01ec2cb9efde)). Related issues/PRs: #256
13
+
- fix(hashing): fix typo in hash function name ([af06d36](https://github.com/aeternity/aepp-sdk-python/commit/af06d36f3475fd80b7b7af08981e2366c9351038)).
14
+
15
+
### Features
16
+
17
+
- feat(aens): allow to set multiple and custom pointers for a name ([0e60389](https://github.com/aeternity/aepp-sdk-python/commit/0e6038994ce3034c8192c6bf60d1fd83a7719051)). Related issues/PRs: #244, #244
18
+
- feat(aens): use .chain instead of .aet as TLD after Lima HF ([e02b92c](https://github.com/aeternity/aepp-sdk-python/commit/e02b92c81afc60b44d570ecd76f725268c333f07)). Related issues/PRs: #266
- fix: compatibility range for node version (#251) ([a1b273e](https://github.com/aeternity/aepp-sdk-python/commit/a1b273eb73b093c81c8ef3e8de3dcfe24989a8d5)).
- feat(aens): support lima aens model (#241) ([1ffae14](https://github.com/aeternity/aepp-sdk-python/commit/1ffae147c8f666c8a4674608246c2b7ca5be82be)). Related issues/PRs: #233, #236, #235
25
53
- feat(cli): auto select the network-id for high level cli command (#246) ([e512d15](https://github.com/aeternity/aepp-sdk-python/commit/e512d15be29e3140a869d2ec8872c86a1db1fe6b)).
26
54
- feat(compiler): support for compiler series v4 / FATE (#229) ([3276eec](https://github.com/aeternity/aepp-sdk-python/commit/3276eeca31c989ec6afa13f9eb48706eb555abee)).
@@ -31,13 +59,15 @@ This version is cross compatible with Fortuna and Lima versions of the node
31
59
- namehash function is deprecated and will be removed after Lima HF
32
60
33
61
### BREAKING CHANGES
34
-
-`sign_transaction(str)` has been changed to `broadcast_transaction(TxObject)` where TxObject is the default transaction object troughout the sdk
62
+
63
+
-`sign_transaction(str)` has been changed to `broadcast_transaction(TxObject)` where TxObject is the default transaction object throughout the sdk
35
64
-`broadcast_transaction(str)` has been changed to `broadcast_transaction(TxObject)`
36
65
changes the max length for auction from 32 to 12
37
66
-`wait_for_transaction` drops the optional (and unused) parameter `confirm_transaction`.
38
67
-`wait_for_confirmation` returns height where the transaction has been found (if any)
39
68
40
69
For the CLI, the parameter `--network-id` has been dropped for the commands:
70
+
41
71
-`aecli account spend`
42
72
-`aecli name claim`
43
73
-`aecli name revoke`
@@ -47,6 +77,17 @@ For the CLI, the parameter `--network-id` has been dropped for the commands:
47
77
-`aecli contract deploy`
48
78
-`aecli contract call`
49
79
80
+
In the name claim function, the first param is pre-claim tx hash and not the Account.
81
+
example:
82
+
83
+
```python
84
+
# PREVIOUS
85
+
name.claim(account, claim_tx.hash,...)
86
+
87
+
#NEW
88
+
name.claim(claim_tx.hash, account,...)
89
+
```
90
+
50
91
more details can be found at the relevant commit: [542beb6](https://github.com/aeternity/aepp-sdk-python/commit/542beb64d4198b036d62b3b30014da02801ffac5), [e512d15](https://github.com/aeternity/aepp-sdk-python/commit/e512d15be29e3140a869d2ec8872c86a1db1fe6b),
@cli.group(help='Deploy and execute contracts on the chain')
731
-
defcontracts():
731
+
@cli.group(help='Deploy and execute a contract on chain')
732
+
defcontract():
732
733
pass
733
734
734
735
735
-
@contracts.command('deploy', help='Deploy a contract on the chain')
736
+
@contract.command('deploy', help='Deploy a contract on the chain')
736
737
@click.argument('keystore_name', required=True)
737
738
@click.argument("bytecode_file", required=True)
738
-
@click.option("--init-calldata", default=defaults.CONTRACT_INIT_CALLDATA, help="The calldata for the init function", show_default=True)
739
-
@click.option("--gas", default=defaults.CONTRACT_GAS, help='Amount of gas to deploy the contract', show_default=True)
740
-
@click.option("--amount", default=defaults.CONTRACT_AMOUNT, help='Amount of tokens to transfer to the contract', show_default=True)
741
-
@click.option("--gas-price", default=defaults.CONTRACT_GAS_PRICE, help='The gas price used to execute the contract init function', show_default=True)
742
-
@click.option("--deposit", default=defaults.CONTRACT_AMOUNT, help='A initial deposit to the contract', show_default=True)
739
+
@click.option("--calldata", help="The calldata for the init function", required=True)
740
+
@click.option("--gas", default=defaults.CONTRACT_GAS, help='Amount of gas to deploy the contract', show_default=True, type=int)
741
+
@click.option("--amount", default=defaults.CONTRACT_AMOUNT, help='Amount of tokens to transfer to the contract', show_default=True, type=int)
742
+
@click.option("--gas-price", default=defaults.CONTRACT_GAS_PRICE, help='The gas price used to execute the contract init function', show_default=True, type=int)
743
+
@click.option("--deposit", default=defaults.CONTRACT_AMOUNT, help='A initial deposit to the contract', show_default=True, type=int)
0 commit comments