├── .dockerignore ├── .env.loopygen ├── .env.transfer ├── .gitattributes ├── .gitignore ├── .gitmodules ├── DataClasses.py ├── Dockerfile ├── LoopringMintService.py ├── README.md ├── __init__.py ├── docker.sh ├── dockerfiles ├── mint.sh ├── mintcollection.sh ├── prepare.sh └── transfer.sh ├── example_files ├── cids-list.example.txt └── nftids-list.example.txt ├── minter.py ├── prepare.py ├── requirements.txt └── transfer.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.loopygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/.env.loopygen -------------------------------------------------------------------------------- /.env.transfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/.env.transfer -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/.gitmodules -------------------------------------------------------------------------------- /DataClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/DataClasses.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/Dockerfile -------------------------------------------------------------------------------- /LoopringMintService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/LoopringMintService.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/docker.sh -------------------------------------------------------------------------------- /dockerfiles/mint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/dockerfiles/mint.sh -------------------------------------------------------------------------------- /dockerfiles/mintcollection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/dockerfiles/mintcollection.sh -------------------------------------------------------------------------------- /dockerfiles/prepare.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd /loopyminty 4 | python3 prepare.py $@ 5 | -------------------------------------------------------------------------------- /dockerfiles/transfer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd /loopyminty 4 | python3 transfer.py $@ 5 | -------------------------------------------------------------------------------- /example_files/cids-list.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/example_files/cids-list.example.txt -------------------------------------------------------------------------------- /example_files/nftids-list.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/example_files/nftids-list.example.txt -------------------------------------------------------------------------------- /minter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/minter.py -------------------------------------------------------------------------------- /prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/prepare.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | base58 3 | python-dotenv 4 | yaspin 5 | -------------------------------------------------------------------------------- /transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Montspy/LooPyMinty/HEAD/transfer.py --------------------------------------------------------------------------------