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 Nov 6, 2021. It is now read-only.
Copy file name to clipboardexpand all lines: ReadMe.md
+28-28
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# Mantis Tools for Cardano
1
+
# Mantra Tools for Cardano
2
2
3
3
This tool provides several script-oriented utilities for the Cardano blockchain.
4
4
5
5
In particular, it posts metadata or mints/burns tokens. By default, it gathers the UTxOs from the address into a transaction with output to that same address, but minting/burning tokens and/or posting metadata in the process. The cost is the minimum network fee for the transaction.
6
6
7
7
It can also generate scripts, compute script addresses, compute the fingerprint of a token, and download scripts.
8
8
9
-
Please post questions and issues [here](https://github.com/functionally/mantis/issues).
9
+
Please post questions and issues [here](https://github.com/functionally/mantra/issues).
10
10
11
11
12
12
## Security considerations
@@ -15,17 +15,17 @@ Please post questions and issues [here](https://github.com/functionally/mantis/i
15
15
16
16
Instead of storing the signing key in a file that is referenced by the configuration file, the tool can read the key from a pipe such as standard input or from a Unix socket. For example, if the key file was encrypted using GnuPG, the following command will pipe the decrypted key into the tool:
where the configuration file `my-config.mantis` has set the signing key to `/dev/stdin`. Similar, one can use a Unix socket to achieve a similar result:
20
+
where the configuration file `my-config.mantra` has set the signing key to `/dev/stdin`. Similar, one can use a Unix socket to achieve a similar result:
where the configuration file has set the signing key to the socket `payment.skey`. Both methods avoid storing the unencrypted key in a disk file.
31
31
@@ -34,18 +34,18 @@ where the configuration file has set the signing key to the socket `payment.skey
34
34
35
35
This package uses the [`haskell.nix`](https://input-output-hk.github.io/haskell.nix/) build system. Simply clone this repository and execute the build command:
36
36
37
-
nix-build -A mantis.components.exes.mantis -o build
37
+
nix-build -A mantra.components.exes.mantra -o build
38
38
39
-
The executable result will be in `./build/bin/mantis`.
39
+
The executable result will be in `./build/bin/mantra`.
40
40
41
41
Alternatively, one can use the `cabal install` installation approach, which relies on the [cabal.project](cabal.project) file and which is known to succeed with cabal 3.4.0.0 and ghc 8.10.4.
42
42
43
-
A docker image is available at https://github.com/wutzebaer/mantis-docker/.
43
+
A docker image is available at https://github.com/wutzebaer/mantra-docker/.
44
44
45
45
46
46
### Development environment
47
47
48
-
Due to quirks in how [`haskell.nix`](https://input-output-hk.github.io/haskell.nix/) and [`cabal.project`](https://cabal.readthedocs.io/en/3.4/cabal-project.html) interact, the following procedure needs to be followed to create a development environment for compiling `mantis`:
48
+
Due to quirks in how [`haskell.nix`](https://input-output-hk.github.io/haskell.nix/) and [`cabal.project`](https://cabal.readthedocs.io/en/3.4/cabal-project.html) interact, the following procedure needs to be followed to create a development environment for compiling `mantra`:
49
49
50
50
1. Run `nix-shell`. This takes a while to build unless you set `withHoogle = false` in [shell.nix](shell.nix).
51
51
2. Temporarily comment-out the `source-repository-package` lines in [cabal.project](cabal.project).
@@ -66,17 +66,17 @@ The configuration file contains the basic network information, along with the fu
66
66
|`signingKeyFile`| Location of the signing key file. This may be `/dev/stdin` or a Unix pipe instead of an actual file. |`"payment.skey"`|
67
67
68
68
69
-
* Sample configuration for `mainnet`: [sample-mainnet.mantis](sample-mainnet.mantis).
70
-
* Sample configuration for `testnet`: [sample-testnet.mantis](sample-testnet.mantis).
69
+
* Sample configuration for `mainnet`: [sample-mainnet.mantra](sample-mainnet.mantra).
70
+
* Sample configuration for `testnet`: [sample-testnet.mantra](sample-testnet.mantra).
71
71
72
72
73
73
## Command-line options
74
74
75
-
$ mantis --help
75
+
$ mantra --help
76
76
77
-
Mantis Cardano tool.
77
+
Mantra Cardano tool.
78
78
79
-
Usage: mantis [--version] [--quiet] COMMAND
79
+
Usage: mantra [--version] [--quiet] COMMAND
80
80
Utilities for Cardano scripts.
81
81
82
82
Available options:
@@ -100,28 +100,28 @@ The configuration file contains the basic network information, along with the fu
100
100
watch-scripts Download scripts used as transaction witnesses.
101
101
102
102
*[Mint batches of Cardano non-fungible tokens](man/mint.md)
103
-
*`mantis mint`
103
+
*`mantra mint`
104
104
*[Submit Cardano metadata or mint Cardano tokens](man/transact.md)
105
-
*`mantis transact`
105
+
*`mantra transact`
106
106
*[Construct a minting script and compute its Policy ID](man/script.md)
107
-
*`mantis script`
107
+
*`mantra script`
108
108
*[Download information from all blocks and transactions](man/watch.md)
109
-
*`mantis watch-scripts`
110
-
*`mantis watch-address`
111
-
*`mantis watch-coin`
109
+
*`mantra watch-scripts`
110
+
*`mantra watch-address`
111
+
*`mantra watch-coin`
112
112
*[Encoding and decoding Bech32 text](man/bech32.md)
113
-
*`mantis bech32-decode`
114
-
*`mantis bech32-encode`
113
+
*`mantra bech32-decode`
114
+
*`mantra bech32-encode`
115
115
*[Computing the Bech32 fingerprint of a token](man/fingerprint.md)
116
-
*`mantis fingerprint`
116
+
*`mantra fingerprint`
117
117
*[Show information about a transaction file or address](man/info.md)
118
-
*`mantis info-address`
119
-
*`mantis info-tx`
120
-
*`mantis info-txbody`
121
-
*`mantis info-utxo`
118
+
*`mantra info-address`
119
+
*`mantra info-tx`
120
+
*`mantra info-txbody`
121
+
*`mantra info-utxo`
122
122
123
123
124
124
API documentation
125
125
-----------------
126
126
127
-
See https://functionally.github.io/mantis/ for API documentation.
127
+
See https://functionally.github.io/mantra/ for API documentation.
0 commit comments