Skip to content
Draft
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
4 changes: 2 additions & 2 deletions packages/checkout/sdk/src/types/tokenInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import { WrappedBrowserProvider } from './provider';
* @property {string} name - The name of the token.
* @property {string} symbol - The symbol of the token.
* @property {number} decimals - The number of decimal places the token supports.
* @property {string | undefined} [address] - The address of the token.
* @property {string} [address] - The address of the token or 'native' for the native token.
* @property {string | undefined} [icon] - The URL of the token's icon.
*/
export interface TokenInfo {
name: string;
symbol: string;
decimals: number;
address?: string;
address: string;
icon?: string;
}

Expand Down
Loading