I hereby claim:
- I am trapp on github.
- I am timon (https://keybase.io/timon) on keybase.
- I have a public key whose fingerprint is 2E05 6444 BDAB 4136 CDF2 8302 AB92 AC32 C536 0BD7
To claim this, I am signing this object:
| find . -type d -name .svn -exec rm -Rf {} \; |
| First occurrence on current line: :s/OLD/NEW | |
| All occurrences on current line: :s/OLD/NEW/g | |
| Between two lines #,#: :#,#s/OLD/NEW/g | |
| Every occurrence in file: :%s/OLD/NEW/g |
| -- Don't forget to replace »password« with a strong password. | |
| create user 'username'@'localhost' identified by 'password'; | |
| grant all privileges on *.* to 'username'@'yourip' IDENTIFIED BY 'password' with grant option; | |
| flush privileges; |
I hereby claim:
To claim this, I am signing this object:
| Verifying that +timon is my Bitcoin username. You can send me #bitcoin here: https://onename.io/timon |
| import "owned"; | |
| contract DepositTracker is owned | |
| { | |
| event Deposit(address indexed from, uint value); | |
| event Transfer(address indexed to, uint value); | |
| function () { | |
| Deposit(msg.sender, msg.value); | |
| } |
| import "owned"; | |
| contract TokenProxy is owned { | |
| modifier noEther() {if (msg.value > 0) throw; _} | |
| event TokenTransfer(address indexed tokenAddress, address indexed to, uint256 value); | |
| function () noEther { | |
| } | |
| function transferToken(address tokenAddress, address to, uint256 value) onlyowner noEther { |
| contract AmIOnTheFork { | |
| // Tracks whether hard fork is effective on this chain. True means the fork is passed, false it hasn't. | |
| bool public forked = false; | |
| // Dark DAO address | |
| address constant darkDAO = 0x304a554a310c7e546dfe434669c62820b7d83490; | |
| // This function should be called between block 1920000 and 1921200. | |
| // Approximately between 2016-07-20 12:00:00 UTC and 2016-07-20 17:00:00 UTC. | |
| // After that the status will be locked in. |
| contract ReplaySafeProxy { | |
| // Tracks if the contract should work on this chain or not. | |
| bool enabled = false; | |
| // Fork oracle to use | |
| AmIOnTheFork amIOnTheFork = AmIOnTheFork(0x2bd2326c993dfaef84f696526064ff22eba5b362); | |
| address target; | |
| // _target is the address this contract will forward all funds to. | |
| // forked specifies if it should work on ETH (true) or ETHC (false) | |
| // Any value transfer to this contract will fail on the other network. |