Skip to content

Commit 22277da

Browse files
authored
Merge pull request #460 from Define101/master
Replicate #459
2 parents e5286da + 06be407 commit 22277da

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

src/adapters/peggedAssets/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ import honey from "./honey-3";
231231
import pinto from "./pinto";
232232
import wusd from "./worldwide-usd";
233233
import standardusds from "./thestandard-usd";
234-
import frxusd from "./frax-usd"
234+
import frxusd from "./frax-usd";
235+
import syusd from "./syusd"
235236

236237
export default {
237238
tether,
@@ -468,5 +469,6 @@ export default {
468469
"pinto": pinto,
469470
"worldwide-usd": wusd,
470471
"thestandard-usd": standardusds,
471-
"frax-usd": frxusd
472+
"frax-usd": frxusd,
473+
syusd
472474
};
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { addChainExports } from "../helper/getSupply";
2+
import { PeggedIssuanceAdapter } from "../peggedAsset.type";
3+
4+
const chainContracts = {
5+
sei: {
6+
issued: ["0x059A6b0bA116c63191182a0956cF697d0d2213eC"],
7+
}
8+
};
9+
10+
const adapter: PeggedIssuanceAdapter = {
11+
...addChainExports(chainContracts),
12+
};
13+
14+
export default adapter;

src/peggedData/peggedData.ts

+20
Original file line numberDiff line numberDiff line change
@@ -4737,4 +4737,24 @@ export default [
47374737
wiki: "https://docs.frax.com/protocol/assets/frxusd/frxusd",
47384738
doublecounted: true
47394739
},
4740+
{
4741+
id: "236",
4742+
name: "Synnax Stablecoin",
4743+
address: "0x059A6b0bA116c63191182a0956cF697d0d2213eC",
4744+
symbol: "syUSD",
4745+
url: "https://synnax.fi",
4746+
description:
4747+
"syUSD is Synnax’s stablecoin, secured by overcollateralized assets and designed to maintain a soft peg to the U.S. dollar",
4748+
mintRedeemDescription:
4749+
"Users mint syUSD by depositing assets into Synnax vaults, where collateral is utilized for market-making strategies. Redemption requires debt repayment",
4750+
onCoinGecko: "true",
4751+
gecko_id: "synnax-stablecoin",
4752+
cmcId: null,
4753+
pegType: "peggedUSD",
4754+
pegMechanism: "crypto-backed",
4755+
priceSource: "defillama",
4756+
auditLinks: ["https://github.com/peckshield/publications/blob/master/audit_reports/PeckShield-Audit-Report-Synnax-v1.0.pdf"],
4757+
twitter: "https://twitter.com/synnax_labs",
4758+
wiki: "https://docs.synnax.fi",
4759+
},
47404760
] as PeggedAsset[];

0 commit comments

Comments
 (0)