This file contains hidden or 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
{ | |
"name": "Example Token", | |
"description": "Official token", | |
"symbol": "EXTO", | |
"decimals": 9, | |
"image_data": "4bWxuczPHN2ZyB0..." | |
} |
This file contains hidden or 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
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.0; | |
abstract contract Record { | |
uint public timeOfCreation; | |
function getRecordType() public virtual pure returns(string memory); | |
constructor() { | |
timeOfCreation = block.timestamp; |
This file contains hidden or 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
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.0; | |
abstract contract Record { | |
uint public timeOfCreation; | |
function getRecordType() public virtual pure returns(string memory); | |
constructor() { | |
timeOfCreation = block.timestamp; |
This file contains hidden or 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
pragma solidity ^0.8.0; | |
//SPDX-License-Identifier: GPL-3.0 | |
contract EnsDomen { | |
constructor() { | |
owner = msg.sender; | |
} | |
receive() external payable {} |