-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathregistry.config.json
More file actions
110 lines (110 loc) · 5.15 KB
/
Copy pathregistry.config.json
File metadata and controls
110 lines (110 loc) · 5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "avail-widgets",
"namespace": "avail-widgets",
"homepage": "https://elements.nexus.availproject.org",
"baseUrl": "availproject/widgets",
"registryPath": "registry/avail-widgets",
"outputPath": "registry.json",
"peerDependencies": ["react", "react-dom"],
"pinnedDependencies": {
"@avail-project/nexus-core": "2.2.4"
},
"aliases": {
"@/lib/utils": "lib/utils.ts",
"@/components/ui": "registry/avail-widgets/ui",
"@/components": "registry/avail-widgets"
},
"targetPrefix": "components",
"libTarget": "lib",
"componentOverrides": {
"nexus-widget": {
"name": "nexus",
"targetName": "nexus",
"title": "Nexus Widget",
"description": "The unified Avail Nexus widget for swap, send, and deposit flows. One component for all cross-chain operations powered by Nexus intents.",
"docs": "NexusWidget is the single recommended component for all cross-chain flows. Supports config.mode = \"swap\" | \"send\" | \"deposit\" | \"fastBridge\".",
"meta": {
"featured": true
}
},
"fast-bridge": {
"title": "Fast Bridge",
"description": "Deprecated: use Nexus Widget instead. A legacy component built with Nexus to enable cross chain bridging.",
"docs": "Deprecated in favor of Nexus Widget. Use availproject/widgets/nexus for new integrations.",
"meta": {
"deprecated": true,
"deprecationMessage": "Fast Bridge is deprecated in favor of Nexus Widget. Use availproject/widgets/nexus for new integrations."
}
},
"transfer": {
"title": "Fast Transfer",
"description": "Deprecated: use Nexus Widget instead. A legacy component built with Nexus to enable cross chain transfer.",
"docs": "Deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"send\" for new integrations.",
"meta": {
"deprecated": true,
"deprecationMessage": "Fast Transfer is deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"send\" for new integrations."
}
},
"nexus": {
"name": "nexus-provider",
"title": "Nexus Provider",
"description": "Shared Nexus SDK provider and types for Avail Widgets"
},
"deposit": {
"title": "Deposit",
"description": "Deprecated: use Nexus Widget instead. A legacy component built with Nexus to enable deposits.",
"docs": "Deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"deposit\" for new integrations.",
"meta": {
"deprecated": true,
"deprecationMessage": "Deposit is deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"deposit\" for new integrations."
}
},
"swaps": {
"title": "Swaps",
"description": "Deprecated: use Nexus Widget instead. Legacy swap tokens across chains component.",
"docs": "Deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"swap\" for new integrations.",
"meta": {
"deprecated": true,
"deprecationMessage": "Swaps is deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"swap\" for new integrations."
}
},
"unified-balance": {
"title": "Unified Balance",
"description": "Deprecated: use Nexus Widget instead. Unified Balance has been removed in favor of Nexus Widget's inline balance views.",
"docs": "Deprecated in favor of Nexus Widget. NexusWidget includes inline balance views during swap, send, and deposit flows.",
"meta": {
"deprecated": true,
"deprecationMessage": "Unified Balance is deprecated in favor of Nexus Widget. Use availproject/widgets/nexus for new integrations."
}
},
"view-history": {
"title": "View History",
"description": "Deprecated: use Nexus Widget instead. View History has been removed. Use sdk.getMyIntents() for programmatic access.",
"docs": "Deprecated in favor of Nexus Widget. Intent history is not included in Nexus Widget V1. Use sdk.getMyIntents() directly.",
"meta": {
"deprecated": true,
"deprecationMessage": "View History is deprecated. Use sdk.getMyIntents() for programmatic intent history access."
}
},
"bridge-deposit": {
"title": "Bridge Deposit",
"description": "Deprecated: use Nexus Widget instead. Bridge Deposit has been removed in favor of Nexus Widget deposit mode.",
"docs": "Deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"deposit\" for new integrations.",
"meta": {
"deprecated": true,
"deprecationMessage": "Bridge Deposit is deprecated in favor of Nexus Widget. Use availproject/widgets/nexus with config.mode = \"deposit\" for new integrations."
}
},
"all": {
"title": "All Elements",
"description": "Install all Avail widgets. For new integrations, use availproject/widgets/nexus instead - it provides unified swap, send, and deposit in one component."
},
"utils": {
"title": "Utils (cn)",
"description": "Utility helpers used by UI components"
},
"common": {
"skip": true
}
}
}