2018-05-28 15:10:20 +00:00
|
|
|
import namehash from 'eth-ens-namehash';
|
|
|
|
|
2018-06-22 01:07:27 +00:00
|
|
|
/*global web3, EmbarkJS*/
|
2018-05-22 17:59:22 +00:00
|
|
|
let __embarkENS = {};
|
|
|
|
|
2018-06-15 15:23:55 +00:00
|
|
|
// resolver interface
|
2018-05-25 17:25:28 +00:00
|
|
|
__embarkENS.resolverInterface = [
|
2018-05-22 17:59:22 +00:00
|
|
|
{
|
|
|
|
"constant": true,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "addr",
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "address"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": true,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "content",
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "bytes32"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": true,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "name",
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": true,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "kind",
|
|
|
|
"type": "bytes32"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "has",
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "bool"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "addr",
|
|
|
|
"type": "address"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "setAddr",
|
|
|
|
"outputs": [],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "hash",
|
|
|
|
"type": "bytes32"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "setContent",
|
|
|
|
"outputs": [],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": false,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "name",
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "setName",
|
|
|
|
"outputs": [],
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"constant": true,
|
|
|
|
"inputs": [
|
|
|
|
{
|
|
|
|
"name": "node",
|
|
|
|
"type": "bytes32"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "contentType",
|
|
|
|
"type": "uint256"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"name": "ABI",
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "uint256"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "",
|
|
|
|
"type": "bytes"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"payable": false,
|
|
|
|
"type": "function"
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2018-05-25 17:25:28 +00:00
|
|
|
__embarkENS.registryAddresses = {
|
2018-05-22 17:59:22 +00:00
|
|
|
// Mainnet
|
|
|
|
"1": "0x314159265dd8dbb310642f98f50c066173c1259b",
|
|
|
|
// Ropsten
|
|
|
|
"3": "0x112234455c3a32fd11230c42e7bccd4a84e02010",
|
|
|
|
// Rinkeby
|
2018-05-23 16:46:02 +00:00
|
|
|
"4": "0xe7410170f87102DF0055eB195163A03B7F2Bff4A"
|
|
|
|
};
|
2018-05-22 17:59:22 +00:00
|
|
|
|
2018-05-23 18:00:34 +00:00
|
|
|
__embarkENS.setProvider = function () {
|
2018-05-28 15:21:52 +00:00
|
|
|
const self = this;
|
2018-05-22 17:59:22 +00:00
|
|
|
// get network id and then assign ENS contract based on that
|
2018-05-25 17:52:57 +00:00
|
|
|
let registryAddresses = this.registryAddresses;
|
2018-05-28 16:29:47 +00:00
|
|
|
this.ens = null;
|
2018-05-28 15:21:52 +00:00
|
|
|
web3.eth.net.getId().then(id => {
|
2018-05-23 16:46:02 +00:00
|
|
|
if (registryAddresses[id] !== undefined) {
|
2018-06-22 01:03:23 +00:00
|
|
|
EmbarkJS.onReady(() => {
|
|
|
|
self.ens = new EmbarkJS.Contract({abi: self.registryInterface, address: registryAddresses[id]});
|
|
|
|
});
|
2018-05-23 16:46:02 +00:00
|
|
|
}
|
|
|
|
// todo: deploy at this point
|
2018-06-15 14:04:19 +00:00
|
|
|
}).catch(e => {
|
|
|
|
if (e.message.indexOf('Provider not set or invalid') > -1) {
|
|
|
|
console.warn('ENS is not available in this chain');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
console.error(e);
|
|
|
|
});
|
2018-05-23 16:46:02 +00:00
|
|
|
};
|
2018-05-22 17:59:22 +00:00
|
|
|
|
2018-06-15 17:32:48 +00:00
|
|
|
__embarkENS.resolve = function (name) {
|
2018-05-23 16:46:02 +00:00
|
|
|
const self = this;
|
2018-05-23 17:13:06 +00:00
|
|
|
|
2018-06-15 14:04:19 +00:00
|
|
|
if (self.ens === undefined) return;
|
2018-05-23 17:13:06 +00:00
|
|
|
|
2018-05-28 15:21:52 +00:00
|
|
|
let node = namehash.hash(name);
|
2018-05-23 17:13:06 +00:00
|
|
|
|
2018-05-28 15:42:01 +00:00
|
|
|
return self.ens.methods.resolver(node).call().then((resolverAddress) => {
|
2018-06-22 01:03:23 +00:00
|
|
|
let resolverContract = new EmbarkJS.Contract({abi: self.resolverInterface, address: resolverAddress});
|
2018-05-23 17:13:06 +00:00
|
|
|
return resolverContract.methods.addr(node).call();
|
2018-05-23 16:46:02 +00:00
|
|
|
}).then((addr) => {
|
2018-05-23 17:13:06 +00:00
|
|
|
return addr;
|
2018-06-25 17:25:22 +00:00
|
|
|
}).catch((err) => {
|
2018-06-26 19:56:23 +00:00
|
|
|
if (err === NoDecodeAddrError) {
|
2018-06-25 17:25:22 +00:00
|
|
|
console.log(name + " is not registered");
|
|
|
|
return "0x";
|
|
|
|
}
|
2018-06-26 18:28:28 +00:00
|
|
|
return err;
|
2018-06-25 17:25:22 +00:00
|
|
|
});
|
2018-05-23 16:46:02 +00:00
|
|
|
};
|
2018-05-23 21:53:39 +00:00
|
|
|
|
2018-06-18 19:57:43 +00:00
|
|
|
__embarkENS.lookup = function (address) {
|
2018-05-23 21:53:39 +00:00
|
|
|
const self = this;
|
|
|
|
|
2018-06-18 18:54:37 +00:00
|
|
|
if (!self.ens) {
|
2018-06-18 20:07:42 +00:00
|
|
|
console.log("ENS provider not set. Exiting.");
|
2018-06-18 18:54:37 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-05-24 12:57:14 +00:00
|
|
|
if (address.startsWith("0x")) address = address.slice(2);
|
2018-05-23 21:53:39 +00:00
|
|
|
|
2018-05-28 15:21:52 +00:00
|
|
|
let node = namehash.hash(address.toLowerCase() + ".addr.reverse");
|
2018-05-23 21:53:39 +00:00
|
|
|
|
2018-05-28 15:42:01 +00:00
|
|
|
return self.ens.methods.resolver(node).call().then((resolverAddress) => {
|
2018-06-22 01:03:23 +00:00
|
|
|
let resolverContract = new EmbarkJS.Contract({abi: self.resolverInterface, address: resolverAddress});
|
2018-05-23 21:53:39 +00:00
|
|
|
return resolverContract.methods.name(node).call();
|
2018-06-25 17:25:22 +00:00
|
|
|
}).catch((err) => {
|
2018-06-26 19:56:23 +00:00
|
|
|
if (err === NoDecodeStringError || err === NoDecodeAddrError) {
|
2018-06-25 17:25:22 +00:00
|
|
|
console.log('Address does not resolve to name. Try syncing chain.');
|
|
|
|
return "";
|
|
|
|
}
|
2018-06-26 18:28:28 +00:00
|
|
|
return err;
|
2018-06-25 17:25:22 +00:00
|
|
|
});
|
2018-05-24 04:34:19 +00:00
|
|
|
};
|