Created
September 30, 2022 19:16
-
-
Save crazyrabbitLTC/7f72a6cfac0d735b569e08421032cef6 to your computer and use it in GitHub Desktop.
Decoding the Oldest Ethereum Registry interface
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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.4; | |
interface ABI_0x5564886ca2C518d1964E5FCea4f423b41Db9F561 { | |
function name(address) external; | |
function owner(bytes32) external; | |
function content(bytes32) external; | |
function addr(bytes32) external; | |
function reserve(bytes32) external; | |
function subRegistrar(bytes32) external; | |
function transfer(bytes32,address) external; | |
function setSubRegistrar(bytes32,address) external; | |
function Registrar() external; | |
function setAddress(bytes32,address,bool) external; | |
function setContent(bytes32,bytes32) external; | |
function disown(bytes32) external; | |
function register(bytes32) external; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment