├── .gitignore ├── LICENSE ├── README.md ├── contracts ├── api.sol ├── dispatch.sol ├── lookup.sol └── sample-client.sol ├── package.json └── tinyoracle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/README.md -------------------------------------------------------------------------------- /contracts/api.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/contracts/api.sol -------------------------------------------------------------------------------- /contracts/dispatch.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/contracts/dispatch.sol -------------------------------------------------------------------------------- /contracts/lookup.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/contracts/lookup.sol -------------------------------------------------------------------------------- /contracts/sample-client.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/contracts/sample-client.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/package.json -------------------------------------------------------------------------------- /tinyoracle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axic/tinyoracle/HEAD/tinyoracle --------------------------------------------------------------------------------