Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit 2a61759

Browse files
committed
fix: add rst
1 parent a3ca505 commit 2a61759

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

chains/assets.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ export enum assetSymbols {
1616
OP = "OP",
1717
LUSD = "LUSD",
1818
SOV = "SOV",
19-
tBTC = "tBTC"
19+
tBTC = "tBTC",
20+
RSR = "RSR"
2021
}

chains/base/assets.ts

+12
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const WBTC = "0x1ceA84203673764244E05693e42E6Ace62bE9BA5";
1313
export const weETH = "0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A";
1414
export const eUSD = "0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4";
1515
export const bsdETH = "0xcb327b99ff831bf8223cced12b1338ff3aa322ff";
16+
export const RSR = "0xaB36452DbAC151bE02b16Ca17d8919826072f64a";
1617

1718
export const assets: SupportedAsset[] = [
1819
{
@@ -138,6 +139,17 @@ export const assets: SupportedAsset[] = [
138139
initialSupplyCap: parseEther(String(6_500)).toString(),
139140
initialBorrowCap: parseEther(String(5_200)).toString(),
140141
initialCf: "70"
142+
},
143+
{
144+
symbol: assetSymbols.RSR,
145+
underlying: RSR,
146+
name: "Reserve Rights",
147+
decimals: 18,
148+
oracle: OracleTypes.ChainlinkPriceOracleV2,
149+
oracleSpecificParams: {
150+
aggregator: "0xAa98aE504658766Dfe11F31c5D95a0bdcABDe0b1",
151+
feedBaseCurrency: ChainlinkFeedBaseCurrency.USD
152+
}
141153
}
142154
];
143155

0 commit comments

Comments
 (0)