Skip to content

Commit ee93aab

Browse files
lint
1 parent 422b4c2 commit ee93aab

File tree

6 files changed

+23
-25
lines changed

6 files changed

+23
-25
lines changed

apps/dashboard/src/app/team/[team_slug]/[project_slug]/engine/analytics/analytics-page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { ResponsiveSearchParamsProvider } from "responsive-rsc";
2+
import type { Wallet } from "../server-wallets/wallet-table/types";
23
import { TransactionAnalyticsFilter } from "./filter";
4+
import { SendTestTransaction } from "./send-test-tx.client";
35
import { TransactionsChartCard } from "./tx-chart/tx-chart";
46
import { TransactionsTable } from "./tx-table/tx-table";
5-
import { SendTestTransaction } from "./send-test-tx.client";
6-
import { Wallet } from "../server-wallets/wallet-table/types";
77

88
export function TransactionsAnalyticsPageContent(props: {
99
searchParams: {

apps/dashboard/src/app/team/[team_slug]/[project_slug]/engine/analytics/tx-table/tx-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

3-
import { TransactionsTableUI } from "./tx-table-ui";
43
import { engineCloudProxy } from "@/actions/proxies";
4+
import { TransactionsTableUI } from "./tx-table-ui";
55
import type { TransactionsResponse } from "./types";
66

77
export function TransactionsTable(props: { teamId: string; clientId: string }) {

apps/dashboard/src/app/team/[team_slug]/[project_slug]/engine/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { getProject } from "@/api/projects";
22
import { getTeamBySlug } from "@/api/team";
3+
import { createVaultClient, listEoas } from "@thirdweb-dev/vault-sdk";
34
import { notFound, redirect } from "next/navigation";
5+
import { THIRDWEB_VAULT_URL } from "../../../../../@/constants/env";
46
import { getAuthToken } from "../../../../api/lib/getAuthToken";
57
import { TransactionsAnalyticsPageContent } from "./analytics/analytics-page";
68
import { TransactionAnalyticsSummary } from "./analytics/summary";
7-
import { createVaultClient, listEoas } from "@thirdweb-dev/vault-sdk";
8-
import { THIRDWEB_VAULT_URL } from "../../../../../@/constants/env";
9-
import { Wallet } from "./server-wallets/wallet-table/types";
9+
import type { Wallet } from "./server-wallets/wallet-table/types";
1010

1111
export default async function TransactionsAnalyticsPage(props: {
1212
params: Promise<{ team_slug: string; project_slug: string }>;

apps/dashboard/src/app/team/[team_slug]/[project_slug]/engine/server-wallets/components/key-management.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { Button } from "@/components/ui/button";
2-
import { RefreshCcwIcon } from "lucide-react";
31
import ListAccessTokensButton from "./list-access-tokens.client";
42
import RotateAdminKeyButton from "./rotate-admin-key.client";
53

packages/vault-sdk/src/sdk.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
import type { TypedData } from "abitype";
2-
import * as jose from "jose";
1+
import { xchacha20poly1305 } from "@noble/ciphers/chacha";
32
import { x25519 } from "@noble/curves/ed25519";
4-
import { randomBytes } from "@noble/hashes/utils";
5-
import { sha256 } from "@noble/hashes/sha256";
63
import { hkdf } from "@noble/hashes/hkdf";
7-
import { xchacha20poly1305 } from "@noble/ciphers/chacha";
8-
import { hexToBytes, bytesToHex } from "@noble/hashes/utils";
4+
import { sha256 } from "@noble/hashes/sha256";
5+
import { randomBytes } from "@noble/hashes/utils";
6+
import { bytesToHex, hexToBytes } from "@noble/hashes/utils";
7+
import type { TypedData } from "abitype";
8+
import * as jose from "jose";
99

1010
import type {
11+
CheckedSignTypedDataPayload,
1112
CreateAccessTokenPayload,
1213
CreateEoaPayload,
1314
CreateServiceAccountPayload,
1415
EncryptedPayload,
1516
GetServiceAccountPayload,
17+
ListAccessTokensPayload,
1618
ListEoaPayload,
1719
Payload,
1820
PingPayload,
21+
PolicyComponent,
22+
Prettify,
1923
RevokeAccessTokenPayload,
2024
RotateServiceAccountPayload,
25+
SignAuthorizationPayload,
2126
SignMessagePayload,
27+
SignStructuredMessagePayload,
2228
SignTransactionPayload,
23-
Prettify,
2429
UnencryptedErrorResponse,
25-
CheckedSignTypedDataPayload,
26-
ListAccessTokensPayload,
27-
SignStructuredMessagePayload,
28-
SignAuthorizationPayload,
29-
PolicyComponent,
3030
} from "./types.js";
3131

3232
function encryptForEnclave(

packages/vault-sdk/src/transaction-parser.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Update type definitions for our standardized types
22
import type {
3-
Address,
43
AccessList,
5-
TxLegacy,
6-
TxEip2930,
4+
Address,
5+
EthereumTypedTransaction,
6+
SignedAuthorization,
77
TxEip1559,
8+
TxEip2930,
89
TxEip4844,
910
TxEip4844WithSidecar,
1011
TxEip7702,
11-
EthereumTypedTransaction,
12-
SignedAuthorization,
12+
TxLegacy,
1313
} from "./transaction-types.js";
1414

1515
// Custom error class for transaction parsing errors

0 commit comments

Comments
 (0)