├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build-and-test.yml │ ├── npm-release.yml │ ├── slither.yml │ └── solc_version.yml ├── LICENSE ├── README.md ├── docs ├── ERC-725.md ├── ERC-734.md └── use-cases.md └── implementations ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .solcover.js ├── .solhint.json ├── .tool-versions ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── analyse.sh ├── constants.js ├── contracts ├── ERC725.sol ├── ERC725Init.sol ├── ERC725InitAbstract.sol ├── ERC725X.sol ├── ERC725XInit.sol ├── ERC725XInitAbstract.sol ├── ERC725Y.sol ├── ERC725YInit.sol ├── ERC725YInitAbstract.sol ├── constants.sol ├── errors.sol ├── helpers │ ├── ConstantsChecker.sol │ ├── Contract.sol │ ├── Counter.sol │ ├── CustomRevertTest.sol │ ├── DelegateTest.sol │ ├── ERC725XPayableTester.sol │ ├── ERC725YReader.sol │ ├── ERC725YWriter.sol │ ├── NoReceive.sol │ ├── NonPayableFallbackContract.sol │ ├── PayableFallbackContract.sol │ ├── Reader.sol │ ├── ReceiveTester.sol │ ├── Return.sol │ ├── WithConstructorPayable.sol │ ├── WithConstructorWithArgs.sol │ ├── WithConstructorWithoutArgs.sol │ ├── WithoutConstructor.sol │ └── selfdestruct.sol └── interfaces │ ├── IERC725X.sol │ └── IERC725Y.sol ├── hardhat.config.ts ├── package-lock.json ├── package.json ├── slither.config.json ├── test ├── ConstantsChecker.test.ts ├── ERC725.test.ts ├── ERC725X.behaviour.ts ├── ERC725X.test.ts ├── ERC725Y.behaviour.ts ├── ERC725Y.test.ts └── fixtures.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/npm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/workflows/npm-release.yml -------------------------------------------------------------------------------- /.github/workflows/slither.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/workflows/slither.yml -------------------------------------------------------------------------------- /.github/workflows/solc_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/.github/workflows/solc_version.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/README.md -------------------------------------------------------------------------------- /docs/ERC-725.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/docs/ERC-725.md -------------------------------------------------------------------------------- /docs/ERC-734.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/docs/ERC-734.md -------------------------------------------------------------------------------- /docs/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/docs/use-cases.md -------------------------------------------------------------------------------- /implementations/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/.editorconfig -------------------------------------------------------------------------------- /implementations/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/.eslintrc.json -------------------------------------------------------------------------------- /implementations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/.gitignore -------------------------------------------------------------------------------- /implementations/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/.prettierignore -------------------------------------------------------------------------------- /implementations/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/.prettierrc -------------------------------------------------------------------------------- /implementations/.solcover.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | skipFiles: ['helpers'], 3 | }; 4 | -------------------------------------------------------------------------------- /implementations/.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/.solhint.json -------------------------------------------------------------------------------- /implementations/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18 2 | -------------------------------------------------------------------------------- /implementations/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/CHANGELOG.md -------------------------------------------------------------------------------- /implementations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/LICENSE -------------------------------------------------------------------------------- /implementations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/README.md -------------------------------------------------------------------------------- /implementations/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/RELEASE.md -------------------------------------------------------------------------------- /implementations/analyse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/analyse.sh -------------------------------------------------------------------------------- /implementations/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/constants.js -------------------------------------------------------------------------------- /implementations/contracts/ERC725.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725Init.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725Init.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725InitAbstract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725InitAbstract.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725X.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725X.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725XInit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725XInit.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725XInitAbstract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725XInitAbstract.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725Y.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725Y.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725YInit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725YInit.sol -------------------------------------------------------------------------------- /implementations/contracts/ERC725YInitAbstract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/ERC725YInitAbstract.sol -------------------------------------------------------------------------------- /implementations/contracts/constants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/constants.sol -------------------------------------------------------------------------------- /implementations/contracts/errors.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/errors.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/ConstantsChecker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/ConstantsChecker.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/Contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/Contract.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/Counter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/Counter.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/CustomRevertTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/CustomRevertTest.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/DelegateTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/DelegateTest.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/ERC725XPayableTester.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/ERC725XPayableTester.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/ERC725YReader.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/ERC725YReader.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/ERC725YWriter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/ERC725YWriter.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/NoReceive.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/NoReceive.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/NonPayableFallbackContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/NonPayableFallbackContract.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/PayableFallbackContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/PayableFallbackContract.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/Reader.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/Reader.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/ReceiveTester.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/ReceiveTester.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/Return.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/Return.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/WithConstructorPayable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/WithConstructorPayable.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/WithConstructorWithArgs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/WithConstructorWithArgs.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/WithConstructorWithoutArgs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/WithConstructorWithoutArgs.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/WithoutConstructor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/WithoutConstructor.sol -------------------------------------------------------------------------------- /implementations/contracts/helpers/selfdestruct.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/helpers/selfdestruct.sol -------------------------------------------------------------------------------- /implementations/contracts/interfaces/IERC725X.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/interfaces/IERC725X.sol -------------------------------------------------------------------------------- /implementations/contracts/interfaces/IERC725Y.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/contracts/interfaces/IERC725Y.sol -------------------------------------------------------------------------------- /implementations/hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/hardhat.config.ts -------------------------------------------------------------------------------- /implementations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/package-lock.json -------------------------------------------------------------------------------- /implementations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/package.json -------------------------------------------------------------------------------- /implementations/slither.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/slither.config.json -------------------------------------------------------------------------------- /implementations/test/ConstantsChecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/ConstantsChecker.test.ts -------------------------------------------------------------------------------- /implementations/test/ERC725.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/ERC725.test.ts -------------------------------------------------------------------------------- /implementations/test/ERC725X.behaviour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/ERC725X.behaviour.ts -------------------------------------------------------------------------------- /implementations/test/ERC725X.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/ERC725X.test.ts -------------------------------------------------------------------------------- /implementations/test/ERC725Y.behaviour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/ERC725Y.behaviour.ts -------------------------------------------------------------------------------- /implementations/test/ERC725Y.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/ERC725Y.test.ts -------------------------------------------------------------------------------- /implementations/test/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/test/fixtures.ts -------------------------------------------------------------------------------- /implementations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ERC725Alliance/ERC725/HEAD/implementations/tsconfig.json --------------------------------------------------------------------------------