Skip to content

v0.5.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Feb 01:48
· 1007 commits to main since this release
90b3f48

Minor Changes

  • fix: ensured that the <FrameMetadata> component uses the name property instead of the property property to set the type of metadata. Both options are technically correct, but historically, using name is more accurate. By @Zizzamia dc6f33d

  • feat: renamed the component from OnchainName to Name in our Identity Kit. This is a breaking changes. The purpose of the rename is to simplify and enhance clarity. By @alvaroraminelli #86

    BREAKING CHANGES

    To enhance usability and intuitiveness, the component name has been simplified. OnchainName is now renamed to Name.

    Before

    import { OnchainName } from '@coinbase/onchainkit';
    
    ...
    <OnchainName address="0x1234">

    After

    import { Name } from '@coinbase/onchainkit';
    
    ...
    <Name address="0x1234">