Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 23 additions & 21 deletions src/app/get-ehmnd/testnet/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,32 @@ title: How to Get eHMND Tokens for Biomapping Transaction Fees
---

import { A } from "../../../components/mdx";
import { Tabs } from "nextra/components";
import { stages, stagesDisplayOrder } from "../../../data/stages";
import links from "../../../data/links";

# How to Get eHMND Tokens for Biomapping Transaction Fees

## Testnet

### Use the Faucet to get HMND and swap to eHMND

#### Get HMND from Testnet 5 Faucet
export const faucets = {
testnet5: {
link: "humanodeTestnet5FaucetBot",
name: "Telegram Faucet for Humanode Testnet 5",
},
};

Use <A href={links.humanodeTestnet5FaucetBot}>Telegram Faucet for Humanode Testnet 5</A>.
export const stagesWithFaucets = stagesDisplayOrder.filter((stageId) =>
Object.hasOwn(faucets, stageId),
);

#### Transfer HMND to your Polkadot wallet or Talisman wallet

Use the <A href={links.humanodeSwap}>Humanode internal swap</A> to convert HMND to eHMND.

1. Enter your Polkadot/Talisman wallet address starting with `hm...` in the _Substrate account_ field.
You'll need to install the required extension:

- <A href={links.polkadotExt}>Polkadot wallet extension</A>
- <A href={links.talismanWallet}>Talisman wallet extension</A>
# How to Get eHMND Tokens for Biomapping Transaction Fees

2. Connect your Ethereum-compatible wallet (MetaMask or Talisman) in
the Ethereum address field.
## Testnet

3. Confirm the swap.
Your eHMND will be sent to your EVM wallet.
<Tabs
storageKey="stage"
items={stagesWithFaucets.map((stageId) => stages[stageId].displayName)}
>
{stagesWithFaucets.map((stageId) => (
<Tabs.Tab key={stageId}>
Use <A href={links[faucets[stageId].link]}>{faucets[stageId].name}</A>.
</Tabs.Tab>
))}
</Tabs>