File tree 3 files changed +26
-0
lines changed
src/adapters/peggedAssets
3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,9 @@ import pinto from "./pinto";
232
232
import wusd from "./worldwide-usd" ;
233
233
import standardusds from "./thestandard-usd" ;
234
234
import frxusd from "./frax-usd" ;
235
+ import syusd from "./syusd"
236
+ import stablrusd from "./stablr-usd"
237
+ import stablreuro from "./stablr-euro" ;
235
238
import syusd from "./syusd" ;
236
239
import scusd from "./rings-scusd"
237
240
@@ -472,5 +475,7 @@ export default {
472
475
"thestandard-usd" : standardusds ,
473
476
"frax-usd" : frxusd ,
474
477
"synnax-stablecoin" : syusd ,
478
+ "stablr-euro" : stablreuro ,
479
+ "stablr-usd" : stablrusd ,
475
480
"rings-scusd" : scusd
476
481
} ;
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments