This repository was archived by the owner on Aug 26, 2024. It is now read-only.
File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -16,5 +16,6 @@ export enum assetSymbols {
16
16
OP = "OP" ,
17
17
LUSD = "LUSD" ,
18
18
SOV = "SOV" ,
19
- tBTC = "tBTC"
19
+ tBTC = "tBTC" ,
20
+ RSR = "RSR"
20
21
}
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export const WBTC = "0x1ceA84203673764244E05693e42E6Ace62bE9BA5";
13
13
export const weETH = "0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A" ;
14
14
export const eUSD = "0xcfa3ef56d303ae4faaba0592388f19d7c3399fb4" ;
15
15
export const bsdETH = "0xcb327b99ff831bf8223cced12b1338ff3aa322ff" ;
16
+ export const RSR = "0xaB36452DbAC151bE02b16Ca17d8919826072f64a" ;
16
17
17
18
export const assets : SupportedAsset [ ] = [
18
19
{
@@ -138,6 +139,17 @@ export const assets: SupportedAsset[] = [
138
139
initialSupplyCap : parseEther ( String ( 6_500 ) ) . toString ( ) ,
139
140
initialBorrowCap : parseEther ( String ( 5_200 ) ) . toString ( ) ,
140
141
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
+ }
141
153
}
142
154
] ;
143
155
You can’t perform that action at this time.
0 commit comments