-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add state to show DNSSSEC * Create job to setup dnssec * Add isDNSRegistrar * add isDNSRegistrar flag * Add dnsOwner * Rename from State to Status * Add DNS owner info * Do not show transfer for DNSRegistrar * Call web3 from @ensdomains/ui * getDNSEntry from ui module * Remove files which are moved in modules * Move submitProof * Remove dnsregistrar * Add sendHelperOld which supports web3.js over ethers.js * Add registration page * Add DNSOwner info * Add style to address to insert * Add dummy transaction confirmation * Adjusted content number to be in line with content title * Set initial state * Fix problem of throwing error when dnsOwner is empty * Reload page * Add error message * Refresh will reload the page with spinning button * Add (You) * Rename getAddress and getSubdomains * Add CTA to call submitProof * Remove 3 column grid on mobile * Add support for transferring Domain * Change to use loader button * Do not allow transfer if DNS record does not exist. * Remove action field * Remove deployENS.js * Remove sendHelperOld * Make the naming consistent * Uncomment isLabelValid * Change it to JSX * Replace the guide * Add regisgterReducerFactory * Rename from Transfer to Sync * Display "You" if you are the deedOwner * Added You component * Add explainer * Fix setState error * Show explainer only to DNS Name owner * Added out of sync state * Replace EtherScanLink to AddressLink * Change dnssecmode.outOfSync to outOfSync * Update ui and mock component to the latest * Update ui and mock
- Loading branch information
Showing
27 changed files
with
1,257 additions
and
177 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
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,45 @@ | ||
export default [ | ||
// 0 | ||
{ | ||
state: 'ENABLE_DNSSEC', | ||
title: 'Problem fetching data from DNS', | ||
displayError: true | ||
}, | ||
// 1 | ||
{ | ||
state: 'ENABLE_DNSSEC', | ||
title: 'DNS entry does not exist.', | ||
displayError: true | ||
}, | ||
// 2 | ||
{ | ||
state: 'ENABLE_DNSSEC', | ||
title: 'Please enable DNSSEC' | ||
}, | ||
// 3 | ||
{ | ||
state: 'ADD_TEXT', | ||
title: 'Please add text record into _ens.name.tld' | ||
}, | ||
// 4, | ||
{ | ||
state: 'ADD_TEXT', | ||
title: 'DNS Record is invalid', | ||
displayError: true | ||
}, | ||
// 5, | ||
{ | ||
state: 'SUBMIT_PROOF', | ||
title: 'Ready to register', | ||
explainer: | ||
"*Click 'refresh' if you make changes to the domain in the DNS Registrar." | ||
}, | ||
// 6, | ||
{ | ||
state: 'SUBMIT_PROOF', | ||
title: 'DNS is out of sync', | ||
explainer: | ||
"The Controller and DNS Owner are out of sync. Click 'sync' to make the DNS Owner the Controller. Click 'refresh' if you make changes to the domain in the DNS Registrar.", | ||
outOfSync: true | ||
} | ||
] |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
import React from 'react' | ||
import styled from '@emotion/styled' | ||
|
||
const Button = styled('span')` | ||
color: white; | ||
background: #c7d3e3; | ||
border-radius: 6px; | ||
border: 1px solid #ededed; | ||
padding: 0 2px; | ||
` | ||
|
||
const You = () => { | ||
return <Button>You</Button> | ||
} | ||
|
||
export default You |
Oops, something went wrong.