Skip to content

Commit

Permalink
updates related to multiple transaction triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Jun 4, 2023
1 parent 41a0652 commit a2aadb3
Show file tree
Hide file tree
Showing 6 changed files with 463 additions and 458 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### [8.1.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v8.1.0) (2023-06-04)
- update useElven and other dependencies

### [8.0.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v8.0.0) (2023-05-28)
- **Breaking:** The dapp now uses the useElven version with built-in native token support. There is no fallback, so it is a breaking change. Standard string-based tokens will be deprecated across the MultiversX soon
- update dependencies
Expand Down
4 changes: 2 additions & 2 deletions components/demo/GetLoginInfoDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ export const GetLoginInfoDemo = () => {
<CardItemWrapper>
<Text as="span" display="inline-block" fontWeight="bold">
loginToken:
</Text>{' '}
{loginToken || '-'}
</Text>
<Text wordBreak="break-word" textAlign="left">{loginToken || '-'}</Text>
</CardItemWrapper>
<Tooltip label={signature}>
<CardItemWrapper>
Expand Down
4 changes: 2 additions & 2 deletions components/demo/SimpleDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ export const SimpleDemo = () => {
)}
{loginMethod === LoginMethodsEnum.ledger && (
<Box>
Then wait some time to finish the transaction. You will get the
transaction hash and link at the end.
Confirm it on the Ledger app and wait till it finishes.
</Box>
)}
<Box>You will get the transaction hash and link at the end.</Box>
<Spinner mt={6} color="dappTemplate.color2.darker" />
</FlexCardWrapper>
)}
Expand Down
2 changes: 1 addition & 1 deletion components/ui/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const Footer = () => {
<Text
as="a"
color="dappTemplate.color3.base"
href="https://github.com/juliancwirko/elven.js"
href="https://github.com/elven-js/elven.js"
target="_blank"
rel="noopener noreferrer nofollow"
>
Expand Down
Loading

0 comments on commit a2aadb3

Please sign in to comment.