Skip to content

Commit 69b6e54

Browse files
committed
feat: update operational parameters to include Flare network
1 parent be88021 commit 69b6e54

2 files changed

Lines changed: 52 additions & 4 deletions

File tree

docs/fassets/09-operational-parameters.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,21 @@ Specific functions added to each parameter.
6666

6767
<OperationalParameters
6868
sectionTitle="Direct Minting"
69-
networks={["coston2", "songbird"]}
69+
networks={["flare", "coston2", "songbird"]}
7070
/>
7171

7272
## Minting Tag Manager
7373

7474
<OperationalParameters
7575
sectionTitle="Minting Tag Manager"
76-
networks={["coston2", "songbird"]}
76+
networks={["flare", "coston2", "songbird"]}
7777
/>
7878

7979
## Redeem With Tag
8080

8181
<OperationalParameters
8282
sectionTitle="Redeem With Tag"
83-
networks={["coston2", "songbird"]}
83+
networks={["flare", "coston2", "songbird"]}
8484
/>
8585

8686
:::tip[What's next]

src/features/FAssets/OperationalParameters/operational-parameters.ts

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export const operationalParameters = [
163163
"Minimum amount that can be redeemed, in base unit of the underlying asset (UBA).",
164164
values: {
165165
flare: {
166-
xrp: "-",
166+
xrp: "5 XRP",
167167
},
168168
coston2: {
169169
xrp: "5 TestXRP",
@@ -1266,6 +1266,9 @@ export const operationalParameters = [
12661266
description:
12671267
"Destination tag that must be added to core vault donation transactions.",
12681268
values: {
1269+
flare: {
1270+
xrp: "1",
1271+
},
12691272
coston2: {
12701273
xrp: "14",
12711274
},
@@ -1287,6 +1290,9 @@ export const operationalParameters = [
12871290
description:
12881291
"Minimum fee charged for direct minting, in base unit of the underlying asset (UBA).",
12891292
values: {
1293+
flare: {
1294+
xrp: "0.1 XRP",
1295+
},
12901296
coston2: {
12911297
xrp: "0.1 TestXRP",
12921298
},
@@ -1303,6 +1309,9 @@ export const operationalParameters = [
13031309
description:
13041310
"Direct minting fee as a percentage of the minting amount, in BIPS.",
13051311
values: {
1312+
flare: {
1313+
xrp: "0.1%",
1314+
},
13061315
coston2: {
13071316
xrp: "0.25%",
13081317
},
@@ -1319,6 +1328,9 @@ export const operationalParameters = [
13191328
description:
13201329
"Fee paid to the executor of a direct minting request, in base unit of the underlying asset (UBA). This only applies to direct mintings to address, for direct minting to smart account the executor fee is calculated and paid by the smart account manager.",
13211330
values: {
1331+
flare: {
1332+
xrp: "0.2 XRP",
1333+
},
13221334
coston2: {
13231335
xrp: "0.1 TestXRP",
13241336
},
@@ -1335,6 +1347,9 @@ export const operationalParameters = [
13351347
description:
13361348
"Time in seconds after which anyone can execute a direct minting request (not just the executor set by the minter).",
13371349
values: {
1350+
flare: {
1351+
xrp: "2 hours",
1352+
},
13381353
coston2: {
13391354
xrp: "2 hours",
13401355
},
@@ -1351,6 +1366,9 @@ export const operationalParameters = [
13511366
description:
13521367
"Maximum amount that can be directly minted per hour, in base unit of the underlying asset (UBA). After that the mintings are delayed.",
13531368
values: {
1369+
flare: {
1370+
xrp: "4M XRP",
1371+
},
13541372
coston2: {
13551373
xrp: "100k TestXRP",
13561374
},
@@ -1367,6 +1385,9 @@ export const operationalParameters = [
13671385
description:
13681386
"Maximum amount that can be directly minted per day, in base unit of the underlying asset (UBA). After that the mintings are delayed.",
13691387
values: {
1388+
flare: {
1389+
xrp: "40M XRP",
1390+
},
13701391
coston2: {
13711392
xrp: "500k TestXRP",
13721393
},
@@ -1383,6 +1404,9 @@ export const operationalParameters = [
13831404
description:
13841405
"Threshold above which a direct minting is considered large, in base unit of the underlying asset (UBA). Large mintings are always delayed.",
13851406
values: {
1407+
flare: {
1408+
xrp: "4M XRP",
1409+
},
13861410
coston2: {
13871411
xrp: "100k TestXRP",
13881412
},
@@ -1399,6 +1423,9 @@ export const operationalParameters = [
13991423
description:
14001424
"Delay in seconds imposed on large direct mintings before they can be executed.",
14011425
values: {
1426+
flare: {
1427+
xrp: "2 hours",
1428+
},
14021429
coston2: {
14031430
xrp: "1 hour",
14041431
},
@@ -1415,6 +1442,9 @@ export const operationalParameters = [
14151442
description: "Address that receives the direct minting fee.",
14161443
valueType: "address",
14171444
values: {
1445+
flare: {
1446+
xrp: "0xF55bcAd5568d1584ab6f013f144e1e433Ee551C7",
1447+
},
14181448
coston2: {
14191449
xrp: "0xDcDD7547EdA881b675B58c11922aF4A726cCb01B",
14201450
},
@@ -1436,6 +1466,9 @@ export const operationalParameters = [
14361466
description:
14371467
"Minimum amount that can be redeemed, in base unit of the underlying asset (UBA).",
14381468
values: {
1469+
flare: {
1470+
xrp: "5 XRP",
1471+
},
14391472
coston2: {
14401473
xrp: "5 TestXRP",
14411474
},
@@ -1453,6 +1486,9 @@ export const operationalParameters = [
14531486
name: "Name (NFT)",
14541487
description: "NFT collection name used by the minting tag manager.",
14551488
values: {
1489+
flare: {
1490+
xrp: "FXRP Minting Tag",
1491+
},
14561492
coston2: {
14571493
xrp: "Minting Tag Manager (FTestXRP open beta)",
14581494
},
@@ -1465,6 +1501,9 @@ export const operationalParameters = [
14651501
name: "Symbol (NFT)",
14661502
description: "NFT collection symbol used by the minting tag manager.",
14671503
values: {
1504+
flare: {
1505+
xrp: "MTFXRP",
1506+
},
14681507
coston2: {
14691508
xrp: "MTMTXRP",
14701509
},
@@ -1480,6 +1519,9 @@ export const operationalParameters = [
14801519
description:
14811520
"Fee charged when reserving a minting tag for the NFT-based manager.",
14821521
values: {
1522+
flare: {
1523+
xrp: "100 FLR",
1524+
},
14831525
coston2: {
14841526
xrp: "100 C2FLR",
14851527
},
@@ -1496,6 +1538,9 @@ export const operationalParameters = [
14961538
description: "Address that receives reservation fees.",
14971539
valueType: "address",
14981540
values: {
1541+
flare: {
1542+
xrp: "0x889A02c0E6d92e77188aDe03e3ce15B73228C197",
1543+
},
14991544
coston2: {
15001545
xrp: "0x355156629f25102c3cc51b7630eb80E9De5d1211",
15011546
},
@@ -1509,6 +1554,9 @@ export const operationalParameters = [
15091554
settingName: "reservedTagCount",
15101555
description: "Initial minting tag ID offset.",
15111556
values: {
1557+
flare: {
1558+
xrp: "30",
1559+
},
15121560
coston2: {
15131561
xrp: "20",
15141562
},

0 commit comments

Comments
 (0)