Skip to content
This repository was archived by the owner on Nov 6, 2021. It is now read-only.

Commit 5f9c955

Browse files
committed
rebranded as "mantra"
1 parent 8ce91dc commit 5f9c955

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1037
-1030
lines changed

ReadMe.md

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Mantis Tools for Cardano
1+
# Mantra Tools for Cardano
22

33
This tool provides several script-oriented utilities for the Cardano blockchain.
44

55
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.
66

77
It can also generate scripts, compute script addresses, compute the fingerprint of a token, and download scripts.
88

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).
1010

1111

1212
## Security considerations
@@ -15,17 +15,17 @@ Please post questions and issues [here](https://github.com/functionally/mantis/i
1515

1616
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:
1717

18-
gpg -d my-key.skey.gpg | mantis transact my-config.mantis . . .
18+
gpg -d my-key.skey.gpg | mantra transact my-config.mantra . . .
1919

20-
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:
2121

2222
if [ ! -e payment.skey ]
2323
then
2424
mkfifo payment.skey
2525
fi
2626
gpg --pinentry loopback --decrypt payment.skey.gpg > payment.skey &
2727

28-
mantis transact my-config.mantis . . .
28+
mantra transact my-config.mantra . . .
2929

3030
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.
3131

@@ -34,18 +34,18 @@ where the configuration file has set the signing key to the socket `payment.skey
3434

3535
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:
3636

37-
nix-build -A mantis.components.exes.mantis -o build
37+
nix-build -A mantra.components.exes.mantra -o build
3838

39-
The executable result will be in `./build/bin/mantis`.
39+
The executable result will be in `./build/bin/mantra`.
4040

4141
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.
4242

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/.
4444

4545

4646
### Development environment
4747

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`:
4949

5050
1. Run `nix-shell`. This takes a while to build unless you set `withHoogle = false` in [shell.nix](shell.nix).
5151
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
6666
| `signingKeyFile` | Location of the signing key file. This may be `/dev/stdin` or a Unix pipe instead of an actual file. | `"payment.skey"` |
6767

6868

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).
7171

7272

7373
## Command-line options
7474

75-
$ mantis --help
75+
$ mantra --help
7676

77-
Mantis Cardano tool.
77+
Mantra Cardano tool.
7878

79-
Usage: mantis [--version] [--quiet] COMMAND
79+
Usage: mantra [--version] [--quiet] COMMAND
8080
Utilities for Cardano scripts.
8181

8282
Available options:
@@ -100,28 +100,28 @@ The configuration file contains the basic network information, along with the fu
100100
watch-scripts Download scripts used as transaction witnesses.
101101

102102
* [Mint batches of Cardano non-fungible tokens](man/mint.md)
103-
* `mantis mint`
103+
* `mantra mint`
104104
* [Submit Cardano metadata or mint Cardano tokens](man/transact.md)
105-
* `mantis transact`
105+
* `mantra transact`
106106
* [Construct a minting script and compute its Policy ID](man/script.md)
107-
* `mantis script`
107+
* `mantra script`
108108
* [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`
112112
* [Encoding and decoding Bech32 text](man/bech32.md)
113-
* `mantis bech32-decode`
114-
* `mantis bech32-encode`
113+
* `mantra bech32-decode`
114+
* `mantra bech32-encode`
115115
* [Computing the Bech32 fingerprint of a token](man/fingerprint.md)
116-
* `mantis fingerprint`
116+
* `mantra fingerprint`
117117
* [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`
122122

123123

124124
API documentation
125125
-----------------
126126

127-
See https://functionally.github.io/mantis/ for API documentation.
127+
See https://functionally.github.io/mantra/ for API documentation.

app/Main.hs

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ module Main (
44
) where
55

66

7-
import Paths_mantis (version)
7+
import Cardano.Api (AsType(..), ShelleyBasedEra(..))
8+
import Paths_mantra (version)
89

9-
import qualified Mantis.Command as Mantis
10+
import qualified Mantra.Command as Mantra
1011

1112

1213
main :: IO ()
13-
main = Mantis.main version
14+
main =
15+
Mantra.main
16+
version
17+
AsMaryEra
18+
ShelleyBasedEraMary

app/Mantis/Command.hs app/Mantra/Command.hs

+24-22
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,44 @@
22
{-# LANGUAGE RecordWildCards #-}
33

44

5-
module Mantis.Command (
5+
module Mantra.Command (
66
main
77
) where
88

99

10-
import Cardano.Api (AsType(AsAlonzoEra), ShelleyBasedEra(ShelleyBasedEraAlonzo))
10+
import Cardano.Api (AsType, IsShelleyBasedEra, ShelleyBasedEra)
1111
import Data.Version (Version, showVersion)
12-
import Mantis.Command.Types (Mantis(..))
13-
import Mantis.Types (debugMantis, runMantisToIO)
12+
import Mantra.Command.Types (Mantra(..))
13+
import Mantra.Types (debugMantra, runMantraToIO)
1414
import System.Exit (exitFailure)
1515
import System.IO (hPutStrLn, stderr)
1616

17-
import qualified Mantis.Command.Bech32 as Bech32
18-
import qualified Mantis.Command.Chain as Chain
19-
import qualified Mantis.Command.Fingerprint as Fingerprint
20-
import qualified Mantis.Command.Info as Info
21-
import qualified Mantis.Command.Mint as Mint
22-
import qualified Mantis.Command.Script as Script
23-
import qualified Mantis.Command.Transact as Transact
24-
import qualified Mantis.Command.Watch as Watch
17+
import qualified Mantra.Command.Bech32 as Bech32
18+
import qualified Mantra.Command.Chain as Chain
19+
import qualified Mantra.Command.Fingerprint as Fingerprint
20+
import qualified Mantra.Command.Info as Info
21+
import qualified Mantra.Command.Mint as Mint
22+
import qualified Mantra.Command.Script as Script
23+
import qualified Mantra.Command.Transact as Transact
24+
import qualified Mantra.Command.Watch as Watch
2525
import qualified Options.Applicative as O
2626

2727

2828
data Command =
2929
Command
3030
{
3131
quiet :: Bool
32-
, mantis :: Mantis
32+
, mantra :: Mantra
3333
}
3434
deriving (Eq, Ord, Read, Show)
3535

3636

37-
main :: Version -> IO ()
38-
main version =
37+
main :: IsShelleyBasedEra era
38+
=> Version
39+
-> AsType era
40+
-> ShelleyBasedEra era
41+
-> IO ()
42+
main version asEra sbe =
3943
do
4044
let
4145
parser =
@@ -62,23 +66,21 @@ main version =
6266
(
6367
O.fullDesc
6468
<> O.progDesc "Utilities for Cardano scripts."
65-
<> O.header "Mantis Cardano tool."
69+
<> O.header "Mantra Cardano tool."
6670
)
6771
versionOption =
6872
O.infoOption
69-
("Mantis " ++ showVersion version ++ ", (c) 2021 Brian W Bush <[email protected]>")
73+
("Mantra " ++ showVersion version ++ ", (c) 2021 Brian W Bush <[email protected]>")
7074
(O.long "version" <> O.help "Show version.")
7175
verboseOption =
7276
O.switch
7377
(O.long "quiet" <> O.help "Minimal output.")
7478
Command{..} <- O.execParser parser
7579
let
76-
printer = if quiet then const $ return () else debugMantis
80+
printer = if quiet then const $ return () else debugMantra
7781
printer' = if quiet then const $ return () else hPutStrLn stderr
78-
sbe = ShelleyBasedEraAlonzo
79-
asEra = AsAlonzoEra
80-
result <- runMantisToIO
81-
$ case mantis of
82+
result <- runMantraToIO
83+
$ case mantra of
8284
Transact{..} -> Transact.main sbe printer configFile tokenName tokenCount tokenSlot outputAddress scriptFile metadataFile
8385
Mint{..} -> Mint.main sbe printer configFile mintingFile tokenSlot outputAddress scriptFile metadataFile
8486
Script{..} -> Script.main printer configFile tokenSlot scriptFile
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

2-
module Mantis.Command.Bech32 (
2+
module Mantra.Command.Bech32 (
33
command
44
, mainDecode
55
, mainEncode
66
) where
77

88

99
import Control.Monad.IO.Class (MonadIO)
10-
import Mantis.Command.Types (Mantis(Bech32Decode, Bech32Encode))
11-
import Mantis.Types (MantisM, foistMantisEither, foistMantisMaybe, printMantis)
10+
import Mantra.Command.Types (Mantra(Bech32Decode, Bech32Encode))
11+
import Mantra.Types (MantraM, foistMantraEither, foistMantraMaybe, printMantra)
1212

1313
import qualified Codec.Binary.Bech32 as Bech32 (dataPartFromBytes, dataPartToBytes, decodeLenient, encodeLenient, humanReadablePartFromText, humanReadablePartToText)
1414
import qualified Data.ByteString.Base16 as Base16 (decode, encode)
@@ -17,7 +17,7 @@ import qualified Options.Applicative as O
1717
import qualified Data.Text as T (pack, unpack)
1818

1919

20-
command :: O.Mod O.CommandFields Mantis
20+
command :: O.Mod O.CommandFields Mantra
2121
command =
2222
mconcat
2323
[
@@ -38,45 +38,45 @@ command =
3838

3939

4040
mainDecode :: MonadIO m
41-
=> (String -> MantisM m ())
41+
=> (String -> MantraM m ())
4242
-> String
43-
-> MantisM m ()
44-
mainDecode debugMantis text =
43+
-> MantraM m ()
44+
mainDecode debugMantra text =
4545
do
4646
(humanReadablePart, dataPart) <-
47-
foistMantisEither
47+
foistMantraEither
4848
. Bech32.decodeLenient
4949
$ T.pack text
5050
let
5151
humanReadablePart' =
5252
T.unpack
5353
$ Bech32.humanReadablePartToText humanReadablePart
5454
dataPart' <-
55-
foistMantisMaybe "Failed decoding data part."
55+
foistMantraMaybe "Failed decoding data part."
5656
$ BS.unpack . Base16.encode
5757
<$> Bech32.dataPartToBytes dataPart
58-
debugMantis $ "Human-readable part: " ++ humanReadablePart'
59-
printMantis dataPart'
58+
debugMantra $ "Human-readable part: " ++ humanReadablePart'
59+
printMantra dataPart'
6060

6161

6262
mainEncode :: MonadIO m
63-
=> (String -> MantisM m ())
63+
=> (String -> MantraM m ())
6464
-> String
6565
-> String
66-
-> MantisM m ()
66+
-> MantraM m ()
6767
mainEncode _ humanReadablePart dataPart =
6868
do
6969
humanReadablePart' <-
70-
foistMantisEither
70+
foistMantraEither
7171
. Bech32.humanReadablePartFromText
7272
$ T.pack humanReadablePart
7373
datapart' <-
74-
foistMantisEither
74+
foistMantraEither
7575
. fmap Bech32.dataPartFromBytes
7676
. Base16.decode
7777
$ BS.pack dataPart
7878
let
7979
encoded =
8080
T.unpack
8181
$ Bech32.encodeLenient humanReadablePart' datapart'
82-
printMantis encoded
82+
printMantra encoded

app/Mantis/Command/Chain.hs app/Mantra/Command/Chain.hs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{-# LANGUAGE RecordWildCards #-}
33

44

5-
module Mantis.Command.Chain (
5+
module Mantra.Command.Chain (
66
command
77
, command'
88
, main
@@ -13,29 +13,29 @@ import Cardano.Api (BlockHeader(..), ConsensusModeParams(CardanoModeParams), Epo
1313
import Control.Monad.Extra (whenJust)
1414
import Control.Monad.IO.Class (MonadIO, liftIO)
1515
import Data.Aeson.Encode.Pretty (encodePretty)
16-
import Mantis.Chain (extractScripts)
17-
import Mantis.Command.Types (Configuration(..), Mantis(..))
18-
import Mantis.Types (MantisM)
16+
import Mantra.Chain (extractScripts)
17+
import Mantra.Command.Types (Configuration(..), Mantra(..))
18+
import Mantra.Types (MantraM)
1919
import System.FilePath ((</>))
2020

2121
import qualified Data.ByteString.Char8 as BS (unpack)
2222
import qualified Data.ByteString.Lazy as LBS (writeFile)
2323
import qualified Options.Applicative as O
2424

2525

26-
command :: O.Mod O.CommandFields Mantis
26+
command :: O.Mod O.CommandFields Mantra
2727
command =
2828
O.command "watch-scripts"
2929
$ O.info options (O.progDesc "Download scripts used as transaction witnesses.")
3030

3131

32-
command' :: O.Mod O.CommandFields Mantis
32+
command' :: O.Mod O.CommandFields Mantra
3333
command' =
3434
O.command "chain-scripts"
3535
$ O.info options (O.progDesc "[Renamed to 'watch-scripts'.]")
3636

3737

38-
options :: O.Parser Mantis
38+
options :: O.Parser Mantra
3939
options =
4040
Chain
4141
<$> O.strArgument ( O.metavar "CONFIG_FILE" <> O.help "Path to configuration file." )
@@ -49,7 +49,7 @@ main :: MonadFail m
4949
-> FilePath
5050
-> Maybe FilePath
5151
-> Bool
52-
-> MantisM m ()
52+
-> MantraM m ()
5353
main debugIO configFile output continue =
5454
do
5555
Configuration{..} <- liftIO $ read <$> readFile configFile

0 commit comments

Comments
 (0)