Skip to content

Commit 70a2d93

Browse files
add vdollar finance vusd
1 parent 08f942b commit 70a2d93

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

src/adapters/peggedAssets/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ import usbd from './usbd';
255255
import reusd from './resupply-usd';
256256
import tbill from './openeden-tbill';
257257
import msd from './arche-protocol-msd';
258+
import vusd from './vdollar-finance';
258259

259260
export default {
260261
tether,
@@ -515,4 +516,5 @@ export default {
515516
'resupply-usd': reusd,
516517
'openeden-tbill': tbill,
517518
"arche-protocol-msd": msd,
519+
"vdollar-finance": vusd,
518520
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const chainContracts = {
2+
ethereum: {
3+
issued: ["0x677ddbd918637E5F2c79e164D402454dE7dA8619"],
4+
},
5+
base: {
6+
bridgedFromETH: ["0x0937876EFd6C4101Be68cd89ba58D5Ecf0d53A64"],
7+
},
8+
hemi: {
9+
bridgedFromETH: ["0x7A06C4AeF988e7925575C50261297a946aD204A8"],
10+
},
11+
};
12+
13+
import { addChainExports } from "../helper/getSupply";
14+
const adapter = addChainExports(chainContracts);
15+
export default adapter;

src/peggedData/peggedData.ts

+18
Original file line numberDiff line numberDiff line change
@@ -5199,4 +5199,22 @@ export default [
51995199
twitter: "https://x.com/archeprotocol",
52005200
wiki: "https://arche-protocol.gitbook.io/arche-protocol",
52015201
},
5202+
{
5203+
id: "260",
5204+
name: "VDollar Finance",
5205+
address: "0x677ddbd918637E5F2c79e164D402454dE7dA8619",
5206+
symbol: "VUSD",
5207+
url: "https://app.vdollar.finance/",
5208+
description: "vUSD is a stablecoin pegged to the US dollar, backed by over-collateralized, interest-generating collateral tokens",
5209+
mintRedeemDescription: "To mint VUSD, the user swaps an acceptable input asset (DAI, USDC, USDT) for newly minted VUSD at a 1:1 ratio, less minting fee (currently zero), in any amount with zero slippage",
5210+
onCoinGecko: "false",
5211+
gecko_id: "vdollar-finance",
5212+
cmcId: null,
5213+
pegType: "peggedUSD",
5214+
pegMechanism: "crypto-backed",
5215+
priceSource: "defillama",
5216+
auditLinks: [],
5217+
twitter: null,
5218+
wiki: "https://docs.vdollar.finance/",
5219+
},
52025220
] as PeggedAsset[];

0 commit comments

Comments
 (0)