├── .circleci ├── .gitignore ├── build_profiles.sh ├── config.yml ├── dist │ └── index.js ├── package-lock.json ├── package.json └── src │ └── build_profiles.ts ├── .github ├── actions │ └── directory │ │ ├── .gitignore │ │ ├── action.yml │ │ ├── dist │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ └── index.ts └── workflows │ └── plugin-directory.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .DS_Store ├── Makefile ├── assets │ ├── ipfs.png │ ├── loadplugin.png │ ├── plugin.png │ └── pluginmanager.png ├── conf.py ├── getting_help.md ├── getting_started.md ├── guidelines.md ├── index.rst ├── make.bat ├── publishing_your_plugin.md └── watch.sh ├── plugins ├── arbitrum-stylus │ └── profile.json ├── buildbear │ └── profile.json ├── cookbookdev │ └── profile.json ├── coti │ └── profile.json ├── defender-deploy │ └── profile.json ├── klaytn │ └── profile.json ├── learneth │ └── profile.json ├── nahmii │ └── profile.json ├── restorebackupzip │ └── profile.json ├── script-runner │ └── profile.json ├── sentio │ └── profile.json ├── solhint │ └── profile.json ├── solidityscan │ └── profile.json ├── starknet │ └── profile.json ├── tenderly │ └── profile.json ├── wallet-connect │ └── profile.json ├── wds-code-remix │ └── profile.json ├── zksync │ └── profile.json └── zokrates │ └── profile.json └── tools └── ipfs-upload ├── .gitignore ├── bin ├── upload-remix-plugin └── upload-single-file ├── generateProfile.js ├── package-lock.json └── package.json /.circleci/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | src/index.js -------------------------------------------------------------------------------- /.circleci/build_profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.circleci/build_profiles.sh -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.circleci/dist/index.js -------------------------------------------------------------------------------- /.circleci/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.circleci/package-lock.json -------------------------------------------------------------------------------- /.circleci/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.circleci/package.json -------------------------------------------------------------------------------- /.circleci/src/build_profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.circleci/src/build_profiles.ts -------------------------------------------------------------------------------- /.github/actions/directory/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | src/index.js -------------------------------------------------------------------------------- /.github/actions/directory/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.github/actions/directory/action.yml -------------------------------------------------------------------------------- /.github/actions/directory/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.github/actions/directory/dist/index.js -------------------------------------------------------------------------------- /.github/actions/directory/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.github/actions/directory/package-lock.json -------------------------------------------------------------------------------- /.github/actions/directory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.github/actions/directory/package.json -------------------------------------------------------------------------------- /.github/actions/directory/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.github/actions/directory/src/index.ts -------------------------------------------------------------------------------- /.github/workflows/plugin-directory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.github/workflows/plugin-directory.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/README.md -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/assets/ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/assets/ipfs.png -------------------------------------------------------------------------------- /docs/assets/loadplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/assets/loadplugin.png -------------------------------------------------------------------------------- /docs/assets/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/assets/plugin.png -------------------------------------------------------------------------------- /docs/assets/pluginmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/assets/pluginmanager.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/getting_help.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/guidelines.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/publishing_your_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/publishing_your_plugin.md -------------------------------------------------------------------------------- /docs/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/docs/watch.sh -------------------------------------------------------------------------------- /plugins/arbitrum-stylus/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/arbitrum-stylus/profile.json -------------------------------------------------------------------------------- /plugins/buildbear/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/buildbear/profile.json -------------------------------------------------------------------------------- /plugins/cookbookdev/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/cookbookdev/profile.json -------------------------------------------------------------------------------- /plugins/coti/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/coti/profile.json -------------------------------------------------------------------------------- /plugins/defender-deploy/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/defender-deploy/profile.json -------------------------------------------------------------------------------- /plugins/klaytn/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/klaytn/profile.json -------------------------------------------------------------------------------- /plugins/learneth/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/learneth/profile.json -------------------------------------------------------------------------------- /plugins/nahmii/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/nahmii/profile.json -------------------------------------------------------------------------------- /plugins/restorebackupzip/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/restorebackupzip/profile.json -------------------------------------------------------------------------------- /plugins/script-runner/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/script-runner/profile.json -------------------------------------------------------------------------------- /plugins/sentio/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/sentio/profile.json -------------------------------------------------------------------------------- /plugins/solhint/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/solhint/profile.json -------------------------------------------------------------------------------- /plugins/solidityscan/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/solidityscan/profile.json -------------------------------------------------------------------------------- /plugins/starknet/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/starknet/profile.json -------------------------------------------------------------------------------- /plugins/tenderly/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/tenderly/profile.json -------------------------------------------------------------------------------- /plugins/wallet-connect/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/wallet-connect/profile.json -------------------------------------------------------------------------------- /plugins/wds-code-remix/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/wds-code-remix/profile.json -------------------------------------------------------------------------------- /plugins/zksync/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/zksync/profile.json -------------------------------------------------------------------------------- /plugins/zokrates/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/plugins/zokrates/profile.json -------------------------------------------------------------------------------- /tools/ipfs-upload/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | profile.json 3 | -------------------------------------------------------------------------------- /tools/ipfs-upload/bin/upload-remix-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/tools/ipfs-upload/bin/upload-remix-plugin -------------------------------------------------------------------------------- /tools/ipfs-upload/bin/upload-single-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/tools/ipfs-upload/bin/upload-single-file -------------------------------------------------------------------------------- /tools/ipfs-upload/generateProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/tools/ipfs-upload/generateProfile.js -------------------------------------------------------------------------------- /tools/ipfs-upload/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/tools/ipfs-upload/package-lock.json -------------------------------------------------------------------------------- /tools/ipfs-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remix-project-org/remix-plugins-directory/HEAD/tools/ipfs-upload/package.json --------------------------------------------------------------------------------