├── .babelrc ├── .deps ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src ├── abis │ ├── badge.json │ ├── badgereg.json │ ├── githubhint.json │ ├── index.js │ ├── operations.json │ ├── registry.json │ ├── token.json │ └── tokenreg.json └── index.js └── test └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /.deps: -------------------------------------------------------------------------------- 1 | oo7 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/package.json -------------------------------------------------------------------------------- /src/abis/badge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/badge.json -------------------------------------------------------------------------------- /src/abis/badgereg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/badgereg.json -------------------------------------------------------------------------------- /src/abis/githubhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/githubhint.json -------------------------------------------------------------------------------- /src/abis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/index.js -------------------------------------------------------------------------------- /src/abis/operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/operations.json -------------------------------------------------------------------------------- /src/abis/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/registry.json -------------------------------------------------------------------------------- /src/abis/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/token.json -------------------------------------------------------------------------------- /src/abis/tokenreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/abis/tokenreg.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/oo7-parity/HEAD/test/index.js --------------------------------------------------------------------------------