Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions src/app/_meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ export default {
display: "children",
},

"---guides": {
...separator,
title: "Guides",
},

"get-ehmnd": "How to get eHMND",

biomapper: {
title: "Biomapper App",
type: "menu",
Expand Down
6 changes: 6 additions & 0 deletions src/app/get-ehmnd/_meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { MetaRecord } from "nextra";

export default {
mainnet: "Mainnet",
testnet: "Testnet",
} as const satisfies MetaRecord;
59 changes: 59 additions & 0 deletions src/app/get-ehmnd/mainnet/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
title: How to Get eHMND Tokens for Biomapping Transaction Fees
---

import { A } from "../../../components/mdx";
import links, { tradeLinks } from "../../../data/links";

# How to Get eHMND Tokens for Biomapping Transaction Fees

## Mainnet

To cover the price and network fees for the Biomapping you'll need eHMND tokens.

There are two ways to get them:

- [Option 1](#option-1) - buy HMND from a Centralized Exchange (CEX) & swap.
- [Option 2](#option-2) - buy HMND on BitMart & Withdraw Directly as eHMND.

### Option 1

#### Buy HMND tokens from a supported centralized exchange

Exchanges where you can buy HMND:

- <A href={tradeLinks.bingx}>BingX</A>
- <A href={tradeLinks.bingx}>BitMart</A>
- <A href={tradeLinks.bingx}>KuCoin</A>
- <A href={tradeLinks.bingx}>SimpleSwap</A>
- <A href={tradeLinks.bingx}>CoinEx</A>

#### 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>

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

3. Confirm the swap.
Your eHMND will be sent to your EVM wallet.

### Option 2

#### Buy HMND on BitMart & Withdraw Directly as eHMND

Buy HMND on <A href={tradeLinks.bingx}>BitMart</A>.

Withdraw HMND directly to your EVM wallet (Metamask or Talisman) that you
are using to Biomap.

This method is quicker since BitMart allows direct withdrawals to an EVM wallet,
eliminating the need for an internal swap.
32 changes: 32 additions & 0 deletions src/app/get-ehmnd/testnet/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: How to Get eHMND Tokens for Biomapping Transaction Fees
---

import { A } from "../../../components/mdx";
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

Use <A href={links.humanodeTestnet5FaucetBot}>Telegram Faucet for Humanode Testnet 5</A>.

#### 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>

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

3. Confirm the swap.
Your eHMND will be sent to your EVM wallet.
19 changes: 19 additions & 0 deletions src/data/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ const biomapperDocsRepoMaster =

const biostakerMainnet = "https://mainnet.biostaker.hmnd.app";

export const tradeLinks = {
bingx: "https://link.humanode.io/trade/bingx",
bitmart: "https://link.humanode.io/trade/bitmart",
kucoin: "https://link.humanode.io/trade/kucoin",
simpleswap: "https://link.humanode.io/trade/simpleswap",
coinex: "https://link.humanode.io/trade/coinex",
} as const satisfies Record<string, `https://${string}`>;

const humanodeSwap =
"https://evm-playground.mainnet.stages.humanode.io/swap/native-to-evm";
const polkadotExt = "https://polkadot.js.org/extension";
const talismanWallet = "https://link.humanode.io/wallets/talisman";

const humanodeTestnet5FaucetBot = "https://t.me/HumanodeTestnet5FaucetBot";

const links = {
chat,
humanodeDocsChains,
Expand All @@ -26,6 +41,10 @@ const links = {
biomapperSdkRepo,
biomapperSdkRepoUsage,
biomapperSdkRepoExamples,
humanodeSwap,
polkadotExt,
talismanWallet,
humanodeTestnet5FaucetBot,
} as const satisfies Record<string, `https://${string}`>;

export default links;
Expand Down