Skip to content

Commit b84f9ce

Browse files
Merge pull request #481 from benber86/feat/reusd
Add resupply's reusd
2 parents 4c104ed + 896ef75 commit b84f9ce

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

src/adapters/peggedAssets/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ import feusd from './felix-feusd';
252252
import eurcv from "./societe-generale-forge-eurcv";
253253
import standx_dusd from './standx-dusd';
254254
import usbd from './usbd';
255+
import reusd from './resupply-usd'
255256

256257
export default {
257258
tether,
@@ -509,4 +510,5 @@ export default {
509510
"felix-feusd": feusd,
510511
'standx-dusd': standx_dusd,
511512
'usbd': usbd,
513+
'resupply-usd': reusd
512514
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const chainContracts = {
2+
ethereum: {
3+
issued: ["0x57ab1e0003f623289cd798b1824be09a793e4bec"],
4+
},
5+
};
6+
7+
8+
import { addChainExports } from "../helper/getSupply";
9+
const adapter = addChainExports(chainContracts);
10+
export default adapter;

src/peggedData/peggedData.ts

+18
Original file line numberDiff line numberDiff line change
@@ -5126,4 +5126,22 @@ export default [
51265126
wiki: "https://docs.aegis.im/",
51275127
doublecounted: true
51285128
},
5129+
{
5130+
id: "256",
5131+
name: "Resupply USD",
5132+
address: "0x4274cd7277c7bb0806bd5fe84b9adae466a8da0a",
5133+
symbol: "REUSD",
5134+
url: "https://resupply.fi/",
5135+
description: "A decentralized stablecoin backed by stablecoin collateral in yield-bearing Curve Lend and Frax Lend markets, designed to maintain a 1:1 USD peg while sharing earned lending fees with borrowers.",
5136+
mintRedeemDescription: "Deposit crvUSD or frxUSD into a collateralized vault to mint reUSD (minimum 1,000). The borrow rate is half the market’s lending rate, half the risk-free rate, or 2%, whichever is higher. Repaying reUSD unlocks the original collateral.",
5137+
onCoinGecko: "true",
5138+
gecko_id: "resupply-usd",
5139+
cmcId: null,
5140+
pegType: "peggedUSD",
5141+
pegMechanism: "crypto-backed",
5142+
priceSource: "defillama",
5143+
auditLinks: [],
5144+
twitter: "https://x.com/aegis_im",
5145+
wiki: "https://x.com/ResupplyFi",
5146+
},
51295147
] as PeggedAsset[];

0 commit comments

Comments
 (0)