Skip to content

Commit

Permalink
update useelven
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Jun 28, 2023
1 parent 36869db commit ead421b
Show file tree
Hide file tree
Showing 4 changed files with 510 additions and 671 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### [8.3.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v8.3.0) (2023-06-29)
- update useElven (switch to tsup)
- update other dependancies

### [8.2.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v8.2.0) (2023-06-19)
- update useElven (new useTokenTransfer hook available)
- update other dependancies
Expand Down
4 changes: 2 additions & 2 deletions components/tools/WalletConnectPairings.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { FC, MouseEventHandler } from 'react';
import { PairingTypes } from '@useelven/core';
import { PairingTypesStruct } from '@useelven/core';
import { Stack, Box, Text, Heading, IconButton } from '@chakra-ui/react';
import { CloseIcon } from '@chakra-ui/icons';

interface WalletConnectPairingsProps {
pairings: PairingTypes.Struct[];
pairings: PairingTypesStruct[];
login: (topic: string) => Promise<void>;
remove: (topic: string) => Promise<void>;
}
Expand Down
Loading

0 comments on commit ead421b

Please sign in to comment.