Skip to content

Commit 0f42d5c

Browse files
Merge pull request #462 from DaveTheFrontEndDev/master
Add 'StablR EUR'(EURR) and 'StablR USD'(USDR) Stablecoins
2 parents be57488 + d553f10 commit 0f42d5c

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

src/adapters/peggedAssets/index.ts

+5
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ import pinto from "./pinto";
232232
import wusd from "./worldwide-usd";
233233
import standardusds from "./thestandard-usd";
234234
import frxusd from "./frax-usd";
235+
import syusd from "./syusd"
236+
import stablrusd from "./stablr-usd"
237+
import stablreuro from "./stablr-euro";
235238
import syusd from "./syusd";
236239
import scusd from "./rings-scusd"
237240

@@ -472,5 +475,7 @@ export default {
472475
"thestandard-usd": standardusds,
473476
"frax-usd": frxusd,
474477
"synnax-stablecoin": syusd,
478+
"stablr-euro": stablreuro,
479+
"stablr-usd": stablrusd,
475480
"rings-scusd": scusd
476481
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const chainContracts = {
2+
ethereum: {
3+
issued: ["0x50753CfAf86c094925Bf976f218D043f8791e408", "0xdaC306D72f48dbaD805a11CBf7A512A277C084C9"],
4+
},
5+
solana: {
6+
issued: ["HViRSvsTpwubWHevjSPxNB22Fg3kdzXtedfQXmMoHtoZ"],
7+
}
8+
};
9+
import { addChainExports } from "../helper/getSupply";
10+
const adapter = addChainExports(chainContracts, undefined, {pegType: "peggedEUR"});
11+
export default adapter;
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const chainContracts = {
2+
ethereum: {
3+
issued: ["0x7B43E3875440B44613DC3bC08E7763e6Da63C8f8"],
4+
},
5+
};
6+
import { addChainExports } from "../helper/getSupply";
7+
const adapter = addChainExports(chainContracts, undefined, {pegType: "peggedUSD"});
8+
export default adapter;
9+

0 commit comments

Comments
 (0)