Skip to content

Commit 84dcb1d

Browse files
authored
fix(docs): update operational parameters for asset values to reflect new discount rates (#702)
1 parent c2ff61d commit 84dcb1d

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

examples/developer-hub-javascript/fassetsSwapAndRedeem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// 1. Dependancies and constants
1+
// 1. Dependencies and constants
22
import { run } from "hardhat";
33

44
import { SwapAndRedeemInstance } from "../../typechain-types";

examples/developer-hub-solidity/FAssetsSwapAndRedeem.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ contract SwapAndRedeem {
3333

3434
// Uniswap V2 Router interface to communicate with BlazeSwap
3535
ISwapRouter public immutable router;
36-
// FAssets assset manager interface
36+
// FAssets asset manager interface
3737
IAssetManager public immutable assetManager;
3838
// FAssets token (FXRP)
3939
IERC20 public immutable token;

src/components/FAssets/operational-parameters.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,14 +1156,14 @@ export const operationalParameters = [
11561156
"The pool top-up token discount values added tokens at a slight discount to market price, increasing system stability, shown as a factor on the Agent UI.",
11571157
values: {
11581158
songbird: {
1159-
xrp: "0.5%",
1160-
btc: "0.5%",
1161-
doge: "0.5%",
1159+
xrp: "99.5%",
1160+
btc: "99.5%",
1161+
doge: "99.5%",
11621162
},
11631163
coston: {
1164-
xrp: "10%",
1165-
btc: "10%",
1166-
doge: "10%",
1164+
xrp: "90%",
1165+
btc: "90%",
1166+
doge: "90%",
11671167
},
11681168
},
11691169
},
@@ -1175,14 +1175,14 @@ export const operationalParameters = [
11751175
link: "/fassets/liquidation#stopping-liquidations",
11761176
values: {
11771177
songbird: {
1178-
xrp: "1%",
1179-
btc: "1%",
1180-
doge: "1%",
1178+
xrp: "99%",
1179+
btc: "99%",
1180+
doge: "99%",
11811181
},
11821182
coston: {
1183-
xrp: "1%",
1184-
btc: "1%",
1185-
doge: "1%",
1183+
xrp: "99%",
1184+
btc: "99%",
1185+
doge: "99%",
11861186
},
11871187
},
11881188
},

0 commit comments

Comments
 (0)