Documentation
WebsiteMineGitHubFaucet
  • Welcome to MakeOS
  • Introduction
    • Install
    • Quick Start
    • Set Up a Private Network
    • Get Test Coins
    • Track a Repository
    • What is MakeOS
    • How it Works
    • Tokenomics ($MAKE)
    • Dilithium (Deprecated)
    • Roadmap
    • Team
  • Concepts
    • Repository
      • Register a Repository
      • Initialize a New Repository
      • Repository Governance
      • Access Control Config
    • Namespace
    • Key
    • Issue Management
    • Merge Request
    • Transactions
      • Register a Repository
      • Send Coins
    • Validator
    • Host
    • Remote
  • JavaScript Console API
    • repo
    • pushkey
    • namespace
    • node
    • user
    • transaction
    • ticket
  • KIT CLI Reference
    • Overview
    • init
    • start
    • console
    • attach
    • key
      • create
      • gen
      • get
      • import
      • list
      • update
    • tx
      • get
    • repo
      • config
      • create
      • hook
      • init
      • vote
    • user
      • send
    • pk
      • register
    • sign
      • commit
      • note
      • tag
    • contributor
      • add
    • issue
      • close
      • create
      • list
      • read
      • reopen
      • status
    • mr
      • checkout
      • close
      • create
      • fetch
      • list
      • read
      • reopen
      • status
Powered by GitBook
On this page
  • Usage
  • Options
  • Example

Was this helpful?

  1. KIT CLI Reference
  2. key

create

The create command is used to start a JavaScript console that connects to an already running local or remote Kit node.

Usage

kit key create [options]
Usage:
  kit key create [flags]

Flags:
  -h, --help       help for create
      --nopass     Force key to be created with no passphrase
      --push       Mark as Push Key
  -s, --seed int   Provide a strong seed (not recommended)

Options

  • --nopass - Sets the encryption passphrase to the default, unsafe passphrase “passphrase” which essentially means the key is unprotected. This is not recommended.

  • --push - Mark the key as a push key. This means the intent is to use the key for signing push requests. When the key is listed, the push key address will be printed out instead of a user address.

  • -s, --seed - Provide an integer to be used as the seed. This is not recommended and only used for testing situations where a key needs to be reproducible.

  • -h, --help - Prints out a help message.

Example

  • Create a regular key.

kit key create
Your new key needs to be locked. Please enter a passphrase. 
Passphrase> ** 
Repeat Passphrase> ** 
✅ Key successfully created!
 - Address: os1dr67qxhhvkjmzhvn6s7jm3rh7a09wg3zewcjn0
  • Create a Push Key

kit key create --push
Your new key needs to be locked. Please enter a passphrase. 
Passphrase> ** 
Repeat Passphrase> ** 
✅ Key successfully created!
 - Address: pk1wfx7vp8qfyv98cctvamqwec5xjrj48tpkfwme7

PreviouskeyNextgen

Last updated 4 years ago

Was this helpful?