/** * @category SDK * @name WhitelistAddress */ interface WhitelistAddress { address: string; quantity: number; } export default WhitelistAddress;