Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
batphonghan committed Aug 26, 2024
1 parent 51bd9d7 commit 9141d58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 8 additions & 8 deletions adapters/kelp_gain_linea/src/lib/models.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
type Result = {
rows: Row[];
export type Result = {
rows: Row[];
};

type Row = {
user: string;
share: string;
block_number: string;
day: string;
};
export type Row = {
user: string;
share: string;
block_number: string;
day: string;
};
2 changes: 2 additions & 0 deletions adapters/kelp_gain_linea/src/lib/pendle.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Result } from "./models";

const PendleURL =
"https://app.sentio.xyz/api/v1/analytics/kelp_analytics/pendle_mainnet_ageth/sql/execute";

Expand Down

0 comments on commit 9141d58

Please sign in to comment.