diff --git a/src/adapters/peggedAssets/hex-dollar-coin/index.ts b/src/adapters/peggedAssets/hex-dollar-coin/index.ts new file mode 100644 index 00000000..f804067d --- /dev/null +++ b/src/adapters/peggedAssets/hex-dollar-coin/index.ts @@ -0,0 +1,9 @@ +const chainContracts = { + pulse: { + issued: ["0x1fe0319440a672526916c232eaee4808254bdb00"], + }, + }; + + import { addChainExports } from "../helper/getSupply"; + const adapter = addChainExports(chainContracts); + export default adapter; \ No newline at end of file diff --git a/src/adapters/peggedAssets/index.ts b/src/adapters/peggedAssets/index.ts index 1a5c4c62..6d16e97b 100644 --- a/src/adapters/peggedAssets/index.ts +++ b/src/adapters/peggedAssets/index.ts @@ -198,6 +198,7 @@ import classicusd from "./classic-usd"; import usr from "./resolv-usr"; import ausd from "./stable-jack-ausd"; import creal from "./celo-real-creal"; +import hexdc from "./hex-dollar-coin"; export default { tether, @@ -399,5 +400,6 @@ export default { "resolv-usr": usr, "stable-jack-ausd": ausd, "hedera-swiss-franc": hchf, - "celo-real-creal": creal + "celo-real-creal": creal, + "hex-dollar-coin": hexdc }; diff --git a/src/peggedData/peggedData.ts b/src/peggedData/peggedData.ts index f8971e07..29930bfb 100644 --- a/src/peggedData/peggedData.ts +++ b/src/peggedData/peggedData.ts @@ -4024,4 +4024,24 @@ export default [ twitter: "https://x.com/hliquity_", wiki: "https://docs.hliquity.org/overview/overview#hchf-the-stablecoin", }, + { + id: "201", + name: "HEX Dollar Coin", + address: "pulse:0x1fe0319440a672526916c232eaee4808254bdb00", + symbol: "HEXDC", + url: "https://www.flex.powercity.io/#/", + description: + "Powercity Flex Protocol is a decentralized borrowing protocol that allows you to draw interest-free loans against HEX used as collateral. Loans are paid out in HEXDC (a USD pegged stablecoin)", + mintRedeemDescription: + "Powercity Flex Protocol offers interest-free loans. Lock up your HEX, borrow HEXDC against it, and repay later without interest", + onCoinGecko: "true", + gecko_id: "hex-dollar-coin", + cmcId: null, + pegType: "peggedUSD", + pegMechanism: "crypto-backed", + priceSource: "defillama", + auditLinks: null, + twitter: "https://x.com/POWERCITYio", + wiki: "https://docs.powercity.io/flex-protocol", + }, ] as PeggedAsset[];