Inspectable CKB
Transaction Actions.
A reusable workflow layer for building, validating, and broadcasting externally signed CKB transactions. API-first. Protocol-grade.
Input Cell
Backend-ready actions
Generate reusable CKB transaction actions from HTTP-friendly inputs, without binding every product surface to a browser wallet SDK.
Form-to-JSON workflows
Turn simple action fields into visible transaction JSON with summaries, warnings, selected cells, fee estimates, and signing steps.
Dry-run before broadcast
Keep signing outside CellKit, then validate, dry-run, and submit signed testnet transactions through one explicit verification flow.
Action response console
CellKit is not a wallet. It produces inspectable artifacts for teams that want transaction generation, external signing, validation, and broadcast as separate steps.
{
"action": "ckb.transfer",
"network": "testnet",
"status": "built",
"summary": {
"selectedCellCount": 2,
"estimatedFeeShannons": "1432"
},
"signing": {
"required": true,
"where": "external wallet"
}
}Verification-first
For CKB transfer, the backend handles live-cell lookup, ordinary cell filtering, deterministic selection, fee estimation, and unsigned skeleton construction.
Explicit testnet broadcast
Signed transactions are validated and dry-run before broadcast by default. The UI keeps each step visible and deliberate.
Open Broadcast FlowSupported Actions
MVP transaction templates
CKB Transfer
Build an unsigned CKB transfer transaction for testnet wallets and apps.
xUDT Transfer
Build an unsigned xUDT transfer with token cells, capacity funding, and configured xUDT deps.
Cell Consolidation
Build an unsigned transaction that consolidates ordinary CKB cells back to one owner address.
Capacity Lock
Build an unsigned transfer that funds a target lock address with optional memo metadata.
Data Cell Create
Build an unsigned transaction that creates an ordinary CKB data cell.
Deterministic output.
Every action is built for review. CellKit keeps the transaction shape visible before signatures and network submission.