You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implements a Coretime guide page with information on obtaining coretime in Paseo.
Refactors the FAQ section to support linking to internal pages and external resources, enhancing user navigation and information access.
description="Obtaining coretime in Paseo follows the same process as production networks. All extrinsics are called on the Coretime chain as part of the broker pallet."
"If you'd prefer a more streamlined experience, RegionX Hub provides tools that abstract away much of this process and can help simplify coretime management on Paseo.",
"To buy a core (if availability remains), use the broker.purchase extrinsic on the Coretime chain.",
34
+
"If the price exceeds 5,000 PAS, you'll need to contact the Paseo team to be whitelisted and obtain enough funds, otherwise you won't be able to purchase the core.",
35
+
"Once purchased, call broker.assign to create a region and assign the core to your parachain. The region will be valid starting from a specific timeslice—typically the beginning of the next cycle.",
36
+
"When the region starts, your chain will begin receiving coretime and producing blocks.",
37
+
],
38
+
},
39
+
{
40
+
number: 2,
41
+
icon: RefreshCw,
42
+
title: "Renewing Your Core",
43
+
content: [
44
+
"When the interlude period begins (the first ~2 days of each cycle), you can renew your core for the upcoming cycle using broker.renew.",
45
+
"If you prefer automatic renewals, enable them with broker.enableAutoRenewal. This will renew your core each cycle as long as your parachain's sovereign account has sufficient funds to pay for the renewal.",
46
+
],
47
+
note: "Autorenewal should be called using the chain sovereign account on Coretime. Due to the PAS balance restriction, teams requiring auto-renewal should contact the Paseo support team to ensure adequate funds in their sovereign account + an open HRMP channel with the coretime chain.",
48
+
},
49
+
{
50
+
number: 3,
51
+
icon: Zap,
52
+
title: "Starting Block Production Immediately",
53
+
content: [
54
+
"Don't want to wait up to a month for the next cycle to begin? Since Paseo is a testnet, there's a shortcut available.",
55
+
"You still need to purchase coretime and assign the region as described above. However, the Paseo team can manually assign a core on the relay chain so your chain can start producing blocks right away—within the current cycle.",
56
+
"Keep in mind this manual assignment is only valid for the current cycle. To guarantee coretime in future cycles, you must purchase it through the standard process.",
Copy file name to clipboardExpand all lines: src/constants/faq.ts
+23-6Lines changed: 23 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,14 @@
1
1
import{URLS}from"./urls";
2
2
3
-
interfaceFAQItem{
3
+
exportinterfaceFAQLink{
4
+
readonlyurl: string;
5
+
readonlylabel?: string;
6
+
}
7
+
8
+
exportinterfaceFAQItem{
4
9
readonlyquestion: string;
5
10
readonlyanswer: string;
11
+
readonlylinks?: readonlyFAQLink[];
6
12
}
7
13
8
14
// FAQ Content
@@ -12,7 +18,9 @@ export const FAQ_CONTENT = {
12
18
items: [
13
19
{
14
20
question: "How do I obtain coretime in Paseo?",
15
-
answer: `One can obtain coretime in Paseo by participating on coretime sales, just like in production. After getting some tokens from the faucet one can easily participate in sales via: ${URLS.regionXHub}`,
21
+
answer:
22
+
"One can obtain coretime in Paseo by participating on coretime sales, just like in production. Learn more about purchasing, renewing, and managing coretime.",
answer: `The maintainers of the testnet are a distributed group of contributors taking care of the testnet runtimes and its infrastructure. The exact list can be seen at: ${URLS.githubGovernance}/`,
33
+
answer:
34
+
"The maintainers of the testnet are a distributed group of contributors taking care of the testnet runtimes and its infrastructure.",
question: "I am a bit lost or I need further support, what do I do?",
38
-
answer: `The best ways of contacting the involved contributors are: Open an issue at: ${URLS.githubSupport} or Join the public paseo matrix room: ${URLS.matrixSupport}`,
51
+
answer: "The best ways of contacting the involved contributors are:",
0 commit comments