Skip to content

Commit

Permalink
add hub support
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Jun 20, 2024
1 parent c3d76e6 commit cf7eaa2
Show file tree
Hide file tree
Showing 4 changed files with 866 additions and 784 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### [9.8.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.7.0) (2024-06-20)
- update useElven - added MultiversX 'apps hub' support (experimental, report problems)

### [9.7.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.7.0) (2024-04-13)
- update useElven, which now supports sdk-core v13, and now, it is required to install it alongside with useElven
- adjust current codebase
Expand Down
5 changes: 2 additions & 3 deletions components/demo/sign-message-demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@ export const SimpleSignMessageDemo = () => {
const { signMessage, pending, signature } = useSignMessage();

const handleSignMessage = () => {
signMessage({ message: 'Elven Family is awesome!' });
signMessage({ message: 'ElvenFamily' });
};

return (
<Card className="flex-1 flex flex-col justify-between w-full">
<CardContent className="mt-6">
<div className="mb-4">
You will be signing a hardcoded message:{' '}
<strong>Elven Family is awesome!</strong>{' '}
You will be signing a hardcoded message: <strong>ElvenFamily</strong>{' '}
</div>
{signature && (
<div className="lg:max-w-[250px] xl:max-w-[330px] w-full break-words white">
Expand Down
Loading

0 comments on commit cf7eaa2

Please sign in to comment.