v0.19.0
Minor Changes
-
029ba7d: - feat: standardized
getAvatar()
. By @roushou #464- feat:
TokenImage
with no image renders partial token symbol and deterministic dark color. By @kyhyco #468 - feat: converted
TokeSearch
to css and add modifier styles. By @kyhyco #460 - docs: added contribution guide. By @kyhyco #459
Breaking changes
- Changed the definition of
getAvatar(...)
, fromgetAvatar(ensName: string)
togetAvatar(params: { ensName: string })
. - Changed
TokenImage
props from
export type TokenImageReact = { src: string | null; size?: number; };
to
export type TokenImageReact = { token: Token; size?: number; };
- feat: