Skip to content

Commit

Permalink
Merge pull request #400 from brucelsoon/master
Browse files Browse the repository at this point in the history
Add usdx money
  • Loading branch information
realdealshaman authored Oct 15, 2024
2 parents a79e07d + bd4ec71 commit c8bcd0a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/adapters/peggedAssets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ import deusd from "./elixir-deusd";
import thusd from "./threshold-usd";
import m from "./m-by-m^0";
import mod from "./move-dollar"
import usdx0 from "./usdx-money-usdx";

export default {
tether,
Expand Down Expand Up @@ -424,6 +425,7 @@ export default {
"usds": skydollar,
"elixir-deusd": deusd,
"threshold-usd": thusd,
"move-dollar": mod,
"usdx-money-usdx": usdx0
"m-by-m^0": m,
"move-dollar": mod
};
14 changes: 14 additions & 0 deletions src/adapters/peggedAssets/usdx-money-usdx/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const chainContracts = {
ethereum: {
issued: ["0xf3527ef8dE265eAa3716FB312c12847bFBA66Cef"],
},
bsc: {
issued: ["0xf3527ef8dE265eAa3716FB312c12847bFBA66Cef"],
},
arbitrum: {
issued: ["0xf3527ef8dE265eAa3716FB312c12847bFBA66Cef"],
},
};
import { addChainExports } from "../helper/getSupply";
const adapter = addChainExports(chainContracts);
export default adapter;

0 comments on commit c8bcd0a

Please sign in to comment.