@nexus-cross/dapp-ui 1.4.0-beta.3 → 1.4.0-beta.5
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 +10 -1
- package/dist/index.cjs +26 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1430 -1215
- package/dist/index.d.ts +1430 -1215
- package/dist/index.js +26 -25
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
CROSS 생태계 DApp 공통 UI 컴포넌트 패키지.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
공통 DApp 기능을 제공한다. 주요 진입점:
|
|
6
6
|
|
|
7
7
|
- **AppLauncher**: 글로벌 서비스 메뉴
|
|
8
8
|
- **WalletInfo**: 지갑 잔액·가격·등락률 조회 UI
|
|
9
9
|
- **WalletConnectModal**: 지갑 연결 모달/드로어 UI
|
|
10
10
|
- **WalletPortfolio**: 리워드·DEX 포지션 포트폴리오 UI
|
|
11
|
+
- **GetOneUsd**: Swap·Bridge·Relay를 묶은 ONEUSD 획득 플로팅/버튼 위젯
|
|
11
12
|
|
|
12
13
|
> 이전 패키지 이름: `cross-app-launcher` (`@nexus-cross/dapp-ui@0.0.1+` 부터 rename).
|
|
13
14
|
|
|
@@ -39,9 +40,17 @@ import {
|
|
|
39
40
|
WalletInfo,
|
|
40
41
|
WalletConnectModal,
|
|
41
42
|
WalletPortfolio,
|
|
43
|
+
GetOneUsd,
|
|
42
44
|
} from "@nexus-cross/dapp-ui";
|
|
43
45
|
```
|
|
44
46
|
|
|
47
|
+
## AI-assisted integration
|
|
48
|
+
|
|
49
|
+
Give an AI coding agent [`AI_INTEGRATION.md`](./AI_INTEGRATION.md) as the
|
|
50
|
+
implementation contract. It contains the canonical Get ONEUSD mount location,
|
|
51
|
+
route-persistent floating transaction status rule, mode behavior, and the
|
|
52
|
+
boundary between `CrossGetOneUsd` and the low-level `GetOneUsd` ports.
|
|
53
|
+
|
|
45
54
|
---
|
|
46
55
|
|
|
47
56
|
## AppLauncher
|