ckBoost is a decentralized backend protocol built on the Internet Computer that solves the critical problem of slow Bitcoin to ckBTC conversion times. By creating a liquidity pool marketplace, ckBoost enables instant Bitcoin transactions, reducing confirmation times from 2 hours to ~15 minutes.
This is a protocol-only implementation - no frontend included. It's designed to be integrated by wallets, dApps, and other applications that need fast Bitcoin bridging.
ckBTC wrapping transactions are secure but slow. The standard confirmation time for minting ckBTC is approximately 2 hours, which creates significant friction for users who need faster access to their funds. This limitation is a major obstacle to ckBTC adoption for everyday transactions.
ckBoost introduces a novel approach to this problem through a two-sided marketplace:
-
Liquidity Providers: Users can create booster pools by depositing ckBTC and setting a fee percentage. These pools provide the liquidity needed to "boost" transactions.
-
Users: People who need faster access to their ckBTC can use these liquidity pools to receive their funds in approximately 15 minutes instead of waiting for 2 hours, paying a small fee to the liquidity providers.
- Create customizable booster pools with adjustable fee percentages (0.1% to 2%)
- Earn passive income by collecting fees when your pool is used for boosting transactions
- Monitor real-time pool balances and total boosted amounts
- Withdraw liquidity at any time (when not actively being used for boosting)
- Receive ckBTC in approximately 15 minutes instead of 2 hours
- Transparent fee system with no hidden costs
- Seamless user experience with real-time transaction tracking
- Smart Contracts: Motoko on the Internet Computer
- Blockchain Integration: ckBTC (chain-key Bitcoin)
- Standards: ICRC-1 for token transfers
- Build Tools: DFX (Internet Computer SDK)
ckBoost leverages the Internet Computer Protocol and its chain-key technology to create a trustless bridge between Bitcoin and ckBTC. The protocol consists of:
-
Core Canister: Written in Motoko, handles all protocol logic including liquidity pools, boost execution, and fund management.
-
ckBTC Integration: Direct integration with the ckBTC minter for Bitcoin monitoring and ckBTC minting.
-
Modular Design: Clean separation of concerns with dedicated modules for ledger operations, validation, and minting workflows.
-
ICRC-1 Compliance: Standard token operations for seamless integration with wallets and other protocols.
- Clone the repository:
git clone https://github.com/ckboost/ckboost-canister
cd ckboost-canister- Install dependencies:
npm install- Start local Internet Computer replica:
npm run start- Deploy the protocol locally:
npm run deploy:local- Generate type declarations:
npm run generateDeploy to Internet Computer mainnet:
npm run deploy:icThe ckBoost protocol exposes a comprehensive API for integration. Key functions include:
registerBoostRequest()- Create new boost requestsacceptBoostRequest()- Provide instant liquidityregisterBoosterAccount()- Become a liquidity providertriggerMintingForMyBoostRequest()- Fallback minting for usersreclaimMintedFunds()- Reclaim funds after minting
JavaScript/TypeScript Integration:
import { Actor } from "@dfinity/agent";
import { idlFactory } from "./declarations/backend";
const ckBoostActor = Actor.createActor(idlFactory, {
agent: your_agent,
canisterId: "your_canister_id"
});
// Create a boost request
const result = await ckBoostActor.registerBoostRequest(
amount_in_satoshis,
max_fee_percentage,
confirmations_required,
preferred_booster
);Complete Documentation: Visit docs.ckboost.com for comprehensive integration guides, API reference, and protocol documentation.
Built with ❤️ on the Internet Computer, during BUIDL Battle hackathon