From 44a5f0ea0711c1064d803bf71130e87f8710bd6e Mon Sep 17 00:00:00 2001 From: Keith Broughton Date: Wed, 10 Sep 2025 16:28:37 +1000 Subject: [PATCH] fix(checkout): Token Info type --- packages/checkout/sdk/src/types/tokenInfo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/checkout/sdk/src/types/tokenInfo.ts b/packages/checkout/sdk/src/types/tokenInfo.ts index dbce37e683..0dd4093651 100644 --- a/packages/checkout/sdk/src/types/tokenInfo.ts +++ b/packages/checkout/sdk/src/types/tokenInfo.ts @@ -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; }