Skip to content

Commit

Permalink
fix changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
alvaroraminelli committed Feb 6, 2024
1 parent 615ea7e commit 35f9387
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .changeset/itchy-glasses-add.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
---
"@coinbase/onchainkit": minor
'@coinbase/onchainkit': minor
---

Rename `OnchainName` component to `Name`
- **feat**: Rename the component from `OnchainName` in our Identity Kit. This is a breaking change. `OnchainName` is being renamed to `Name` for simplicity and clarity.

BREAKING CHANGES

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

Before

```ts
import { OnchainName } from '@coinbase/onchainkit';

...
<OnchainName address="0x1234">
```

After

```ts
import { Name } from '@coinbase/onchainkit';

...
<Name address="0x1234">
```

0 comments on commit 35f9387

Please sign in to comment.