mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-22 23:28:11 +00:00
19 lines
283 B
Solidity
19 lines
283 B
Solidity
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
pragma solidity 0.6.2;
|
||
|
|
||
|
import "../registry/UsernameToken.sol";
|
||
|
|
||
|
contract DummyUsernameToken is UsernameToken {
|
||
|
|
||
|
constructor(
|
||
|
address payable _controller
|
||
|
)
|
||
|
public
|
||
|
UsernameToken(_controller)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|