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

Kriya-dex SUI volume dimension adapter. #906

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
46 changes: 46 additions & 0 deletions dexs/kriya-dex/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import fetchURL from "../../utils/fetchURL"
import { Chain } from "@defillama/sdk/build/general";
import { SimpleAdapter } from "../../adapters/types";
import { CHAIN } from "../../helpers/chains";
import { getUniqStartOfTodayTimestamp } from "../../helpers/getUniSubgraphVolume";

type IUrl = {
[s: string]: string;
}

const url: IUrl = {
[CHAIN.SUI]: "https://tkmw8dmcp8.execute-api.ap-southeast-1.amazonaws.com/prod/volume"
}

interface IVolume {
totalVolume: number,
dailyVolume: number,
weeklyVolume: number,
monthlyVolume: number,
}

const fetch = (chain: Chain) => {
return async (timestamp: number) => {
const dayTimestamp = getUniqStartOfTodayTimestamp(new Date(timestamp * 1000))
const volume: IVolume = (await fetchURL(url[chain]))?.data;
return {
totalVolume: `${volume?.totalVolume || undefined}`,
dailyVolume: `${volume?.dailyVolume || undefined}`,
weekVolume: `${volume?.weeklyVolume || undefined}`,
monthVolume: `${volume?.monthlyVolume || undefined}`,
timestamp: dayTimestamp,
};
};
}

const adapter: SimpleAdapter = {
adapter: {
[CHAIN.SUI]: {
fetch: fetch(CHAIN.SUI),
runAtCurrTime: true,
start: async () => 1697595431,
}
},
};

export default adapter;
Loading