inscriber9000

Crates.ioinscriber9000
lib.rsinscriber9000
version0.2.0
sourcesrc
created_at2023-12-17 15:18:46.405613
updated_at2023-12-17 16:49:29.360849
descriptionFor all your inscribing needs
homepage
repositoryhttps://github.com/pepyakin/inscriber9000
max_upload_size
id1072559
size3,027,175
Sergei Shulepov (pepyakin)

documentation

README

Inscriber 9000

inscriber 9000 serves all your inscribing needs. It will take whatever you want to inscribe, sign it with your private key, and then send it to the chain.

Getting Started

To install you need to have rust installed. (See https://rustup.rs/). Then you can install inscriber9000 with:

cargo install --force inscriber9000

Usage:

inscriber9000 \
    --private-key <your private key> \
    --chain=kusama \
    --remark='{"p":"ksm-20","op":"mint","tick":"sama","amt":"1000"}'`

To obtain your private key, you can use the subkey tool:

$ subkey inspect "noodle able degree toast undo ...."

Secret phrase:       noodle able degree toast undo
...

Alternatively, you could check out the repo and run it with cargo:

cargo run \
    --private-key <your private key> \
    --chain=kusama \
    --remark='{"p":"ksm-20","op":"mint","tick":"sama","amt":"1000"}'`
Commit count: 6

cargo fmt