Skip to content

Commit

Permalink
Merge pull request #233 from helius-labs/vercel/staging
Browse files Browse the repository at this point in the history
Merge vercel/staging into dev
  • Loading branch information
0xIchigo authored Nov 10, 2023
2 parents 00ad244 + eac1bcf commit 8515193
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .env.template

This file was deleted.

2 changes: 1 addition & 1 deletion src/lib/trpc/routes/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const transactions = t.procedure
z.object({
actionType: z.string(),
amount: z.number(),
from: z.string(),
from: z.string().nullable().optional(),
fromName: z.string().optional(),
received: z.string().optional(),
sent: z.string().optional(),
Expand Down
6 changes: 3 additions & 3 deletions src/lib/xray/lib/parser/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EnrichedTransaction, Source, TransactionType } from "helius-sdk";

import type { EnrichedTransaction } from "helius-sdk";
import { Source, TransactionType } from "helius-sdk";
import * as parser from "./parsers";

export const SOL = "So11111111111111111111111111111111111111112";
Expand Down Expand Up @@ -138,7 +138,7 @@ export type ProtonParser = (

export interface ProtonTransactionAction {
actionType: ProtonActionType;
from: string;
from: string | null;
to: string;
sent?: string;
received?: string;
Expand Down

0 comments on commit 8515193

Please sign in to comment.