Skip to content

Commit 8915736

Browse files
authored
fix: update operational parameters for FAssets (#1411)
1 parent cd7dc65 commit 8915736

2 files changed

Lines changed: 42 additions & 9 deletions

File tree

docs/fassets/reference/IMintingTagManager.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ Return the fee (in native currency) required to reserve a new minting tag.
7878
function reservationFee() external view returns (uint256);
7979
```
8080

81+
### `reservationFeeRecipient`
82+
83+
Return the address that receives reservation fees.
84+
85+
```solidity
86+
function reservationFeeRecipient() external view returns (address payable);
87+
```
88+
89+
#### Returns
90+
91+
- The address that receives fees paid when reserving minting tags.
92+
8193
### `reservedTagsForOwner`
8294

8395
Return all minting tag IDs owned by the given address.

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

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ export const operationalParameters = [
99
"Total amount of allowed FAssets in circulation. Once reached, no more FAssets can be minted until some are redeemed. This is intended as a security measure. In the final deployment, this cap will be gradually increased and finally removed.",
1010
values: {
1111
flare: {
12-
xrp: "70M XRP",
12+
xrp: "170M XRP",
1313
},
1414
coston2: {
15-
xrp: "none",
15+
xrp: "-",
1616
},
1717
songbird: {
1818
xrp: "750k XRP",
@@ -169,7 +169,7 @@ export const operationalParameters = [
169169
xrp: "5 TestXRP",
170170
},
171171
songbird: {
172-
xrp: "-",
172+
xrp: "5 XRP",
173173
},
174174
coston: {
175175
xrp: "-",
@@ -353,7 +353,7 @@ export const operationalParameters = [
353353
xrp: "1.3",
354354
},
355355
coston2: {
356-
xrp: "1.2",
356+
xrp: "1.3",
357357
},
358358
songbird: {
359359
xrp: "1.3",
@@ -527,7 +527,7 @@ export const operationalParameters = [
527527
description: "Where do the funds come from to pay for liquidations?",
528528
values: {
529529
flare: {
530-
xrp: "The collateral's vault",
530+
xrp: "The collateral pool",
531531
},
532532
coston2: {
533533
xrp: "The collateral pool",
@@ -919,11 +919,14 @@ export const operationalParameters = [
919919
"The minting fee is when users (minters) mint FAssets by depositing underlying assets with an agent.",
920920
link: "/fassets/minting#minting-fee",
921921
values: {
922+
flare: {
923+
xrp: "0.1%",
924+
},
922925
coston2: {
923926
xrp: "0.25%",
924927
},
925928
songbird: {
926-
xrp: "1%",
929+
xrp: "0.25%",
927930
},
928931
coston: {
929932
xrp: "0.25%",
@@ -939,6 +942,9 @@ export const operationalParameters = [
939942
"The pool share fee is the portion of the minting and redemption fees allocated to pool collateral providers.",
940943
link: "/fassets/minting#pool-share",
941944
values: {
945+
flare: {
946+
xrp: "30%",
947+
},
942948
coston2: {
943949
xrp: "40%",
944950
},
@@ -959,6 +965,9 @@ export const operationalParameters = [
959965
"The minting vault collateral ratio is the minimum collateral required to back FAssets, ensuring value protection against under-collateralization.",
960966
link: "/fassets/collateral#minting-cr",
961967
values: {
968+
flare: {
969+
xrp: "1.4",
970+
},
962971
coston2: {
963972
xrp: "1.4",
964973
},
@@ -979,6 +988,9 @@ export const operationalParameters = [
979988
"The minting pool collateral ratio ensures the collateral value supports the minted FAssets.",
980989
link: "/fassets/collateral#minting-cr",
981990
values: {
991+
flare: {
992+
xrp: "1.7",
993+
},
982994
coston2: {
983995
xrp: "1.7",
984996
},
@@ -999,6 +1011,9 @@ export const operationalParameters = [
9991011
"The pool exit collateral ratio is the minimum collateral ratio agents must maintain when exiting their pool collateral.",
10001012
link: "/fassets/collateral#exit-cr",
10011013
values: {
1014+
flare: {
1015+
xrp: "1.6",
1016+
},
10021017
coston2: {
10031018
xrp: "1.6",
10041019
},
@@ -1019,6 +1034,9 @@ export const operationalParameters = [
10191034
"Applied when agents buy back FAssets during liquidation events, shown as a factor on the Agent UI.",
10201035
link: "/fassets/liquidation#stopping-liquidations",
10211036
values: {
1037+
flare: {
1038+
xrp: "99%",
1039+
},
10221040
coston2: {
10231041
xrp: "99%",
10241042
},
@@ -1038,6 +1056,9 @@ export const operationalParameters = [
10381056
description:
10391057
"Percentage of redemption fees paid to the pool to sustain it during high redemption periods.",
10401058
values: {
1059+
flare: {
1060+
xrp: "30%",
1061+
},
10411062
coston2: {
10421063
xrp: "40%",
10431064
},
@@ -1109,7 +1130,7 @@ export const operationalParameters = [
11091130
"The time of day (UTC) when the escrows expire. Exactly one escrow per day will expire.",
11101131
values: {
11111132
flare: {
1112-
xrp: "57600 (16:00 UTC)",
1133+
xrp: "TBD (16:00 UTC)",
11131134
},
11141135
coston2: {
11151136
xrp: "43200 (12:00 UTC)",
@@ -1532,9 +1553,9 @@ export const operationalParameters = [
15321553
},
15331554
{
15341555
name: "Reservation Fee Recipient",
1535-
functionName: "getDirectMintingFeeReceiver",
1556+
functionName: "reservationFeeRecipient",
15361557
interfaceLink:
1537-
"/fassets/reference/IAssetManager#getdirectmintingfeereceiver",
1558+
"/fassets/reference/IMintingTagManager#reservationfeerecipient",
15381559
description: "Address that receives reservation fees.",
15391560
valueType: "address",
15401561
values: {

0 commit comments

Comments
 (0)