lumos-luna-sdk 2.5.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,8 +28,39 @@
|
|
|
28
28
|
|
|
29
29
|
| App | URL | What it does |
|
|
30
30
|
|-----|-----|-------------|
|
|
31
|
-
| **
|
|
32
|
-
| **
|
|
31
|
+
| **Luna Identity App** | [luid.fitlex.me](https://luid.fitlex.me) | Mobile wallet + DeFi + on-chain identity in one PWA |
|
|
32
|
+
| **Marketing Site** | [lunar.fitlex.me](https://lunar.fitlex.me) | Ecosystem overview, live on-chain stats, AI burn rate |
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Luna Identity App
|
|
37
|
+
|
|
38
|
+
A full-featured **mobile wallet and DeFi app** for Terra Classic, installable as a PWA. Try it at [luid.fitlex.me](https://luid.fitlex.me).
|
|
39
|
+
|
|
40
|
+
### Wallet
|
|
41
|
+
- **Create or import** wallet (BIP39 mnemonic, Terra Classic HD path)
|
|
42
|
+
- **Send LUNC** to any address (Binance, MEXC, other wallets) with memo support
|
|
43
|
+
- **Receive** with scannable QR code
|
|
44
|
+
- **Balance display** for LUNC + USTC with manual refresh
|
|
45
|
+
- **Transaction history** (sends, receives, swaps, contract calls)
|
|
46
|
+
- Encrypted local storage (AES-256-GCM) with password visibility toggle
|
|
47
|
+
|
|
48
|
+
### Identity (On-Chain)
|
|
49
|
+
- **Register** a SoulBound digital citizenship by burning LUNC
|
|
50
|
+
- **ID Card** with QR code for public verification (`/verify/[address]`)
|
|
51
|
+
- **Level system** — burn more to level up (Citizen → Senator → Founder)
|
|
52
|
+
- **Governance** — create and vote on proposals (level 3+)
|
|
53
|
+
|
|
54
|
+
### DeFi
|
|
55
|
+
- **Swap** LUNC → USTC on TerraSwap with live pool quotes, slippage control, price impact warnings
|
|
56
|
+
- **Stable Vault** — mint lUSD (1:1 USDC-backed) / redeem USDC, with identity-based fee discounts
|
|
57
|
+
- **Proof of Burn** — burn LUNC and receive immutable on-chain receipts
|
|
58
|
+
|
|
59
|
+
### Tech
|
|
60
|
+
- Next.js 14 PWA (installable on iOS/Android)
|
|
61
|
+
- CosmJS signing (DirectSecp256k1HdWallet + SigningCosmWasmClient)
|
|
62
|
+
- Live on-chain data from Terra Classic LCD
|
|
63
|
+
- LUNC price, AI Oracle burn rate, market data via CoinGecko
|
|
33
64
|
|
|
34
65
|
---
|
|
35
66
|
|
|
@@ -80,7 +111,7 @@ All collected fees are **permanently burned**.
|
|
|
80
111
|
|
|
81
112
|
### Luna Identity — SoulBound Citizenship NFTs
|
|
82
113
|
|
|
83
|
-
Non-transferable on-chain identity. Burn LUNC to register, level up through contributions, unlock fee discounts in Stable Vault V2. Try it at [luid.fitlex.me](https://luid.fitlex.me).
|
|
114
|
+
Non-transferable on-chain identity with a full wallet and DeFi suite. Burn LUNC to register, level up through contributions, unlock fee discounts in Stable Vault V2. Includes send/receive, DEX swap, TX history, and governance voting. Try it at [luid.fitlex.me](https://luid.fitlex.me).
|
|
84
115
|
|
|
85
116
|
### Governance Voting — On-Chain Proposals
|
|
86
117
|
|
|
@@ -375,6 +406,8 @@ See `/examples` folder for complete usage examples.
|
|
|
375
406
|
```
|
|
376
407
|
/apps
|
|
377
408
|
/luna-identity # Next.js PWA — luid.fitlex.me
|
|
409
|
+
/src/components # SendModal, ReceiveModal, SwapPanel, StableVault, Governance, ...
|
|
410
|
+
/src/lib # secure-wallet.ts, api.ts, store.ts, constants.ts
|
|
378
411
|
/burnfeed # Burn feed viewer
|
|
379
412
|
|
|
380
413
|
/contracts # Rust CosmWasm smart contracts (Cargo workspace)
|
package/package.json
CHANGED