├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── example ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.test.tsx │ ├── App.tsx │ ├── Wallet.tsx │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ └── setupTests.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── rollup.config.js ├── src ├── context │ ├── Web3Context.tsx │ ├── helpers.ts │ └── tokensReducer.ts ├── index.ts └── interfaces │ ├── Erc20Detailed.d.ts │ └── Erc20DetailedFactory.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/README.md -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/public/logo192.png -------------------------------------------------------------------------------- /example/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/public/logo512.png -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/public/robots.txt -------------------------------------------------------------------------------- /example/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/src/App.test.tsx -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/src/Wallet.tsx -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/src/setupTests.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/context/Web3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/src/context/Web3Context.tsx -------------------------------------------------------------------------------- /src/context/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/src/context/helpers.ts -------------------------------------------------------------------------------- /src/context/tokensReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/src/context/tokensReducer.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/Erc20Detailed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/src/interfaces/Erc20Detailed.d.ts -------------------------------------------------------------------------------- /src/interfaces/Erc20DetailedFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/src/interfaces/Erc20DetailedFactory.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChainSafe/web3-context/HEAD/yarn.lock --------------------------------------------------------------------------------