├── .gitignore ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── assets │ ├── arrow.svg │ ├── back.svg │ ├── discord.svg │ ├── github.svg │ ├── logo.svg │ ├── nodata.png │ ├── nodata.svg │ ├── telegram.svg │ └── wechat.jpeg ├── components │ ├── Footer │ │ └── index.tsx │ ├── Header │ │ └── index.tsx │ └── Web3ReactManager │ │ └── index.tsx ├── config │ ├── abi │ │ ├── MutilTransfer.json │ │ ├── erc20.json │ │ └── types │ │ │ ├── Erc20.ts │ │ │ ├── MutilTransfer.ts │ │ │ ├── common.ts │ │ │ ├── factories │ │ │ ├── Erc20__factory.ts │ │ │ ├── MutilTransfer__factory.ts │ │ │ └── index.ts │ │ │ └── index.ts │ ├── connectors │ │ ├── NetworkConnector.ts │ │ └── index.ts │ ├── constants │ │ ├── chainIcon.ts │ │ ├── chainId.ts │ │ ├── contractAddresses.ts │ │ ├── defaultChainId.ts │ │ ├── native.ts │ │ ├── rpc.ts │ │ ├── types.ts │ │ └── wallets.ts │ ├── index.ts │ └── tokens │ │ ├── bsc.json │ │ ├── bsctestnet.json │ │ ├── index.ts │ │ ├── kovan.json │ │ ├── rinkeby.json │ │ └── ropsten.json ├── contracts │ └── MutilTransfer.sol ├── favicon.svg ├── hooks │ ├── useActiveWeb3React.ts │ ├── useContract.ts │ ├── useDebounce.ts │ ├── useEagerConnect.ts │ ├── useInactiveListener.ts │ └── useTransfer.ts ├── index.css ├── logo.svg ├── main.tsx ├── utils │ ├── contractAddressHelper.ts │ ├── format.ts │ ├── index.ts │ ├── isAddress.ts │ └── isEth.ts ├── view │ └── Home │ │ ├── AddressList.tsx │ │ ├── ConfirmPage.tsx │ │ ├── SelectToken.tsx │ │ └── index.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |