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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,56 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
* add update-notifier to ask user to switch to the latest version ([2516446](https://github.com/aeternity/aepp-cli-js/commit/25164460eab8e11706fc8a71e6566de7651fb5ce))
30
+
* aesophia_cli support ([a74fc2b](https://github.com/aeternity/aepp-cli-js/commit/a74fc2b45928ea208ce9e9bfeefca23c8d3a4474))
31
+
***contract:** includes support ([818f375](https://github.com/aeternity/aepp-cli-js/commit/818f37561c8f9ebff336e3cfef4ae5749e1cf286))
32
+
* get urls from AECLI_NODE_URL, AECLI_COMPILER_URL env variables ([78a9953](https://github.com/aeternity/aepp-cli-js/commit/78a9953878b15b0d8e3ae7094147fcf1db4b78ef))
33
+
* specify and check contract descriptor file version ([ea17f80](https://github.com/aeternity/aepp-cli-js/commit/ea17f80fba43477ec0972acf7a42a9c43b868e62))
34
+
35
+
36
+
### Bug Fixes
37
+
38
+
***account:** show network id in sign call output ([836f421](https://github.com/aeternity/aepp-cli-js/commit/836f4215c9bd05fa832f66be6e1fdeccc7bd7d96))
39
+
***contract:** allow to static calls without wallet ([7bf7bb6](https://github.com/aeternity/aepp-cli-js/commit/7bf7bb65a1dddbcaee48bb318b973f30acf26755))
40
+
***contract:** stringify maps as arrays ([b80e3b4](https://github.com/aeternity/aepp-cli-js/commit/b80e3b408eb1ced6ebfa56235eaebc6105caf27a))
41
+
* don't show stack trace when entered an invalid password to wallet ([8d24bec](https://github.com/aeternity/aepp-cli-js/commit/8d24beca28d7f8c918c09c912c67a16aa66e9482))
42
+
***tx:** remove missed `deposit` field in contract call tx ([a1aa7c7](https://github.com/aeternity/aepp-cli-js/commit/a1aa7c7b89aa4a59b9e2595226f0c1d82deb748f))
43
+
***tx:** show bytecode and call data instead of missed payload ([75f5eee](https://github.com/aeternity/aepp-cli-js/commit/75f5eeed9004346b5e903836d42ac6e8fa902678))
44
+
***tx:** show name of transaction type ([18ee736](https://github.com/aeternity/aepp-cli-js/commit/18ee73652a137d138cedc441566f15fb5b0ec5d9))
45
+
***chain:** calculation of relative ttl ([651ba1a](https://github.com/aeternity/aepp-cli-js/commit/651ba1a5d8642763c7643114c7f37f7bde7e0b26))
***chain:** padding of top output ([ca661d7](https://github.com/aeternity/aepp-cli-js/commit/ca661d7a34611a76effda47c589d45ff9f7fbb04))
48
+
***chain:** show correctly consensus protocol version ([a5fa358](https://github.com/aeternity/aepp-cli-js/commit/a5fa3588a23b8b8f66201cd9ebb41d947f43edf4))
49
+
* don't override files by default ([d09eabe](https://github.com/aeternity/aepp-cli-js/commit/d09eabe97c36461bc6aaa95ba383248983a0e3ef))
Copy file name to clipboardExpand all lines: CLI.md
+24-30Lines changed: 24 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,32 +28,26 @@ The command-line interface is invoked using the command `aecli`. Depending on wh
28
28
29
29
If you invoke `aecli` with no arguments, it shows basic usage:
30
30
```
31
-
$ ./aecli
32
-
The command line client for the Aeternity blockchain
33
-
34
-
Usage:
35
-
aecli [command]
36
-
37
-
Available Commands:
38
-
chain Query the state of the chain
39
-
config Print the configuration of the sdk
40
-
help Help concerning any command
41
-
inspect Inspect an object of the blockchain
42
-
name A brief description of your command
43
-
account Handle wallet operations
44
-
contract Compile contracts
45
-
crypto Crypto helpers
46
-
47
-
48
-
Flags:
49
-
-c, --config string config file to load (defaults to $HOME/.aeternity/config.yaml
50
-
--debug enable debug
51
-
-h, --help help for aecli
52
-
--json print output in json format
53
-
--version version for aecli
54
-
-u, --epoch-url, show URL of epoch
55
-
56
-
Use "aecli [command] --help" for more information about a command.
31
+
$ aecli
32
+
Usage: aecli [options] [command]
33
+
34
+
Options:
35
+
-V, --version output the version number
36
+
-h, --help display help for command
37
+
38
+
Commands:
39
+
chain Interact with the blockchain
40
+
inspect Get information on transactions, blocks,...
41
+
account Handle wallet operations
42
+
contract Contract interactions
43
+
name AENS system
44
+
tx Transaction builder
45
+
oracle Interact with oracles
46
+
crypto Crypto helpers
47
+
config [options] Print the current sdk configuration
48
+
select-node [nodeUrl] Specify node to use in other commands
49
+
select-compiler [compilerUrl] Specify compiler to use in other commands
50
+
help [command] display help for command
57
51
```
58
52
59
53
The general groupings of commands are:
@@ -64,7 +58,7 @@ The general groupings of commands are:
64
58
-`name` allows interaction with the naming system.
65
59
-`account` commands cover a set of functions which operate with a key pair, from transferring tokens to registering names and invoking smart contracts.
66
60
-`oracle` allows you to interact with the oracles.
67
-
-`contract` allows compiling the smart contracts.
61
+
-`contract` allows deploying and calling the smart contracts.
68
62
69
63
70
64
## The chain group
@@ -216,8 +210,8 @@ $ ./aecli.mjs name
216
210
217
211
Commands:
218
212
219
-
claim <wallet_path> <name> Claim a domain name
220
-
revoke <wallet_path> <name> Revoke a domain name
213
+
claim <wallet_path> <name> Claim an AENS name
214
+
revoke <wallet_path> <name> Revoke an AENS name
221
215
transfer <wallet_path> <name> <address> Transfer a name to another account
222
216
update <wallet_path> <name> <address> Update a name pointer
223
217
@@ -263,7 +257,7 @@ $ ./aecli.mjs contract
263
257
264
258
-H, --host [hostname] Node to connect to (default: https://localhost:3013)
265
259
-T, --ttl [ttl] Validity of the transaction in number of blocks (default forever) (default: 50000)
266
-
-f --force Ignore epoch version compatibility check
260
+
-f --force Ignore node version compatibility check
Copy file name to clipboardExpand all lines: README.md
+14-9Lines changed: 14 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,17 +44,22 @@ You can install, use and work on this `CLI` tool, by following these instruction
44
44
Usage: aecli [options] [command]
45
45
46
46
Options:
47
-
-V, --version output the version number
48
-
-h, --help output usage information
47
+
-V, --version output the version number
48
+
-h, --help display help for command
49
49
50
50
Commands:
51
-
chain Interact with the blockchain
52
-
inspect Get information on transactions, blocks,...
53
-
account Handle wallet operations
54
-
contract Compile contracts
55
-
name AENS system
56
-
crypto Crypto helpers
57
-
help [cmd] display help for [cmd]
51
+
chain Interact with the blockchain
52
+
inspect Get information on transactions, blocks,...
53
+
account Handle wallet operations
54
+
contract Contract interactions
55
+
name AENS system
56
+
tx Transaction builder
57
+
oracle Interact with oracles
58
+
crypto Crypto helpers
59
+
config [options] Print the current sdk configuration
60
+
select-node [nodeUrl] Specify node to use in other commands
61
+
select-compiler [compilerUrl] Specify compiler to use in other commands
62
+
help [command] display help for command
58
63
```
59
64
60
65
4. To read documentation of other commands and sub-commands, you can append `--help`. For example, type `bin/aecli.mjs account --help` to get a list of `account`'s available sub-commands.
0 commit comments