├── .circleci ├── config.yml └── scripts │ ├── collect-har-artifact.sh │ └── deps-install.sh ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── security-code-scanner.yml ├── .gitignore ├── .nvmrc ├── .tool-versions ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── content-script │ ├── build.js │ └── index.js └── inpage │ ├── MobilePortStream.js │ ├── ReactNativePostMessageStream.js │ ├── index.js │ └── webpack.config.js ├── webpack.config.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/scripts/collect-har-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.circleci/scripts/collect-har-artifact.sh -------------------------------------------------------------------------------- /.circleci/scripts/deps-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.circleci/scripts/deps-install.sh -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/security-code-scanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/.github/workflows/security-code-scanner.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | .DS_Store 4 | *.log 5 | .eslintcache 6 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v12 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 16.20.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/package.json -------------------------------------------------------------------------------- /src/content-script/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/src/content-script/build.js -------------------------------------------------------------------------------- /src/content-script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/src/content-script/index.js -------------------------------------------------------------------------------- /src/inpage/MobilePortStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/src/inpage/MobilePortStream.js -------------------------------------------------------------------------------- /src/inpage/ReactNativePostMessageStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/src/inpage/ReactNativePostMessageStream.js -------------------------------------------------------------------------------- /src/inpage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/src/inpage/index.js -------------------------------------------------------------------------------- /src/inpage/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/src/inpage/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/mobile-provider/HEAD/yarn.lock --------------------------------------------------------------------------------