Skip to content

Commit b1da93a

Browse files
authored
feat(docs): add Coston2 network parameters (#708)
1 parent 82f9828 commit b1da93a

File tree

2 files changed

+224
-2
lines changed

2 files changed

+224
-2
lines changed

src/components/FAssets/OperationalParameters.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function OperationalParameters({
2424
network,
2525
parameters,
2626
}: {
27-
network: "songbird" | "coston";
27+
network: "songbird" | "coston" | "coston2";
2828
parameters: (typeof operationalParameters)[number]["parameters"];
2929
}) {
3030
return (
@@ -101,10 +101,17 @@ export default function OperationalParameters({
101101
<Tabs
102102
defaultValue="songbird"
103103
values={[
104+
{ label: "Flare Testnet Coston2", value: "coston2" },
104105
{ label: "Songbird Canary-Network", value: "songbird" },
105106
{ label: "Songbird Testnet Coston", value: "coston" },
106107
]}
107108
>
109+
<TabItem value="coston2">
110+
<ParameterTable
111+
network="coston2"
112+
parameters={operationalParametersSection.parameters}
113+
/>
114+
</TabItem>
108115
<TabItem value="songbird">
109116
<ParameterTable
110117
network="songbird"

0 commit comments

Comments
 (0)