The Native Workers are services for a distributed system for cross-chain Bitcoin-to-Sui interoperability and BYield. The architecture consists of several specialized workers that communicate via service bindings to enable seamless nBTC operations.
Workers are based on the Cloudflare Workers framework.
- Receives Bitcoin blocks from an external relayer via REST API
- Forwards blocks to BTCIndexer for processing
- Enables decoupled block processing through queue mechanism
- Main component for Bitcoin-to-Sui bridging
- Processes Bitcoin blocks to detect nBTC deposits
- Handles cross-chain minting of nBTC tokens on Sui
- Provides status tracking for nBTC transactions
- Runs scheduled cron jobs for continuous processing
- Handles nBTC redemption requests from users
- Tracks available UTXOs for redemptions
- Proposes appropriate UTXO sets for withdrawal transactions
- Coordinates with BTCIndexer for consistent state
4. Sui Indexer
- Monitors Sui blockchain for nBTC-related events
- Polls active packages for nBTC operations
- Provides indexing capabilities for cross-chain activities
5. Shared Library (lib)
- Provides common utilities, types, and configurations
- Offers logging infrastructure used across packages
- Ensures consistent implementation across all workers
- nBTC Minting Flow: Bitcoin deposits → Block-Ingestor → BTC-Indexer → Sui minting
- Redemption Flow: nBTC burn on Sui → Sui-Indexer → Redeem-Solver → UTXO proposal
- Status Tracking Flow: UI requests → BTC-Indexer → Status updates
graph TB
subgraph "External Systems"
Bitcoin[Bitcoin Network]
Sui[Sui Network]
Relayer[Bitcoin Relayer]
UI[bYield UI]
end
subgraph "Native Workers Infrastructure"
BI[(BTCIndexer)]
BL[(Block-Ingestor)]
RS[(Redeem Solver)]
SI[(Sui Indexer)]
end
%% External to Workers flows
Bitcoin -->|sends blocks| Relayer
Relayer -->|submits blocks| BL
UI -->|queries status| BI
UI -->|requests redemption| RS
%% Block ingestion flow
BL -->|forwards blocks| BI
%% Bitcoin indexing flow
BI -->|detects nBTC deposits| BI
BI -->|mints nBTC| Sui
BI -->|verifies blocks| Sui
%% Redemption flow
UI -->|initiates redemption| Sui
Sui -->|emits redemption events| SI
SI -->|monitors events| RS
RS -->|proposes UTXOs| Sui
%% Cross-component communication
BI -.-> BL
RS -.-> BI
SI -.-> Sui
style BI fill:#e1f5fe
style BL fill:#f3e5f5
style RS fill:#e8f5e8
style SI fill:#fff3e0
- bun >= 1.20.0
- proper editorconfig mode setup in your editor!
- Go (for Go API Client for the workers)
This is a monorepo: workspace with several sub packages. Check linking dependencies to learn how to manage dependencies between sub-packages.
Firstly install the latest dependencies and link hooks
make setup-hooks
bun installNavigate to a package that you want to build or run in the /packages directory.
To overwrite env vars used in your wrangler setup, copy: cp .dev.vars.example .dev.vars and update the values.
You will also need to setup a secrets store. For each secret defined in the wrangler.json:
- check the
store_idandsecret_name. - create a secret with scope
workers. Example:bun wrangler secrets-store secret create 75adbc6657de4f4cb739f63eb4d0cd7a --name NBTC_MINTING_SIGNER_MNEMONIC --scopes workers
Finally, you will need to set up databases used in local wrangler:
bun run db:migrate:localThe nBTC deposit addresses are stored in the nbtc_addresses table in the D1 database. You need to populate this table with the deposit addresses for the networks you want to support.
You can insert address directly to the DB:
bun wrangler d1 execute btcindexer-db --local --command=\"INSERT INTO nbtc_addresses (btc_network, sui_network, nbtc_pkg, btc_address) VALUES ('regtest', 'devnet', '0x...', 'bcrt1q90xm34jqm0kcpfclkdmn868rw6vcv9fzvfg6p6')\"Or (Recommended) refer to this document on how to run the scirpt.
Run the wrangler dev server of all workers (with auto reload):
bun run devWatch for changes and automatically test:
bun run test
# To test only some packages
bun run --filter package_pattern testTo enable logs during testing, use the ENABLE_LOGS environment variable:
ENABLE_LOGS=1 bun run testWhenever you make changes to wrangler.jsonc or update wrangler, generate types for your Cloudflare bindings:
bun run cf-typegenWorkers expose Cloudflare RPC. It is designed and limited to communicate directly between Cloudflare Workers, without going through HTTP endpoints. This enables efficient inter-worker communication using Service Bindings.
The RPC interface is provided through an RPC class that extends Cloudflare WorkerEntrypoint type.
RPC Interface is the preferred way for inter-worker communication within Cloudflare Workers for better performance and type safety.
Example usage in your client worker:
export default {
async fetch(request: Request, env: Env): Promise<Response> {
// Access the RPC stub using the binding name:
const btcIndexer = env.BTCINDEXER;
// Call RPC methods directly
const latestHeight = await btcIndexer.getLatestHeight();
console.log(`Latest block height: ${latestHeight.height}`);
return new Response("OK");
},
};- Type Safety: Direct method calls with TypeScript types
- Performance: No HTTP overhead
- Simplicity: No need to serialize/deserialize HTTP requests
- Direct Object Passing: Can pass complex objects directly between workers
Participating in open source is often a highly collaborative experience. We're encouraged to create in public view, and we're incentivized to welcome contributions of all kinds from people around the world.
Check out contributing repo for our guidelines & policies for how to contribute. Note: we require DCO! Thank you to all those who have contributed!
After cloning the repository, make sure to run make setup-hooks.