Skip to content

Commit

Permalink
Merge pull request #415 from jasmin-avalon/feat-avalon-usda
Browse files Browse the repository at this point in the history
Add asset:  Avalon USDa
  • Loading branch information
realdealshaman authored Nov 30, 2024
2 parents 4e0b352 + b7dd6f8 commit 1afc801
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/adapters/peggedAssets/helper/chains.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@
"xdai",
"zilliqa",
"zksync",
"zyx"
"zyx",
"zircuit"
]


4 changes: 3 additions & 1 deletion src/adapters/peggedAssets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ import solayerusd from "./solayer-usd";
import rusd1 from "./reservoir-stablecoin";
import satusd from "./satoshi-stablecoin"
import usdf from "./astherus-usdf"
import avalon_usda from "./usda"

export default {
tether,
Expand Down Expand Up @@ -437,5 +438,6 @@ export default {
"solayer-usd": solayerusd,
"reservoir-stablecoin": rusd1,
"satoshi-stablecoin": satusd,
"astherus-usdf": usdf
"astherus-usdf": usdf,
"usda": avalon_usda
};
22 changes: 22 additions & 0 deletions src/adapters/peggedAssets/usda/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { addChainExports } from "../helper/getSupply";
import { PeggedIssuanceAdapter } from "../peggedAsset.type";

// Avalon - USDa, use LayerZero OFT (Mint-Burn) Modal to bridge
const chainContracts = {
ethereum: {
issued: ["0x8A60E489004Ca22d775C5F2c657598278d17D9c2"],
},
bsc: {
issued: ["0x9356086146be5158E98aD827E21b5cF944699894"],
},
taiko: {
issued: ["0xff12470a969Dd362EB6595FFB44C82c959Fe9ACc"],
},
};


const adapter: PeggedIssuanceAdapter = {
...addChainExports(chainContracts),
};

export default adapter;

0 comments on commit 1afc801

Please sign in to comment.