Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type CoingeckoSupportedChainId =
| 42220
| 1088;

const CHAIN_DATA_VERSION = "71";
const CHAIN_DATA_VERSION = "73";

export type Token = {
code: string;
Expand Down
10 changes: 9 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,14 @@ async function catchupAndWatchChain(
try {
// console.time(args.event.name);
// do not await donation inserts as they are write only
indexerLogger.debug(
"DEBUG - event:",
args.event.name,
"- chainId:",
args.chainId,
"- event:",
event
);
if (args.event.name === "Voted") {
handleAlloV1Event(args)
.then((changesets) => db.applyChanges(changesets))
Expand Down Expand Up @@ -572,7 +580,7 @@ async function catchupAndWatchChain(
}
} catch (err) {
indexerLogger.warn({
msg: "skipping event due to error while processing",
msg: `skipping event due to error while processing - ${args.event.name}`,
err,
event: args.event,
});
Expand Down
Loading