Skip to content

Instantly share code, notes, and snippets.

@crazyrabbitLTC
Created September 30, 2022 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crazyrabbitLTC/7f72a6cfac0d735b569e08421032cef6 to your computer and use it in GitHub Desktop.
Save crazyrabbitLTC/7f72a6cfac0d735b569e08421032cef6 to your computer and use it in GitHub Desktop.
Decoding the Oldest Ethereum Registry interface
// 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