Skip to content

Commit 31ae524

Browse files
add L1s networks manager, provide also information
1 parent f9de945 commit 31ae524

File tree

4 files changed

+639
-1
lines changed

4 files changed

+639
-1
lines changed

content/docs/tooling/toolbox-embeds.mdx

+8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ import SwitchChain from "../../../toolbox/src/demo/examples/Wallet/SwitchChain.t
2121
<SwitchChain />
2222
</ToolboxMdxWrapper>
2323

24+
### Add L1s
25+
26+
import AddL1s from "../../../toolbox/src/demo/examples/Wallet/AddL1s.tsx"
27+
28+
<ToolboxMdxWrapper>
29+
<AddL1s />
30+
</ToolboxMdxWrapper>
31+
2432
## L1
2533

2634
### Create Subnet

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
"vitest": "^2.1.9",
6262
"wagmi": "^2.14.8",
6363
"zod": "^3.24.1",
64-
"zustand": "^5.0.3"
64+
"zustand": "^5.0.3",
65+
"recharts": "^2.10.3"
6566
},
6667
"devDependencies": {
6768
"@types/mdx": "^2.0.13",

toolbox/src/demo/ToolboxApp.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ const componentGroups: Record<string, ComponentType[]> = {
2525
label: "Switch Chain",
2626
component: lazy(() => import('./examples/Wallet/SwitchChain')),
2727
fileNames: ["toolbox/src/demo/examples/Wallet/SwitchChain.tsx"]
28+
},
29+
{
30+
id: 'addL1s',
31+
label: "Add L1s",
32+
component: lazy(() => import('./examples/Wallet/AddL1s')),
33+
fileNames: []
2834
}
2935
],
3036
'Create an L1': [

0 commit comments

Comments
 (0)