Skip to content

Instantly share code, notes, and snippets.

@Physes
Physes / keybase.md
Created March 19, 2021 11:58
Keybase proof

Keybase proof

I hereby claim:

  • I am physes on github.
  • I am psaunders (https://keybase.io/psaunders) on keybase.
  • I have a public key ASDEUgeIYJBpukIHVch6afunw4S1rNG5HiJX89MHlZcCCwo

To claim this, I am signing this object:

@Physes
Physes / Funnel.sol
Last active November 23, 2017 23:01
Example funneling contract
pragma solidity ^0.4.18;
import "browser/SafeMath.sol";
import "browser/Ownable.sol";
import "browser/ESTToken.sol";
/**
* @title Example funneling contract
* @author Philip Saunders <philip@estatechain.io>
*/
@Physes
Physes / TX.sol
Last active July 26, 2017 13:18
Ticker Exchange: a service for registering asset ticker symbols
pragma solidity ^0.4.11;
/**
* Ticker Exchange is a service for registering asset ticker symbols
* and pointing them to a particular resource, for example an ENS
* resolver or a token contract.
*
* Ticker hashes are hierarchical. erc20 token "BNT", which is contained
* within ETH, is found using pathhash("ETH:BNT", ":"). If BNT creates
* sub-token XYZ then those tickers can be registered with "ETH:BNT:XYZ".