Skip to content

Commit

Permalink
Merge pull request #423 from parallel-protocol/feat/add-pausd-stablecoin
Browse files Browse the repository at this point in the history
feat: implement paUSD stablecoin (Parallel Protocol)
  • Loading branch information
realdealshaman authored Dec 18, 2024
2 parents 7ffc63e + c2e4d79 commit 71822cf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/adapters/peggedAssets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ import satusd from "./satoshi-stablecoin"
import usdf from "./astherus-usdf"
import avalon_usda from "./avalon-usda"
import usdtb from "./usdtb"
import pausd from "./pausd-stablecoin"

export default {
tether,
Expand Down Expand Up @@ -279,6 +280,7 @@ export default {
seur,
ageur: eura,
"par-stablecoin": par,
"pausd-stablecoin": pausd,
"hedge-usd": ush,
"three-usd": threeusd,
sigmausd,
Expand Down
15 changes: 15 additions & 0 deletions src/adapters/peggedAssets/pausd-stablecoin/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { addChainExports } from "../helper/getSupply";
import {ChainContracts,
} from "../peggedAsset.type";

const chainContracts:ChainContracts = {
ethereum: {
issued: ["0x571f54D23cDf2211C83E9A0CbD92AcA36c48Fa02"],
},
polygon: {
issued: ["0x8054d4D130C3A84852f379424Bcac75673a7486B"],
},
};

const adapter = addChainExports(chainContracts);
export default adapter;

0 comments on commit 71822cf

Please sign in to comment.