mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-03 06:13:53 +00:00
add change registry controller
This commit is contained in:
parent
a6d87a206f
commit
0fd43951dc
@ -8,8 +8,6 @@ import { withFormik } from 'formik';
|
||||
import { hash } from 'eth-ens-namehash';
|
||||
import { debounce } from 'lodash/fp';
|
||||
|
||||
setTimeout(() => { ENSSubdomainRegistry.methods.controller().call(console.log)}, 2000)
|
||||
|
||||
const { methods: { owner } } = ENSRegistry;
|
||||
|
||||
const delay = debounce(500);
|
||||
|
@ -8,6 +8,7 @@ import AddDomain from './ens/addDomain';
|
||||
import RegisterSubDomain from './ens/registerSubDomain';
|
||||
import TokenPermissions from './standard/TokenPermission';
|
||||
import SetupENS from './ens/setupENS';
|
||||
import UpdateController from './ens/updateController';
|
||||
|
||||
const FieldGroup = ({ id, label, help, ...props }) => (
|
||||
<FormGroup controlId={id}>
|
||||
@ -17,9 +18,11 @@ const FieldGroup = ({ id, label, help, ...props }) => (
|
||||
</FormGroup>
|
||||
)
|
||||
|
||||
const ENSSubManagement = (props) => (
|
||||
const ENSSubManagement = props => (
|
||||
<Fragment>
|
||||
<h2 style={{textAlign: 'center'}}>Subdomain Management</h2>
|
||||
<h2 style={{ textAlign: 'center' }}>Subdomain Management</h2>
|
||||
<h3>Change Registry Controller</h3>
|
||||
<UpdateController />
|
||||
<h3>Add/Update Domain Price</h3>
|
||||
<AddDomain />
|
||||
<hr/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user