We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0129966 commit b95bb44Copy full SHA for b95bb44
dexVolumes/spookyswap/index.ts
@@ -1,4 +1,5 @@
1
import { DexVolumeAdapter } from "../dexVolume.type";
2
+import { getStartTimestamp } from "../helper/getStartTimestamp";
3
4
const { getChainVolume } = require("../helper/getUniSubgraphVolume");
5
const { FANTOM } = require("../helper/chains");
@@ -16,7 +17,10 @@ const adapter: DexVolumeAdapter = {
16
17
volume: {
18
[FANTOM]: {
19
fetch: graphs(FANTOM),
- start: async () => 1618617600,
20
+ start: getStartTimestamp({
21
+ endpoints,
22
+ chain: FANTOM
23
+ }),
24
},
25
26
};
0 commit comments