Go to file
Victor Baranov 45e3df1405 merge with origin master 2018-08-15 18:43:43 +03:00
TokenWizard/crowdsale merge with origin master 2018-08-15 18:43:43 +03:00
.gitattributes Added untracked files 2018-05-05 14:38:00 -04:00
.gitignore merge with origin master 2018-08-15 18:43:43 +03:00
README.md Update README.md 2018-06-21 22:29:27 -04:00

README.md

auth_os applications:

This repository contains a set of applications built using the auth_os framework. auth_os utilizes a unique application architecture to facilitate the building of contracts that are truly modular, as well as interoperable.

Install:

Currently, each application has its own package.json - run npm install in the root directory of each project, which will install the auth_os core contracts and dependencies.

Test:

npm test

Using applications:

Interacting with applications is standard to auth_os - a designated script executor contract forwards calldata to the app's storage contract which determines the address at which logic is stored, and delegatecalls the application's logic library. For safety and efficiency, every call made to auth_os apps will at some point during execution, revert. This does not mean the entire transaction will revert - instead, the revert is expected and handled by the contracts involved in the transaction. On sites like etherscan, this gives the appearance of several failed calls: working as expected!

For more information, see: https://github.com/auth-os/core/blob/master/README.md