├── .gitattributes ├── .gitignore ├── README.md ├── abis ├── erc20contract.json ├── erc721contract.json ├── ethbridge.json └── weth.json ├── config.py ├── data ├── erc20bytecode.txt ├── erc721bytecode.txt ├── token_names.txt └── token_symbols.txt ├── files ├── private_keys.txt └── proxies.txt ├── logs └── .gitkeep ├── main.py ├── requirements.txt └── src ├── bridge.py ├── client.py ├── erc_20.py ├── erc_721.py ├── manager.py ├── menu.py ├── models.py ├── morkie.py ├── random_interactions.py ├── utils.py ├── vars.py └── wrap.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/README.md -------------------------------------------------------------------------------- /abis/erc20contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/abis/erc20contract.json -------------------------------------------------------------------------------- /abis/erc721contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/abis/erc721contract.json -------------------------------------------------------------------------------- /abis/ethbridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/abis/ethbridge.json -------------------------------------------------------------------------------- /abis/weth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/abis/weth.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/config.py -------------------------------------------------------------------------------- /data/erc20bytecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/data/erc20bytecode.txt -------------------------------------------------------------------------------- /data/erc721bytecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/data/erc721bytecode.txt -------------------------------------------------------------------------------- /data/token_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/data/token_names.txt -------------------------------------------------------------------------------- /data/token_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/data/token_symbols.txt -------------------------------------------------------------------------------- /files/private_keys.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | loguru==0.7.2 2 | web3==6.20 3 | ujson==5.10.0 4 | aiofiles==24.1.0 -------------------------------------------------------------------------------- /src/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/bridge.py -------------------------------------------------------------------------------- /src/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/client.py -------------------------------------------------------------------------------- /src/erc_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/erc_20.py -------------------------------------------------------------------------------- /src/erc_721.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/erc_721.py -------------------------------------------------------------------------------- /src/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/manager.py -------------------------------------------------------------------------------- /src/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/menu.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/models.py -------------------------------------------------------------------------------- /src/morkie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/morkie.py -------------------------------------------------------------------------------- /src/random_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/random_interactions.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/vars.py -------------------------------------------------------------------------------- /src/wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aionotaio/unichain-testnet-soft/HEAD/src/wrap.py --------------------------------------------------------------------------------