Skip to content

Commit

Permalink
Merge pull request #1954 from DefiLlama/30sept-patches
Browse files Browse the repository at this point in the history
dexible
  • Loading branch information
waynebruce0x authored Oct 1, 2024
2 parents b468f56 + f11b1b8 commit 3b34f7b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aggregators/dexible/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { BreakdownAdapter, Fetch, SimpleAdapter } from "../../adapters/types";
import { BreakdownAdapter, DISABLED_ADAPTER_KEY, Fetch, SimpleAdapter } from "../../adapters/types";
import { CHAIN } from "../../helpers/chains";
import { httpGet } from "../../utils/fetchURL";
import disabledAdapter from "../../helpers/disabledAdapter";

const chains = [
CHAIN.ETHEREUM,
Expand Down Expand Up @@ -76,6 +77,7 @@ const getFetch = (chain: string): Fetch => async (timestamp: number) => {
const adapter: BreakdownAdapter = {
breakdown: {
"Dexible_v2": {
[DISABLED_ADAPTER_KEY]: disabledAdapter,
...chains.reduce((acc, chain) => {
return {
...acc,
Expand Down

0 comments on commit 3b34f7b

Please sign in to comment.