Skip to content

Commit

Permalink
Merge pull request #294 from Define101/master
Browse files Browse the repository at this point in the history
add linea chain to euro3
  • Loading branch information
Define101 authored Apr 6, 2024
2 parents 12f078a + 58661a8 commit abddd01
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/adapters/peggedAssets/euro3/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ const chainContracts: ChainContracts = {
issued: "0xA0e4c84693266a9d3BBef2f394B33712c76599Ab",
unreleased: [],
},
linea: {
issued: "0x3f817b28da4940f018c6b5c0a11c555ebb1264f9",
unreleased: [],
},
};

async function chainMinted(chain: string, decimals: number) {
Expand Down Expand Up @@ -51,6 +55,10 @@ const adapter: PeggedIssuanceAdapter = {
minted: chainMinted("polygon", 18),
unreleased: async () => ({}),
},
linea: {
minted: chainMinted("linea", 18),
unreleased: async () => ({}),
},
};

export default adapter;

0 comments on commit abddd01

Please sign in to comment.