Skip to content

Commit 6c205db

Browse files
ci
1 parent bc3a8f9 commit 6c205db

File tree

3 files changed

+2
-57
lines changed

3 files changed

+2
-57
lines changed

apps/core/src/hooks/useFormatCoin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { useQuery, type UseQueryResult } from '@tanstack/react-query';
66
import BigNumber from 'bignumber.js';
77
import { useMemo } from 'react';
88
import { useRpcClient } from '../api/RpcClientContext';
9-
109
import { formatAmount } from '../utils/formatAmount';
1110

1211
type FormattedCoin = [

apps/explorer/src/utils/api/DefaultRpcClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Copyright (c) Mysten Labs, Inc.
22
// SPDX-License-Identifier: Apache-2.0
33

4+
import { SentryRpcClient } from '@mysten/core';
45
import {
56
JsonRpcProvider,
67
Connection,
78
devnetConnection,
89
localnetConnection,
910
} from '@mysten/sui.js';
1011

11-
import { SentryRPCClient } from './SentryRpcClient';
1212

1313
export enum Network {
1414
LOCAL = 'LOCAL',
@@ -39,7 +39,7 @@ export const DefaultRpcClient = (network: Network | string) => {
3939
rpcClient:
4040
// If the network is a known network, and not localnet, attach the sentry RPC client for instrumentation:
4141
network in Network && network !== Network.LOCAL
42-
? new SentryRPCClient(connection.fullnode)
42+
? new SentryRpcClient(connection.fullnode)
4343
: undefined,
4444
});
4545
defaultRpcMap.set(network, provider);

apps/explorer/src/utils/api/SentryRpcClient.ts

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)