Skip to content

v0.19.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Jun 20:41
· 1053 commits to main since this release
ba306e0

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(...), from getAvatar(ensName: string) to getAvatar(params: { ensName: string }).
    • Changed TokenImage props from
    export type TokenImageReact = {
      src: string | null;
      size?: number;
    };

    to

    export type TokenImageReact = {
      token: Token;
      size?: number;
    };