Transaction Data
The following information is needed to prepare for and ultimately submit a Kima transaction.
The fee amount and
feeIdThe user choice of whether to pay fees from the origin or target chain
The message containting the transaction details for the user to sign
The allowance amount the user should approve so Kima can move tokens on behalf of the user
The amounts expected when the transaction is submitted
Fortunately, all of these values are calculated by an endpoint exposed by the Kima chain.
Using this endpoint is required as it will return a feeId which must be passed to submit endpoints in the backend (/submit/transfer or /submit/swap).
Non-BTC origin transactions submitted to Kima without a
feeIdor signature will be rejectedFor non-BTC origin transactions, submitted amounts are validated against the
feeIdand signed message. Any mismatch will result in rejection.
These are security measures to protect the user and ensure the transaction is legitimate.
Reading token metadata
Use GET /chains to read token metadata for the selected origin token.
decimals: use this for amount handlingisPermit2: determines whether submit payload must includeoptions.permit2
BTC-origin note
For BTC-origin transactions, GET /submit/fees is still required to get feeId and the submit amount.
Before calling /submit/transfer or /submit/swap, prepare BTC HTLC lock data:
POST /btc/htlc/lock-intentUser broadcasts BTC to the returned
htlcAddressPOST /btc/htlc/recordusing the broadcasttxid
The values returned by /btc/htlc/record are then included in the final submit payload.
Using the Kima Backend
GET /submit/fees
Query Params (all required):
amount(number): the amount of tokens to transferoriginAddress(string): the source user addressoriginChain(string): the chain the user tokens will come fromoriginSymbol(string): the token symbol the user will pay with (or bridge from)targetAddress(string): the receiving addresstargetChain(string): the destination chaintargetSymbol(string): the token symbol being delivered
Example:
Success Response:
Amounts are returned as both numbers representing the amount in whole tokens and as a string representing the integer amount in the smallest unit of the token (e.g. USDC is 6 decimals).
feeId(string): a unique identifier for the fee; include this in submit requestsfeeOrigin*the gas fee for the origin chainfeeKimaProcessing*The processing fee (currently 0.05%)feeTarget*the gas fee for the target chainfeeTotal*the total fee in USDtransactionValues: amounts used for the allowance and submitting the transactionfeeFromOrigin: amounts used when the user selects to pay fees from the origin amountallowanceAmount: the token amount that needs to be approved. Can be passed directly to the contract call.submitAmount: the amount that needs to be passed to submit endpoints
feeFromTarget: amounts used when the user selects to pay fees from the target amount
The allowanceAmount is the one you'll need to pass to the contract call. There are 2 variants returned depending on whether the user chooses to pay fees from the origin or target amount.
When paying fees from the origin, use
transactionValues.feeFromOriginvalues.When paying fees from the target, use
transactionValues.feeFromTarget.
Example:
Transferring 10 USDC from ARB to SOL with 0.07371 USD in total fees.
When paying fees from the origin
The user pays fees on Arbitrum. The total fees are included in the allowance amount.
User signs the message
I approve the transfer of 10.07371 USDK from ARB to <targetAddress> on SOL.(feeFromOrigin.message)The user approves a transfer of
10.07371USDC on Arbitrum (feeFromOrigin.allowanceAmount)The amount sent to submit endpoint is amount RECEIVED on the target chain
Therefore the amount sent to submit endpoint is
10USDC (feeFromOrigin.submitAmount)Also included is the
feeIdand signature
The user receives
10USDC on Solana
When paying fees from the target chain
The user does not pay fees on Arbitrum
User signs the message
I approve the transfer of 10 USDK from ARB to <targetAddress> on SOL.(feeFromTarget.message)The user approves a transfer of
10USDC on Arbitrum (feeFromTarget.allowanceAmount)The amount sent to submit endpoint is
9.926290USDC (feeFromTarget.submitAmount)The fees are deducted from the amount recieved on Solana so the user receives
9.926290USDC on Solana
Save the corresponding submitAmount, message and feeId for later as they are needed to submit the transaction.
Last updated