-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/mana-calculator/add-input-validation
- Loading branch information
Showing
17 changed files
with
676 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Image/Diagram/Flowchart/UML Request | ||
about: Request images diagrams, flowcharts, or UMLs for the IOTA Wiki. | ||
title: "[Diagram/Flowchart/UML Request]" | ||
labels: 'diagram-request, flowchart-request, uml-request' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description | ||
|
||
***Provide a detailed description of the image, diagram, flowchart, or UML you're requesting. Include information like the specific elements to be included, the overall layout, and any text or labels that should be part of the image.*** | ||
|
||
## Context and Usage | ||
|
||
***Explain why this image is important. Provide context or links to where the image will be used within the Wiki.*** | ||
|
||
## URL of Page | ||
|
||
***Specify the URL of the Wiki page where this image will be used.*** | ||
|
||
## Technical Requirements | ||
|
||
***Specify any technical requirements or preferences.*** | ||
|
||
## Additional Information | ||
|
||
***Add any other details, sketches, or references for the requested image here.*** | ||
|
||
## Contact Person | ||
|
||
***Who should be contacted for further information or clarification regarding this request?*** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: Bloom Wallet | ||
description: A feature-laden Shimmer wallet. | ||
keywords: | ||
- Bloom Wallet | ||
- Shimmer Wallet | ||
- IOTA Wallet | ||
- Software Wallet | ||
- EVM | ||
- DLT | ||
- Cryptocurrency | ||
--- | ||
Bloom is a desktop wallet with first-class security developed by former members of the Firefly team. Bloom includes both Shimmer L1 and ShimmerEVM L2 in the same application, so you can seamlessly transfer assets back and forth between Shimmer and ShimmerEVM without the need for other tooling. Over time, Bloom will support the entirety of the IOTA ecosystem, integrating both Shimmer and IOTA networks in a single app experience. | ||
|
||
|
||
Find more information on the official website and download the Bloom wallet exclusively from: | ||
|
||
- [**Bloom**](https://bloomwallet.io/)**:** Official Website | ||
- [**Bloom GitHub Releases**](https://github.com/bloomwalletio/bloom/releases): Official Bloom GitHub Repo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { useEffect, useState } from 'react'; | ||
import { Web3 } from 'web3'; | ||
|
||
interface ChainIdProps { | ||
url: string; | ||
} | ||
|
||
export function ChainId(props: ChainIdProps) { | ||
const [value, setValue] = useState<string | null>(null); | ||
|
||
useEffect(() => { | ||
const web3 = new Web3(props.url); | ||
web3.eth | ||
.getChainId() | ||
.then((chainId) => setValue(chainId.toString())) | ||
.catch((error) => setValue(`Error: ${error.message}`)); | ||
}, []); | ||
|
||
return value; | ||
} |
Oops, something went wrong.