KAIA transfer transaction

Creates a transaction for KAIA transfers with/without memos.

Request
Security:
header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Request Body schema: application/json
from
required
string

The Kaia account address that sends the transaction.

value
required
string

KAIA converted into kei.

to
required
string

The Kaia account address that receives the KAIA.

memo
string

Memo to appended to the transaction.

nonce
integer <int64>

Unique identifier for the transaction being sent (Entering 0 will set the value automatically)

gas
integer <int64>
Default: 1000000

The maximum computational units required to execute a transaction. (Entering 0 will set it to the default value)

submit
boolean

Shows whether to send the transaction to Kaia

Responses
200

The request is successful.

400

The request is not valid.

post/v2/tx/value
Request samples
application/json
{
  • "from": "0x60d0902c428D0E197F97a756011Fd4893C1E57B0",
  • "value": "0x0",
  • "to": "0x5053e2f0dDe795c423A2b7f551C873f6Ef6F4Daa",
  • "memo": "0x123",
  • "nonce": 0,
  • "gas": 0,
  • "submit": true
}
Response samples
application/json
{
  • "from": "0x60d0902c428d0e197f97a756011fd4893c1e57b0",
  • "gas": 1000000,
  • "gasPrice": "0x5d21dba00",
  • "input": "0x3078313233",
  • "nonce": 1377,
  • "rlp": "0x10f8878205618505d21dba00830f4240945053e2f0dde795c423a2b7f551c873f6ef6f4daa809460d0902c428d0e197f97a756011fd4893c1e57b0853078313233f847f8458207f5a076f84486b93e8d77fab2f6cb1d18336794438887c95caf50a33645e74ce6a0e9a039a9cfb11271361cd372da642da3f28e1a6310697304b9f0d7fffbd9d47b5e8f",
  • "signatures": [
    ],
  • "status": "Submitted",
  • "to": "0x5053e2f0dde795c423a2b7f551c873f6ef6f4daa",
  • "transactionHash": "0x7bf502fbef098f2ea7b159e32a3d36caede5d6d6497037950074b04dd342f5c0",
  • "typeInt": 16,
  • "value": "0x0"
}