Skip to content
This repository was archived by the owner on Jul 13, 2026. It is now read-only.

Commit cc1011b

Browse files
authored
fix(portifolio-types): fix response type (#533)
1 parent 4c5955b commit cc1011b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/types/portfolio-types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Contract } from '../api/alchemy-contract';
22
import { Nft } from './nft-types';
3-
import { TokenPriceByAddressResult } from './prices-types';
3+
import { TokenPrice } from './prices-types';
44
import { Network, TokenMetadataResponse, TransactionReceipt } from './types';
55

66
/**
@@ -53,7 +53,7 @@ export interface GetTokensByWalletResponse {
5353
/** Optional metadata about the token, potentially including name, symbol, decimals, etc. */
5454
tokenMetadata?: TokenMetadataResponse;
5555
/** Optional pricing data for the token, such as current value or historical prices. */
56-
tokenPrices?: TokenPriceByAddressResult;
56+
tokenPrices: TokenPrice[];
5757
}>;
5858
/** A string used for pagination to retrieve additional results if available. */
5959
pageKey: string;

0 commit comments

Comments
 (0)