Skip to content

Commit

Permalink
update dependencies, guardians support
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Jul 31, 2023
1 parent 116ecac commit 34be234
Show file tree
Hide file tree
Showing 5 changed files with 2,360 additions and 3,834 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### [7.3.0](https://github.com/ElvenTools/elven-tools-dapp/releases/tag/v7.3.0) (2023-07-31)
- update useElven (support for guardians)
- update dependencies

### [7.2.0](https://github.com/ElvenTools/elven-tools-dapp/releases/tag/v7.2.0) (2023-06-22)
- update useElven (new useTokenTransfer hook)
- update dependencies
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ The Dapp is built using Nextjs and a couple of helpful tools. It allows you to i

### It provides:

- Auth with 4 MultiversX blockchain providers
- Signing with 4 MultiversX blockchain [providers](https://docs.multiversx.com/sdk-and-tools/sdk-js/)
- Web Wallet
- xPortal mobile app
- MultiversX DeFi browser extension
- Ledger Nano
- [Guarderd transactions](https://docs.multiversx.com/sdk-and-tools/sdk-dapp/internal-processes/guardians/#specifications-of-a-guarded-transaction)
- React hooks for making transactions
- React hooks for querying smart contracts
- Tools and React hooks for app state synchronization
- API endpoint rewrites and 'guard' middleware
- Preconfigured UI based on Chakra UI
- Optional API endpoint rewrites
- Preconfigured UI based on [Chakra UI](https://chakra-ui.com/)
- The template with sections mainly used on minter dapps (it will be developed further)

### @useElven/core
Expand Down
4 changes: 2 additions & 2 deletions components/core/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 34be234

Please sign in to comment.