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
{ | |
"config": { | |
"chainId": 99, | |
"homesteadBlock": 1, | |
"eip150Block": 2, | |
"eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", | |
"eip155Block": 3, | |
"eip158Block": 3, | |
"byzantiumBlock": 4, | |
"clique": { |
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
0xebec4e59a2546674ec73f40deb79f9785f31cb00 |
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
0x63d1ece57d61fa56c849db63f4648d9a40b25581 |
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
0xF6B1B6fC5e9280B7b39546e31a7C40EA08DeBfd3 |
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
var IronDoers = artifacts.require(“./IronDoers.sol”); | |
module.exports = function(deployer, network, accounts) { | |
deployer.deploy(IronDoers); | |
}; |
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
const ENS = artifacts.require("./ENS.sol"); | |
const FIFSRegistrar = artifacts.require('./FIFSRegistrar.sol'); | |
const PublicResolver = artifacts.require('./PublicResolver.sol'); | |
const namehash = require('../node_modules/eth-ens-namehash'); | |
const Web3 = require('web3'); | |
const web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); | |
module.exports = function(deployer, network, accounts) { | |
var domain = 'irondoers'; |
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
var Web3 = require("web3"); | |
var contract = require("truffle-contract"); | |
var IronDoers = contract(require("../build/contracts/IronDoers.json")); | |
require("bootstrap"); | |
var account; | |
window.Dapp = { | |
start: function() { | |
this.setDoerCount(); | |
}, |
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
var webpack = require("webpack"); | |
var path = require("path"); | |
const www = path.resolve(__dirname, "www"); | |
module.exports = { | |
entry: "./src/app.js", | |
output: { | |
filename: "bundle.js", | |
path: www | |
}, |
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
{ | |
"name": "irondoers", | |
"version": "0.0.1", | |
"description": "Decentralised application made to incentivise doers in a democratic autonomous organisation.", | |
"repository": "https://github.com/dickolsson/irondoers", | |
"scripts": { | |
"build": "webpack", | |
"dev": "webpack-dev-server" | |
}, | |
"author": "Dick Olsson", |
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
#!/bin/sh | |
# | |
# Version: 1 | |
# Tested on Barrier Breaker 15.05.01 | |
# | |
# Install IPredator VPN on OpenWrt | |
# Requirements | |
# - newly flashed OpenWrt device |
NewerOlder