Skip to content

Instantly share code, notes, and snippets.

@eternauta1337
Created September 5, 2019 20:48
Show Gist options
  • Save eternauta1337/93351492d0e5c7eb8ca8ecc609388956 to your computer and use it in GitHub Desktop.
Save eternauta1337/93351492d0e5c7eb8ca8ecc609388956 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.11+commit.c082d0b4.js&optimize=false&gist=
/*
* SPDX-License-Identitifer: MIT
*/
pragma solidity ^0.4.24;
contract APMNamehash {
string pm = "aragonpm";
bytes32 ETH_TLD_NODE = 0x93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae;
bytes32 internal constant APM_NODE = keccak256(abi.encodePacked(ETH_TLD_NODE, keccak256(abi.encodePacked("aragonpm"))));
// bytes32 internal constant APM_NODE = 0x9065c3e7f7b7ef1ef4e53d2d0b8e0cef02874ab020c1ece79d5f0d3d0111c0ba;
function apmNamehash(string name) public pure returns (bytes32) {
return keccak256(abi.encodePacked(APM_NODE, keccak256(bytes(name))));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment