You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
437 B
18 lines
437 B
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
pragma solidity ^0.8.4;
|
|
|
|
interface IBaseDegenTLDFactory {
|
|
|
|
function getTldsArray() external view returns(string[] memory);
|
|
|
|
function tldNamesAddresses(string memory) external view returns(address);
|
|
|
|
function createTld(
|
|
string memory _name,
|
|
string memory _symbol,
|
|
address _tldOwner,
|
|
uint256 _domainPrice,
|
|
bool _buyingEnabled
|
|
) external payable returns(address);
|
|
|
|
}
|
|
|