UAX
  • Welcome to UAXNETWORK
  • Getting Started
    • Quickstart
    • Why Uaxnetwork?
    • Running A Node
      • Overview
      • Installation
      • Machine ID
      • Staking
      • Node Configuration
      • Start mining
      • Node Troubleshooting
    • JSON-API
      • getBalance
      • getlastBlock
      • Last50Blocks
      • getTotalTransaction
      • GetTransactionDetailsByTxnId
      • getBlockDetailsByHash
      • getBlockDetailsByNumber
      • GetPendingTransaction
      • sendTransaction
      • estimateBandwidth
      • getBlockByHash
      • getBlockByNumber
      • getTransactionByHash
      • GetBalanceAndBandwidth
      • GetTotalAddress
      • AvailableBandwidth
      • UAXNPRICE
    • Consensus Protocol
      • Overview
      • Reward System
    • Artificial Intelligence Smart Integrations (AISI)
  • Links
    • White paper
Powered by GitBook
On this page
  1. Getting Started
  2. JSON-API

sendTransaction

POST send_Transaction

curl -X POST http://localhost:8491 \
-H "Content-Type: application/json" \
-d '{
    "jsonrpc": "2.0",
    "method": "uaxn_send_transaction",                  
    "params": {
        "privatekey": "Your Private Key",
        "pass": "Account Password",
        "amount": 10,
        "recipient": "D33I9VV501Hg.uaxn",
        "remark": "UAXN"
    },
    "id": 1
}'
PreviousGetPendingTransactionNextestimateBandwidth

Last updated 17 days ago