Global fee delegation KAIA transfer transaction

Create a transaction for KAIA transfers with/without memos using KAS Global Fee Payer account.

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

Kaia Network Chain ID (1001 or 8217)

Request Body schema: application/json
from
required
string

Kaia account address to send transaction

value
required
string

KAIA converted into kei

to
required
string

KAIA receiver's Kaia account address

memo
string

Memo to be attached to the transaction.

nonce
integer <int64>

Unique identifier for the transactions being sent (By entering 0, the nonce will be automatically determined)

gas
integer <int64>
Default: 1000000

The maximum computational units required to execute a transaction. (By entering 0, it will be set to default value))

submit
boolean

Shows whether to send the transaction to Kaia

feeRatio
integer <int64> <= 99

The ratio of the gas fee to be delegated. When it's empty or 0, the entire fee will be delegated.

Responses
200

The request is successful.

400

The request is not valid.

post/v2/tx/fd/value
Request samples
application/json
{
  • "from": "0x60d0902c428D0E197F97a756011Fd4893C1E57B0",
  • "value": "0x0",
  • "to": "0x5053e2f0dDe795c423A2b7f551C873f6Ef6F4Daa",
  • "memo": "0x123",
  • "nonce": 0,
  • "gas": 0,
  • "submit": true
}
Response samples
application/json
{
  • "feePayer": "0x1b71a63903e35371e2fc41c6012effb99b9a2c0f",
  • "from": "0x60d0902c428d0e197f97a756011fd4893c1e57b0",
  • "gas": 1000000,
  • "gasPrice": "0x5d21dba00",
  • "input": "0x3078313233",
  • "nonce": 1395,
  • "rlp": "0x11f8e58205738505d21dba00830f4240945053e2f0dde795c423a2b7f551c873f6ef6f4daa809460d0902c428d0e197f97a756011fd4893c1e57b0853078313233f847f8458207f5a0953a379d2d9b096c5263f5c85e67e83849207366cc74a98d69775e27e95f6346a0085377d303dd03616546c5f60afa65ca6153cdea498f400c31c348bc930dd452941b71a63903e35371e2fc41c6012effb99b9a2c0ff847f8458207f6a099f2733e5d234796d3d016b00da1d8df123566146701b04883f7dae2f57ad885a03b04596ad5e6ad6c3083f261312d6918f992fd6e222a98ec145b145509acc8d4",
  • "signatures": [
    ],
  • "status": "Submitted",
  • "to": "0x5053e2f0dde795c423a2b7f551c873f6ef6f4daa",
  • "transactionHash": "0x281f0c2436b551a9180429b5efbd130b6a727609c55c309e07510e04f34bab6d",
  • "typeInt": 17,
  • "value": "0x0"
}