├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.es.md ├── README.md ├── README.ru.md ├── README_MANDARIN.md ├── contracts ├── .DS_Store ├── Kovan │ ├── draftpremium.sol │ └── orfeed.sol ├── Migrations.sol ├── Rinkeby │ ├── draftpremium.sol │ └── orfeed.sol ├── chainlinkproxy.sol ├── dataAndEventOracleRegistry.sol ├── examples │ ├── ConsumeDataExamples │ │ ├── TriArbCalculator.sol │ │ ├── UniswapExchangeFactory.sol │ │ ├── helpers │ │ │ └── UniswapExchangeFactory.sol │ │ ├── levFacilityTokenExample.sol │ │ ├── milestonePredictionMarketTemplate.sol │ │ ├── pegTokenExample.sol │ │ ├── simpleRouletteGame.sol │ │ ├── traderExample.sol │ │ ├── traderExampleLesson2.sol │ │ └── traderExampleLesson8.sol │ ├── ProvideDataExamples │ │ ├── customEventRegister.sol │ │ ├── flashLoanAndArbProvider.sol │ │ ├── interestRateOracleContract.sol │ │ ├── interestRateOracleContractBorrow.sol │ │ ├── kyberBySymbol.sol │ │ ├── legacy-buy-kyber-exchange.sol │ │ ├── legacy-buy-uniswap-exchange.sol │ │ ├── legacy-sell-kyber-exchange.sol │ │ ├── legacy-sell-uniswap-exchange.sol │ │ ├── randomNumberOracleExample.sol │ │ ├── stockETFPriceContract.sol │ │ ├── synthetixMaxGasOracle.sol │ │ ├── uniswapV1BySymbol.sol │ │ ├── uniswapV2ByAddress.sol │ │ ├── uniswapV2BySymbol.sol │ │ ├── userRegisteredDataOrEventOracleExample.sol │ │ ├── userRegisteredDateOrEventOracleExample.sol │ │ ├── userRegisteredOracleExample.sol │ │ └── votingContract.sol │ ├── extra │ │ ├── efficientGasProxy.sol │ │ └── gasRetail.sol │ └── tutorialSamples │ │ ├── flashLoanDummyContract.sol │ │ ├── flashLoanWithArb.sol │ │ ├── security │ │ ├── mockUniswapSimple.sol │ │ └── trojanToken.sol │ │ └── yieldfarming │ │ └── enterandexitfarm.sol ├── oracleRegistry.sol ├── orfeed.sol └── premiumSyncOracleProxy.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_orfeed.js ├── nodeJSAppExamples ├── OrFeedBinaryOption │ ├── LICENSE │ ├── contracts │ │ ├── BinaryOption.sol │ │ ├── Migrations.sol │ │ └── TestContract.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_TestMigration.js │ ├── package.json │ ├── test │ │ └── TestContract.js │ └── truffle.js ├── TokenSetRebalancerExample │ ├── Procfile │ ├── README.md │ ├── app.json │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── lang-logo.png │ │ ├── node.svg │ │ └── stylesheets │ │ │ └── main.css │ ├── test.js │ └── views │ │ ├── pages │ │ ├── db.ejs │ │ └── index.ejs │ │ └── partials │ │ ├── header.ejs │ │ └── nav.ejs ├── YieldFarmingEntryAndExit │ ├── Procfile │ ├── README.md │ ├── app.json │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── lang-logo.png │ │ ├── node.svg │ │ └── stylesheets │ │ │ └── main.css │ ├── test.js │ └── views │ │ ├── pages │ │ ├── db.ejs │ │ └── index.ejs │ │ └── partials │ │ ├── header.ejs │ │ └── nav.ejs ├── basicArbExample │ ├── .gitignore │ ├── Procfile │ ├── README.md │ ├── app.json │ ├── index.js │ ├── package.json │ ├── public │ │ ├── lang-logo.png │ │ ├── node.svg │ │ └── stylesheets │ │ │ └── main.css │ └── views │ │ ├── pages │ │ ├── db.ejs │ │ └── index.ejs │ │ └── partials │ │ ├── header.ejs │ │ └── nav.ejs ├── basicNodeExample │ ├── .gitignore │ ├── Procfile │ ├── README.md │ ├── app.json │ ├── index.js │ ├── package.json │ ├── public │ │ ├── lang-logo.png │ │ ├── node.svg │ │ └── stylesheets │ │ │ └── main.css │ └── views │ │ ├── pages │ │ ├── db.ejs │ │ └── index.ejs │ │ └── partials │ │ ├── header.ejs │ │ └── nav.ejs ├── oracleNodeExampleApp │ ├── Procfile │ ├── README.md │ ├── app.json │ ├── index.js │ ├── package.json │ ├── public │ │ ├── lang-logo.png │ │ ├── node.svg │ │ └── stylesheets │ │ │ └── main.css │ └── views │ │ ├── pages │ │ ├── db.ejs │ │ └── index.ejs │ │ └── partials │ │ ├── header.ejs │ │ └── nav.ejs └── orfeedapi │ ├── Procfile │ ├── app.json │ ├── index.js │ └── package.json ├── package.json ├── specs ├── layer2 │ └── README.md └── quorum │ └── README.md ├── tests └── orfeed.js └── truffle-config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/README.es.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/README.ru.md -------------------------------------------------------------------------------- /README_MANDARIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/README_MANDARIN.md -------------------------------------------------------------------------------- /contracts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/.DS_Store -------------------------------------------------------------------------------- /contracts/Kovan/draftpremium.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/Kovan/draftpremium.sol -------------------------------------------------------------------------------- /contracts/Kovan/orfeed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/Kovan/orfeed.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Rinkeby/draftpremium.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/Rinkeby/draftpremium.sol -------------------------------------------------------------------------------- /contracts/Rinkeby/orfeed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/Rinkeby/orfeed.sol -------------------------------------------------------------------------------- /contracts/chainlinkproxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/chainlinkproxy.sol -------------------------------------------------------------------------------- /contracts/dataAndEventOracleRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/dataAndEventOracleRegistry.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/TriArbCalculator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/TriArbCalculator.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/UniswapExchangeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/UniswapExchangeFactory.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/helpers/UniswapExchangeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/helpers/UniswapExchangeFactory.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/levFacilityTokenExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/levFacilityTokenExample.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/milestonePredictionMarketTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/milestonePredictionMarketTemplate.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/pegTokenExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/pegTokenExample.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/simpleRouletteGame.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/simpleRouletteGame.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/traderExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/traderExample.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/traderExampleLesson2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/traderExampleLesson2.sol -------------------------------------------------------------------------------- /contracts/examples/ConsumeDataExamples/traderExampleLesson8.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ConsumeDataExamples/traderExampleLesson8.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/customEventRegister.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/customEventRegister.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/flashLoanAndArbProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/flashLoanAndArbProvider.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/interestRateOracleContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/interestRateOracleContract.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/interestRateOracleContractBorrow.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/interestRateOracleContractBorrow.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/kyberBySymbol.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/kyberBySymbol.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/legacy-buy-kyber-exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/legacy-buy-kyber-exchange.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/legacy-buy-uniswap-exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/legacy-buy-uniswap-exchange.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/legacy-sell-kyber-exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/legacy-sell-kyber-exchange.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/legacy-sell-uniswap-exchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/legacy-sell-uniswap-exchange.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/randomNumberOracleExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/randomNumberOracleExample.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/stockETFPriceContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/stockETFPriceContract.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/synthetixMaxGasOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/synthetixMaxGasOracle.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/uniswapV1BySymbol.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/uniswapV1BySymbol.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/uniswapV2ByAddress.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/uniswapV2ByAddress.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/uniswapV2BySymbol.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/uniswapV2BySymbol.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/userRegisteredDataOrEventOracleExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/userRegisteredDataOrEventOracleExample.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/userRegisteredDateOrEventOracleExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/userRegisteredDateOrEventOracleExample.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/userRegisteredOracleExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/userRegisteredOracleExample.sol -------------------------------------------------------------------------------- /contracts/examples/ProvideDataExamples/votingContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/ProvideDataExamples/votingContract.sol -------------------------------------------------------------------------------- /contracts/examples/extra/efficientGasProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/extra/efficientGasProxy.sol -------------------------------------------------------------------------------- /contracts/examples/extra/gasRetail.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/extra/gasRetail.sol -------------------------------------------------------------------------------- /contracts/examples/tutorialSamples/flashLoanDummyContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/tutorialSamples/flashLoanDummyContract.sol -------------------------------------------------------------------------------- /contracts/examples/tutorialSamples/flashLoanWithArb.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/tutorialSamples/flashLoanWithArb.sol -------------------------------------------------------------------------------- /contracts/examples/tutorialSamples/security/mockUniswapSimple.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/tutorialSamples/security/mockUniswapSimple.sol -------------------------------------------------------------------------------- /contracts/examples/tutorialSamples/security/trojanToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/tutorialSamples/security/trojanToken.sol -------------------------------------------------------------------------------- /contracts/examples/tutorialSamples/yieldfarming/enterandexitfarm.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/examples/tutorialSamples/yieldfarming/enterandexitfarm.sol -------------------------------------------------------------------------------- /contracts/oracleRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/oracleRegistry.sol -------------------------------------------------------------------------------- /contracts/orfeed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/orfeed.sol -------------------------------------------------------------------------------- /contracts/premiumSyncOracleProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/contracts/premiumSyncOracleProxy.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_orfeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/migrations/2_deploy_orfeed.js -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/LICENSE -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/contracts/BinaryOption.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/contracts/BinaryOption.sol -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/contracts/Migrations.sol -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/contracts/TestContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/contracts/TestContract.sol -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/migrations/2_TestMigration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/migrations/2_TestMigration.js -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/package.json -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/test/TestContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/test/TestContract.js -------------------------------------------------------------------------------- /nodeJSAppExamples/OrFeedBinaryOption/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/OrFeedBinaryOption/truffle.js -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/README.md -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/app.json -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/index.js -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/package-lock.json -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/package.json -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/public/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/public/lang-logo.png -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/public/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/public/node.svg -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/public/stylesheets/main.css -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/test.js -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/views/pages/db.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/views/pages/db.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/views/pages/index.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/views/partials/header.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/TokenSetRebalancerExample/views/partials/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/TokenSetRebalancerExample/views/partials/nav.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/README.md -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/app.json -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/index.js -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/package-lock.json -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/package.json -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/public/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/public/lang-logo.png -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/public/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/public/node.svg -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/public/stylesheets/main.css -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/test.js -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/views/pages/db.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/views/pages/db.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/views/pages/index.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/views/partials/header.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/YieldFarmingEntryAndExit/views/partials/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/YieldFarmingEntryAndExit/views/partials/nav.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /.gitignore -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /README.md -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /app.json -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /index.js -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /package.json -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /public/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /public/lang-logo.png -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /public/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /public/node.svg -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /public/stylesheets/main.css -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /views/pages/db.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /views/pages/db.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /views/pages/index.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /views/partials/header.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicArbExample /views/partials/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicArbExample /views/partials/nav.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/.gitignore -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/README.md -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/app.json -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/index.js -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/package.json -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/public/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/public/lang-logo.png -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/public/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/public/node.svg -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/public/stylesheets/main.css -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/views/pages/db.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/views/pages/db.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/views/pages/index.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/views/partials/header.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/basicNodeExample/views/partials/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/basicNodeExample/views/partials/nav.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/README.md -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/app.json -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/index.js -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/package.json -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/public/lang-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/public/lang-logo.png -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/public/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/public/node.svg -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/public/stylesheets/main.css -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/views/pages/db.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/views/pages/db.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/views/pages/index.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/views/partials/header.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/oracleNodeExampleApp/views/partials/nav.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/oracleNodeExampleApp/views/partials/nav.ejs -------------------------------------------------------------------------------- /nodeJSAppExamples/orfeedapi/Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /nodeJSAppExamples/orfeedapi/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/orfeedapi/app.json -------------------------------------------------------------------------------- /nodeJSAppExamples/orfeedapi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/orfeedapi/index.js -------------------------------------------------------------------------------- /nodeJSAppExamples/orfeedapi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/nodeJSAppExamples/orfeedapi/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/package.json -------------------------------------------------------------------------------- /specs/layer2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/specs/layer2/README.md -------------------------------------------------------------------------------- /specs/quorum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/specs/quorum/README.md -------------------------------------------------------------------------------- /tests/orfeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/tests/orfeed.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProofSuite/OrFeed/HEAD/truffle-config.js --------------------------------------------------------------------------------