├── .travis.yml ├── README.md ├── contracts ├── Example.sol ├── FiatContract.sol └── Migrations.sol ├── docs ├── CNAME ├── eth.js ├── favicon.ico ├── index.html ├── robots.txt ├── style.css └── web3.js ├── migrations └── 1_deploy_contracts.js ├── package.json ├── test └── API.js └── truffle.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Example.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/contracts/Example.sol -------------------------------------------------------------------------------- /contracts/FiatContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/contracts/FiatContract.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | fiatcontract.com -------------------------------------------------------------------------------- /docs/eth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/docs/eth.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/docs/web3.js -------------------------------------------------------------------------------- /migrations/1_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/migrations/1_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/package.json -------------------------------------------------------------------------------- /test/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/test/API.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/fiatcontract/HEAD/truffle.js --------------------------------------------------------------------------------