Skip to content

Commit

Permalink
Merge pull request #39 from symbiosis-finance/master
Browse files Browse the repository at this point in the history
Symbiosis adds supporting of Linea, Base, Mantle portals + Telos synthesis
  • Loading branch information
vrtnd authored Aug 24, 2023
2 parents 83b5bb5 + 7bbb4d5 commit 15fffec
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/adapters/symbiosis/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const contracts = {
},
telos: {
portal: "0xb8f275fBf7A959F4BCE59999A2EF122A099e81A8",
synthesis: null,
synthesis: "0x1a039cE63AE35a67Bf0E9F6DbFaE969639D59eC8",
},
kava: {
portal: "0x292fC50e4eB66C3f6514b9E402dBc25961824D62",
Expand Down Expand Up @@ -51,4 +51,16 @@ export const contracts = {
portal: "0x292fC50e4eB66C3f6514b9E402dBc25961824D62",
synthesis: null,
},
linea: {
portal: "0x292fC50e4eB66C3f6514b9E402dBc25961824D62",
synthesis: null,
},
base: {
portal: "0x5Aa5f7f84eD0E5db0a4a85C3947eA16B53352FD4",
synthesis: null,
},
mantle: {
portal: "0x292fC50e4eB66C3f6514b9E402dBc25961824D62",
synthesis: null,
},
} as const;
3 changes: 3 additions & 0 deletions src/adapters/symbiosis/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ const adapter: BridgeAdapter = {
optimism: constructParams("optimism"),
"arbitrum nova": constructParams("arbitrum_nova"),
"polygon zkevm": constructParams("polygon_zkevm"),
linea: constructParams("linea"),
base: constructParams("base"),
mantle: constructParams("mantle"),
};

export default adapter;
3 changes: 3 additions & 0 deletions src/data/bridgeNetworkData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,9 @@ export default [
"Arbitrum Nova",
"Optimism",
"Polygon zkEVM",
"Linea",
"Base",
"Mantle"
],
chainMapping: {
avalanche: "avax", // this is needed temporarily, need to fix and remove
Expand Down

0 comments on commit 15fffec

Please sign in to comment.