├── .editorconfig ├── .gitattributes ├── .gitignore └── README.md /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{sol,py,json,js}] 2 | indent_style = tab 3 | indent_size = 4 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | docs/_build/ 4 | docs/_templates/ 5 | docs/_static/ 6 | build/ 7 | .history 8 | reports/ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SFT Protocol 2 | 3 | The SFT Protocol has been deprecated in favor of the [ZeroLaw Augmentation Protocol](https://github.com/zerolawtech/ZAP-Tech). 4 | --------------------------------------------------------------------------------