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
  • Arguments
  • Options
  • Example

Was this helpful?

  1. KIT CLI Reference
  2. user

send

The send command creates a transaction that transfers coins from an account to another account or repository.

Usage

kit user send [options] <address>
Usage:
  kit user send [flags] <address>

Flags:
  -f, --fee float                 Set transaction fee to pay to the network
  -h, --help                      help for send
  -n, --nonce uint                Set the next nonce of the signing account signing
  -u, --signing-key string        Address or index of local account to use for signing transaction
  -p, --signing-key-pass string   Passphrase for unlocking the signing account
  -v, --value float               Set the amount of coin to send

Arguments

  • address - The recipient address. Can be a user address or a repository address. A namespace URI pointing to a repository or a user address can also be used.

Options

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

Transaction Options

  • -f, --fee - The amount to pay as transaction fee. It will be deducted from the signer's account.

  • -n, --nonce - The next nonce of the signer's account (current nonce + 1).

  • -v, --value - The number of coins to transfer from the signer's account.

  • -u, --signing-key - The address or index of a key that will be used to sign the transaction.

  • -p, --signing-key-pass - The passphrase that will be used to unlock the signing key.

Example

  • Create a transaction that transfers 210 coin to os1qfrysysaawvjlgfz5ecqv569adkkw7sxudy36u and pays 1.51 coins as network fee.

kit user send -u=0 -v=210 -f=1.51 "os1qfrysysaawvjlgfz5ecqv569adkkw7sxudy36u"
✅ Transaction sent!
 - Hash: 0x8297afee13e9a34d3023867ce0d4ca9e515fd1dd3560d959301436d41da3c116
   Confirmed!
  • Create a transaction that transfers 10 coins to a repo named myrepo.

kit user send -u=0 -v=210 -f=1.51 "r/myrepo"
PrevioususerNextpk

Last updated 4 years ago

Was this helpful?