Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swapsicle - Add Taiko #2018

Merged
merged 2 commits into from
Oct 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions dexs/swapsicle-v2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { CHAIN } from "../../helpers/chains";
import { univ2Adapter } from "../../helpers/getUniSubgraphVolume";

const adapters = univ2Adapter({
[CHAIN.MANTLE]: "https://subgraph-api.mantle.xyz/subgraphs/name/cryptoalgebra/analytics",
[CHAIN.TELOS]: "https://telos.subgraph.swapsicle.io/subgraphs/name/cryptoalgebra/analytics"
[CHAIN.MANTLE]: "https://subgraph-api.mantle.xyz/api/public/f077c8d4-0d6c-42d4-9bbd-050948dc5c86/subgraphs/swapsicle/analytics/prod/gn",
[CHAIN.TELOS]: "https://test.telos.subgraph.swapsicle.io/subgraphs/name/swapsicle/analytics",
[CHAIN.TAIKO]: "https://api.goldsky.com/api/public/project_clr6mlufzbtuy01vd012wgt5k/subgraphs/swapsicle-analytics-taiko/prod/gn"
}, {
factoriesName: "factories",
dayData: "algebraDayData",
Expand All @@ -13,4 +14,5 @@ const adapters = univ2Adapter({

adapters.adapter[CHAIN.MANTLE].start = 1697155200;
adapters.adapter[CHAIN.TELOS].start = 1698105600;
adapters.adapter[CHAIN.TAIKO].start = 338445;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change this to unix timestamp

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resolved, Thanks

export default adapters;
Loading