mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
8 lines
331 B
Solidity
8 lines
331 B
Solidity
pragma solidity ^0.4.0;
|
|
|
|
contract Resolver {
|
|
function supportsInterface(bytes4 interfaceID) constant returns (bool);
|
|
function addr(bytes32 node) constant returns (address ret);
|
|
function dnsrr(bytes32 node, uint16 qtype, uint16 qclass, uint32 index)
|
|
constant returns (uint16 rtype, uint16 rclass, bytes data);
|
|
}
|