You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add migrate command, live bridge detection, status monitor, dynamic discovery
The killer feature: `daybreak migrate` orchestrates end-to-end NTT migration
from EVM token analysis to deployed Solana bridge in a single command. Also adds
live WormholeScan API bridge detection (Portal vs NTT vs Native distinction),
post-migration health monitoring via `daybreak status`, CoinGecko-powered token
discovery, day-one liquidity planning in reports, and indicatif progress spinners.
New commands: migrate, status
New modules: discovery.rs
Tests: 10 → 33 (bridge types, discovery, serialization, formatting)
Version: 0.5.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
<!-- Re-record demo with: daybreak migrate, status, list --discover -->
10
11

11
12
12
-
Daybreak analyzes any ERC-20 token on-chain — bytecode, capabilities, proxy patterns, bridge status — and tells you exactly how to migrate it to Solana using Native Token Transfers. It scores risk, recommends NTT modes, generates deployment configs, and deploys SPL tokens with metadata.
13
+
Daybreak takes any ERC-20 token from analysis to deployed NTT bridge in a single command. It analyzes bytecode, capabilities, proxy patterns, and bridge status on-chain — then deploys the SPL token, writes the NTT config, and orchestrates the Wormhole CLI to complete the bridge. One command to migrate any EVM token to Solana via Sunrise.
13
14
14
15
## Why NTT?
15
16
@@ -19,11 +20,13 @@ Daybreak analyzes any ERC-20 token on-chain — bytecode, capabilities, proxy pa
19
20
20
21
Moving an ERC-20 token to Solana means reading Wormhole docs, understanding NTT modes, checking decimal compatibility, analyzing bytecode for blockers, and manually writing deployment configs. **Daybreak does all of this in one command.**
21
22
23
+
-**One-command migration** — `migrate` goes from EVM token to deployed NTT bridge end-to-end
24
+
-**Live bridge detection** — Queries WormholeScan API to distinguish Portal (wrapped) vs NTT (native) vs Native tokens
22
25
-**Instant analysis** — Risk score, compatibility verdict, and mode recommendation in seconds
23
26
-**Zero guesswork** — Generates `deployment.json` and NTT CLI commands ready to run
24
-
-**Discovery at scale** — `list` finds 50+ migration candidates you didn't know about
27
+
-**Dynamic discovery** — `list --discover` finds migration candidates via CoinGecko API
28
+
-**Post-migration monitoring** — `status` tracks bridge health, supply, and transfer activity
25
29
-**Real deployment** — `deploy` creates SPL tokens on Solana with Metaplex metadata
26
-
-**Readiness check** — `check` verifies your tools, wallet, and config before you start
27
30
28
31
## Prerequisites
29
32
@@ -37,46 +40,54 @@ Moving an ERC-20 token to Solana means reading Wormhole docs, understanding NTT
0 commit comments