import React from 'react';
import GeneralInfoNode from './GeneralInfoNode';
import { HELP_ARTICLE } from 'config';
import { InfoNode } from './types';
import { NewTabLink, HelpLink } from 'components/ui';
const generalInfoNodes: InfoNode[] = [
{
name: 'ensPrep',
headerContent: '1. Preparation',
innerList: [
Decide which account you wish to own the name & ensure you have multiple backups of that
account.
,
Decide the maximum amount of ETH you are willing to pay for the name (your Bid Amount).
Ensure that account has enough to cover your bid + 0.01 ETH for gas.
]
},
{
name: 'ensAuct',
headerContent: '2. Start an Auction / Place a Bid',
innerList: [
Bidding period lasts 3 days (72 hours).,
You will enter the name, Actual Bid Amount, Bid Mask, which is
protected by a Secret Phrase
,
This places your bid, but this information is kept secret until you reveal it.
]
},
{
name: 'ensReveal',
headerContent: '3. Reveal your Bid',
innerList: [
If you do not reveal your bid, you will not be refunded.
,
Reveal Period lasts 2 days (48 hours). ,
You will unlock your account, enter the Bid Amount, and the Secret Phrase.
,
In the event that two parties bid exactly the same amount, the first bid revealed will win.
]
},
{
name: 'ensFinalize',
headerContent: '4. Finalize the Auction',
innerList: [
Once the auction has ended (after 5 days / 120 hours), the winner needs to finalize the
auction in order to claim their new name.
,
The winner will be refunded the difference between their bid and the next-highest bid. If
you are the only bidder, you will refunded all but 0.01 ETH.
]
},
{
name: 'ensMore',
headerContent: 'More Information',
innerList: [
The auction for this registrar is a blind auction, and is described in
. Basically, no one can see *anything* during the auction.
,
,
]
}
];
const GeneralInfoList = () => (
{generalInfoNodes.map((data: InfoNode) => )}
);
const GeneralInfoPanel = () => (
What is the process like?
Help Center: ENS
·
Debugging a [BAD INSTRUCTION] Reveal
Please try the above before relying on support for reveal issues as we are severely
backlogged on support tickets. We're so sorry. :(
);
export default GeneralInfoPanel;